:root {
  --bg: #020408;
  --bg-2: #050b14;
  --panel: rgba(8, 12, 22, 0.9);
  --line: rgba(99, 179, 255, 0.2);
  --line-soft: rgba(255,255,255,0.08);
  --text: #f5f8ff;
  --muted: #8a9fb0;
  --soft: #c8d4e0;
  --blue: #3d9dff;
  --blue-bright: #6bc5ff;
  --purple: #b366ff;
  --purple-bright: #d699ff;
  --orange: #ff8c42;
  --silver: #e0e8f0;
  --silver-dark: #b0bfd0;
  --shadow: 0 32px 120px rgba(0,0,0,.6);
  --shadow-md: 0 12px 40px rgba(0,0,0,.4);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(99,179,255,.28), transparent 28rem),
    radial-gradient(circle at 82% 14%, rgba(179,102,255,.18), transparent 26rem),
    radial-gradient(circle at 90% 80%, rgba(255,140,66,.12), transparent 22rem),
    linear-gradient(180deg, #010305 0%, #050b16 35%, #02060e 70%, #010304 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.018), rgba(255,255,255,.018) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: overlay;
  opacity: .28;
  z-index: 50;
}

.site-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(89,180,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89,180,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 85%);
  z-index: -4;
}

.site-glow {
  position: fixed;
  inset: auto -200px -260px auto;
  width: 700px;
  height: 700px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47,141,255,.15), transparent 64%);
  pointer-events: none;
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--soft); line-height: 1.8; }
strong { color: #fff; }
h1, h2, h3 { margin: 0; letter-spacing: -.04em; }

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  padding-top: 16px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5, 10, 18, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(89,180,255,.24);
}

.brand-name {
  font-family: Oxanium, sans-serif;
  font-size: 21px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: .18s ease;
}

nav a:hover {
  color: #fff;
  background: rgba(47,141,255,.14);
}

.hero {
  padding: 76px 0 24px;
}

.hero-banner {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99,179,255,.15), 0 32px 120px rgba(0,0,0,.7);
  min-height: 700px;
  background: 
    radial-gradient(circle at 85% 15%, rgba(99,179,255,.18), transparent 25%),
    linear-gradient(135deg, #03080f 0%, #05101a 50%, #050b14 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,4,8,.95) 0%, rgba(3,7,13,.82) 30%, rgba(4,8,15,.35) 70%, rgba(5,8,12,.45) 100%),
    linear-gradient(180deg, rgba(99,179,255,.12), transparent 35%, rgba(0,0,0,.48) 100%),
    linear-gradient(45deg, rgba(179,102,255,.08), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  padding: 52px 40px;
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  font-weight: 900;
  animation: fadeIn 0.8s ease-out;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-bright);
  box-shadow: 0 0 20px var(--blue-bright), 0 0 40px rgba(107,197,255,.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--blue-bright), 0 0 40px rgba(107,197,255,.3);
  }
  50% {
    box-shadow: 0 0 30px var(--blue-bright), 0 0 60px rgba(107,197,255,.5);
  }
}

h1 {
  margin-top: 18px;
  font-family: Oxanium, sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  max-width: 11ch;
  animation: fadeInDown 0.8s ease-out;
}

h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(110deg, #ffffff 0%, var(--silver) 35%, var(--blue-bright) 70%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 10px 18px 10px 18px;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 14px;
  transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--silver) 0%, var(--blue-bright) 50%, var(--purple-bright) 100%);
  color: #05101a;
  box-shadow: 0 0 30px rgba(107,197,255,.3), 0 12px 40px rgba(107,197,255,.2);
  border-color: rgba(107,197,255,.4);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(107,197,255,.5), 0 16px 60px rgba(107,197,255,.3);
}

.btn.secondary {
  background: rgba(99,179,255,.12);
  color: #fff;
  border-color: rgba(99,179,255,.3);
}

.btn.secondary:hover {
  background: rgba(99,179,255,.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99,179,255,.2);
  border-color: rgba(99,179,255,.5);
}

.command-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px auto 96px;
}

.command-strip article,
.member-card,
.community-panel,
.status-box,
.discord-card,
.proof-frame,
.final-call {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.panel,
.league-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.command-strip article {
  padding: 24px;
  border-radius: 14px 22px 14px 22px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.command-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(107,197,255,.35);
  box-shadow: 0 0 20px rgba(107,197,255,.15), 0 12px 40px rgba(0,0,0,.4);
}

.command-strip span,
.roster-label,
.league-card small,
.status-box span,
.discord-box span {
  display: block;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.command-strip strong {
  font-size: 22px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.community-copy h2,
.discord-copy h2,
.proof-copy h2,
.final-call h2 {
  margin-top: 12px;
  font-family: Oxanium, sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .98;
  text-transform: uppercase;
}

.info-section,
.roster-section,
.league-section,
.community-section,
.discord-section,
.proof-section {
  margin-bottom: 96px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.panel {
  padding: 28px;
  border-radius: 18px 28px 18px 28px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,197,255,.05), rgba(179,102,255,.03));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(107,197,255,.15), 0 16px 50px rgba(0,0,0,.4);
}

.panel:hover::before {
  opacity: 1;
}

.panel h3 {
  font-family: Oxanium, sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.roster-wrap {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.member-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.member-card {
  padding: 24px;
  border-radius: 16px 24px 16px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(107,197,255,.5) !important;
  box-shadow: 0 0 30px rgba(107,197,255,.2), 0 20px 60px rgba(0,0,0,.4) !important;
}

.member-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(107,197,255,.15), transparent 72%);
  transition: all 0.35s ease;
}

.member-card:hover::after {
  right: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(107,197,255,.25), transparent 72%);
}

.member-card span {
  color: var(--silver-dark);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
  font-weight: 900;
}

.member-card h3 {
  margin-top: 6px;
  font-family: Oxanium, sans-serif;
  font-size: clamp(24px, 3vw, 31px);
}

.member-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.leader-card {
  border-color: rgba(107,197,255,.5);
  background:
    linear-gradient(135deg, rgba(107,197,255,.18), rgba(179,102,255,.08) 42%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 0 40px rgba(107,197,255,.2), var(--shadow-md);
}

.league-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
}

.league-card {
  padding: 28px;
  border-radius: 18px 28px 18px 28px;
  min-height: 260px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.league-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(107,197,255,.15), 0 16px 50px rgba(0,0,0,.4);
  border-color: rgba(107,197,255,.4);
}

.league-card h3 {
  font-family: Oxanium, sans-serif;
  font-size: 42px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.highlight-card {
  border-color: rgba(107,197,255,.5);
  background:
    radial-gradient(circle at 85% 20%, rgba(107,197,255,.2), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 0 40px rgba(107,197,255,.2), var(--shadow-md);
}

.community-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 28px;
  border-radius: 24px 34px 24px 34px;
}

.status-box {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 16px 24px 16px 24px;
  align-self: start;
}

.status-box div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.status-box div:last-child {
  border-bottom: 0;
}

.status-box strong {
  display: block;
  font-size: 18px;
}

.discord-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 24px 34px 24px 34px;
}

.discord-box {
  min-width: 300px;
  padding: 22px;
  border-radius: 14px 22px 14px 22px;
  border: 1px solid rgba(89,180,255,.28);
  background: rgba(89,180,255,.08);
}

.discord-box strong {
  display: block;
  margin-bottom: 16px;
}

.proof-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 30px;
  align-items: start;
}

.proof-frame {
  margin: 0;
  padding: 12px;
  border-radius: 24px 34px 24px 34px;
  overflow: hidden;
}

.proof-frame img {
  width: 100%;
  border-radius: 18px;
}

.proof-frame figcaption {
  color: var(--muted);
  font-size: 13px;
  padding: 12px 8px 2px;
}

.final-call {
  padding: clamp(34px, 6vw, 70px);
  margin-bottom: 58px;
  border-radius: 24px 34px 24px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(89,180,255,.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.034));
}

.final-call .eyebrow {
  justify-content: center;
}

.final-call p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  nav {
    justify-content: flex-start;
  }

  .league-grid,
  .community-panel,
  .discord-card,
  .proof-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell,
  .nav-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero-banner {
    min-height: 680px;
  }

  .hero-content {
    width: min(100% - 24px, 100%);
    padding: 36px 18px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .member-list,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .discord-box {
    min-width: 0;
  }

  .footer {
    flex-direction: column;
  }
}
