
#about { background: var(--bg2); }

.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem;
  align-items: center; max-width: 1080px; margin: 0 auto;
}
.about-text p { font-size: .94rem; color: var(--gray); line-height: 1.95; margin-bottom: 1rem; }
.about-text p strong { color: var(--red-b); }

.about-divider {
  font-family: 'Share Tech Mono', monospace; font-size: .72rem;
  color: var(--gray-d); letter-spacing: 2px;
  margin: 1.6rem 0; display: flex; align-items: center; gap: .8rem;
}
.about-divider::before,
.about-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.tag {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 13px; border: 1px solid var(--border); color: var(--gray);
  background: var(--red-dim); transition: all .22s; cursor: default;
  position: relative; overflow: hidden;
}
.tag::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.06); transform: translateX(-100%); transition: transform .25s;
}
.tag:hover::before { transform: translateX(0); }
.tag:hover {
  border-color: var(--red-b); color: var(--red-b);
  transform: translateY(-3px); box-shadow: 0 6px 16px rgba(204,0,0,.18);
}


.about-cards { display: flex; flex-direction: column; gap: .9rem; }

.a-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 1.1rem;
  transition: border-color .25s, box-shadow .25s, transform .22s;
  position: relative; overflow: hidden;
}
.a-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--red-b));
  transform: scaleY(0); transform-origin: bottom; transition: transform .32s var(--transition);
}

.a-card::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.04), transparent);
  transition: none;
}
.a-card:hover::after { animation: cardShine .55s ease forwards; }
.a-card:hover { border-color: var(--red-b); box-shadow: 0 0 26px rgba(204,0,0,.1); transform: translateX(6px); }
.a-card:hover::before { transform: scaleY(1); }

.a-icon {
  width: 44px; height: 44px; background: var(--red-dim); border: 1px solid rgba(204,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--red-b); flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .25s, box-shadow .2s;
}
.a-card:hover .a-icon {
  background: rgba(204,0,0,.22); border-color: var(--red-b);
  transform: scale(1.12) rotate(5deg); box-shadow: 0 0 14px var(--red-glow);
}

.a-num {
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: 1.2rem;
  color: var(--red-b); display: block;
}
.a-lbl {
  font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: .68rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-d);
}


#features { background: var(--bg); }

.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5px; max-width: 1080px; margin: 0 auto; background: var(--border);
}

.feat {
  background: var(--bg2); padding: 2.4rem 2rem;
  transition: background .25s, transform .22s, box-shadow .25s;
  cursor: default; position: relative; overflow: hidden;
}

.feat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-b), var(--red));
  background-size: 200%;
  transform: scaleX(0); transform-origin: left; transition: transform .38s;
}

.feat::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(204,0,0,.07), transparent 70%);
  opacity: 0; transition: opacity .3s;
}

.feat .corner {
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid; border-width: 0 0 28px 28px;
  border-color: transparent transparent var(--red-dim) transparent;
  transition: border-color .25s;
}
.feat:hover { background: var(--bg3); transform: translateY(-7px); box-shadow: 0 12px 44px rgba(204,0,0,.12); }
.feat:hover::before { transform: scaleX(1); animation: borderFlow 2s linear infinite; }
.feat:hover::after  { opacity: 1; }
.feat:hover .corner { border-color: transparent transparent rgba(204,0,0,.25) transparent; }

.feat-icon {
  width: 54px; height: 54px; background: var(--red-dim); border: 1px solid rgba(204,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--red-b); margin-bottom: 1.4rem;
  transition: background .2s, border-color .2s, transform .28s, box-shadow .2s;
  position: relative;
}
.feat:hover .feat-icon {
  background: rgba(204,0,0,.22); border-color: var(--red-b);
  transform: scale(1.14) rotate(4deg); box-shadow: 0 0 20px var(--red-glow);
}

.feat-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: .55rem;
  transition: color .2s;
}
.feat:hover .feat-name { color: var(--red-b); }
.feat-desc { font-size: .84rem; color: var(--gray); line-height: 1.78; }


.disc-outer { max-width: 1080px; margin: 0 auto; }


.disc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3rem;
  margin-bottom: 2rem;
}


.disc-info { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 1.4rem; 
}

.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Share Tech Mono', monospace; font-size: .7rem;
  letter-spacing: 2px; color: var(--green);
}
.pdot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  animation: pdot 1.6s ease-in-out infinite; box-shadow: 0 0 8px rgba(74,222,128,.6);
  position: relative; flex-shrink: 0;
}
.pdot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid rgba(74,222,128,.35); animation: ripple 1.6s ease-in-out infinite;
}

.disc-name {
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: 1.45rem; color: var(--white);
}


.disc-stats { 
  display: flex; 
  justify-content: center; 
  gap: 2rem; 
}

.ds-num { font-family: 'Orbitron', monospace; font-weight: 700; font-size: 1.4rem; color: var(--red-b); }
.ds-lbl {
  font-family: 'Share Tech Mono', monospace; font-size: .65rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray-d);
}
.ds-lbl.g { color: var(--green); }


.disc-p { 
  font-size: .88rem; 
  color: var(--gray); 
  line-height: 1.92; 
  max-width: 620px; 
}


.btn-discord {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: #5865F2; color: #fff; text-decoration: none;
  padding: 12px 26px; transition: all .2s;
  clip-path: polygon(9px 0%, 100% 0%, calc(100% - 9px) 100%, 0% 100%);
  position: relative; overflow: hidden;
}
.btn-discord::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1); transform: translateX(-100%); transition: transform .3s;
}
.btn-discord:hover::before { transform: translateX(0); }
.btn-discord:hover { background: #4752c4; box-shadow: 0 0 30px rgba(88,101,242,.45); transform: translateY(-1px); }


.disc-panel {
  background: var(--bg3); border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.disc-panel:hover { border-color: var(--border-b); box-shadow: 0 0 40px rgba(204,0,0,.08); }

.disc-panel-header {
  background: #0a0a0a; border-bottom: 1px solid var(--border);
  padding: 1rem 1.4rem; display: flex; align-items: center; gap: .9rem;
}
.disc-panel-logo {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border-b); box-shadow: 0 0 12px var(--red-glow);
  animation: float 4s ease-in-out infinite;
}
.disc-panel-server {
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: .95rem; color: var(--white);
  text-align: left; 
}
.disc-panel-tag {
  font-family: 'Share Tech Mono', monospace; font-size: .62rem; color: var(--gray-d); margin-top: 2px;
  text-align: left;
}

.disc-members-list { padding: .6rem 0; max-height: 310px; overflow-y: auto; }
.disc-members-list::-webkit-scrollbar       { width: 2px; }
.disc-members-list::-webkit-scrollbar-thumb { background: var(--border-b); border-radius: 1px; }

.disc-category {
  font-family: 'Share Tech Mono', monospace; font-size: .6rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-d); padding: .5rem 1.4rem .3rem;
  text-align: left;
}

.disc-member {
  display: flex; align-items: center; gap: .85rem; padding: .5rem 1.4rem;
  transition: background .18s, transform .18s, padding-left .18s;
  cursor: default; animation: memberIn .4s ease both;
}
.disc-member:hover { background: rgba(204,0,0,.06); transform: translateX(4px); padding-left: calc(1.4rem + 4px); }

.disc-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; font-family: 'Orbitron', monospace;
  position: relative; transition: transform .2s;
}
.disc-member:hover .disc-avatar { transform: scale(1.1); }
.disc-avatar-img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; position: relative; transition: transform .2s;
}

.status-dot {
  position: absolute; bottom: 1px; right: 1px; width: 9px; height: 9px;
  border-radius: 50%; border: 2px solid var(--bg3);
}
.s-online { background: var(--green); }
.s-idle   { background: #f59e0b; }
.s-dnd    { background: #ef4444; }

.disc-member-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .88rem;
  color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: left;
}
.disc-member-activity {
  font-size: .7rem; color: var(--gray-d);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px;
  text-align: left;
}
.disc-member-activity span { color: #888; }

.disc-panel-footer {
  border-top: 1px solid var(--border); padding: .85rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; background: #080808;
}
.disc-footer-stat {
  font-family: 'Share Tech Mono', monospace; font-size: .68rem;
  letter-spacing: 1px; display: flex; align-items: center; gap: 6px; color: var(--gray);
}
.dot-g {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px rgba(74,222,128,.5); flex-shrink: 0; animation: pdot 2s ease-in-out infinite;
}
.disc-footer-join {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .7rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: #5865F2;
  text-decoration: none; transition: color .2s;
}
.disc-footer-join:hover { color: #7b88f5; }

.disc-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 3rem; gap: .8rem;
}
.ld-dots { display: flex; gap: 7px; }
.ld-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  animation: ld 1.2s ease-in-out infinite;
}
.ld-dots span:nth-child(2) { animation-delay: .2s; }
.ld-dots span:nth-child(3) { animation-delay: .4s; }
.ld-text {
  font-family: 'Share Tech Mono', monospace; font-size: .7rem;
  letter-spacing: 1.5px; color: var(--gray-d);
}


footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 60px 6% 28px; position: relative; z-index: 10; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--red-b), transparent);
  animation: lineGrow 1.2s var(--transition) both;
}

.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  max-width: 1080px; margin: 0 auto 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.foot-logo-wrap {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .9rem; text-decoration: none;
}
.foot-logo-img {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--border-b); transition: transform .3s, box-shadow .3s;
}
.foot-logo-wrap:hover .foot-logo-img { transform: rotate(10deg) scale(1.1); box-shadow: 0 0 12px var(--red-glow); }
.foot-logo-text {
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.05rem;
  color: var(--red-b); text-shadow: 0 0 12px var(--red-glow);
  transition: text-shadow .3s;
}
.foot-logo-text em { color: var(--white); font-style: normal; }
.foot-logo-wrap:hover .foot-logo-text { text-shadow: 0 0 26px var(--red-glow), 0 0 55px rgba(204,0,0,.18); }

.foot-tag { font-size: .83rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; }

.foot-col rev {
  font-family: 'Share Tech Mono', monospace; font-size: .68rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.foot-col ul a {
  font-size: .85rem; color: var(--gray); text-decoration: none;
  transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 6px;
}
.foot-col ul a::before { content: '>'; color: var(--red); opacity: 0; transition: opacity .2s; font-size: .7rem; }
.foot-col ul a:hover { color: var(--white); padding-left: 8px; }
.foot-col ul a:hover::before { opacity: 1; }

.foot-bottom {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
}
.foot-copy { font-family: 'Share Tech Mono', monospace; font-size: .72rem; color: var(--gray-d); }
.foot-copy span { color: var(--red); }
.foot-slogan { font-family: 'Share Tech Mono', monospace; font-size: .68rem; letter-spacing: 2px; color: var(--gray-d); }


@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .disc-top   { grid-template-columns: 1fr; gap: 2rem; }
  .foot-top   { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .nav-links, .nav-join { display: none; }
  .hamburger { display: flex; }
  .live-bar  { gap: 2rem; }
  .foot-bottom { flex-direction: column; text-align: center; }
  #cursor, #cursor-ring { display: none; }
  body { cursor: auto; }
}