:root {
  --bg: #020205;
  --bg-2: #07050c;
  --panel: rgba(14, 13, 20, 0.72);
  --panel-2: rgba(18, 16, 27, 0.92);
  --border: rgba(255, 255, 255, 0.085);
  --border-strong: rgba(170, 135, 255, 0.32);
  --text: #faf7ff;
  --muted: #aaa4b8;
  --muted-2: #797386;
  --purple: #a986ff;
  --purple-2: #7d5cff;
  --youtube: #ff0033;
  --tiktok-cyan: #25f4ee;
  --tiktok-red: #fe2c55;
  --radius: 26px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 134, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 10% 35%, rgba(125, 92, 255, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 62%, rgba(125, 92, 255, 0.07), transparent 28rem),
    linear-gradient(180deg, #020205 0%, #050409 45%, #020205 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 62%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.48) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 6vw, 86px);
  border-bottom: 1px solid rgba(255,255,255,0.075);
  background: rgba(3, 3, 7, 0.76);
  backdrop-filter: blur(20px);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(169, 134, 255, 0.55));
}

.site-nav,
.header-actions,
.footer-socials,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted-2);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.025em;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  transition: left 180ms ease, right 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.site-nav a:hover,
.site-nav a.active,
.site-footer nav a:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(169, 134, 255, 0.45);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.header-actions {
  justify-content: flex-end;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.icon-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.035);
}

.icon-link:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.glow-x:hover {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.28);
}

.glow-youtube:hover {
  box-shadow: 0 0 34px rgba(255, 0, 51, 0.46);
}

.glow-tiktok:hover {
  box-shadow:
    -8px 0 30px rgba(37, 244, 238, 0.28),
    8px 0 30px rgba(254, 44, 85, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #b99cff 0%, #956cff 52%, #7f5cff 100%);
  color: #07050c;
  box-shadow: 0 16px 48px rgba(154, 113, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(169, 134, 255, 0.58), 0 18px 54px rgba(154, 113, 255, 0.22);
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 30px rgba(169, 134, 255, 0.18);
}

.btn-large {
  min-height: 56px;
  min-width: 174px;
  border-radius: 15px;
}

.discord-icon-small {
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
}

.section {
  position: relative;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 86px);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 110px;
}

.hero-logo {
  width: clamp(132px, 18vw, 232px);
  height: clamp(132px, 18vw, 232px);
  object-fit: contain;
  margin-bottom: 22px;
  filter:
    drop-shadow(0 0 28px rgba(169, 134, 255, 0.58))
    drop-shadow(0 0 80px rgba(169, 134, 255, 0.28));
  animation: floatLogo 5s ease-in-out infinite;
}

.eyebrow {
  color: var(--purple);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin: 0 0 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  text-shadow: 0 0 40px rgba(169, 134, 255, 0.14);
}

.tagline {
  margin: 0 0 42px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 42px;
  line-height: 1;
  animation: bounce 1.8s infinite;
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
}

.ambient-one {
  width: 680px;
  height: 680px;
  background: rgba(169, 134, 255, 0.13);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.ambient-two {
  width: 360px;
  height: 360px;
  background: rgba(124, 77, 255, 0.12);
  right: 12%;
  bottom: 18%;
}

.split-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent);
}

.section-inner.centered,
.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 18px rgba(169, 134, 255, 0.48));
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(169, 134, 255, 0.12);
}

.section p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.card-grid,
.social-grid,
.partner-grid {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.roster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placeholder-card,
.partner-card,
.social-card,
.partner-cta,
.apply-card {
  position: relative;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.006)),
    rgba(8, 7, 12, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.placeholder-card::before,
.partner-card::before,
.social-card::before,
.partner-cta::before,
.apply-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 28%, transparent 72%, rgba(169, 134, 255, 0.06));
  opacity: 0.5;
}

.placeholder-card {
  min-height: 264px;
  display: grid;
  place-items: center;
  color: var(--muted-2);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 850px;
}

.partner-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  color: var(--muted-2);
}

.partner-cta,
.apply-card {
  max-width: 850px;
  margin: 64px auto 0;
  padding: clamp(34px, 6vw, 58px);
  text-align: center;
}

.partner-cta h3,
.apply-card h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
}

.socials-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1030px;
  justify-items: stretch;
}

.social-card {
  min-height: 210px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  transition: opacity 220ms ease;
  background: radial-gradient(circle at 50% 0%, rgba(169, 134, 255, 0.22), transparent 68%);
  z-index: -1;
}

.social-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.014)),
    rgba(12, 10, 18, 0.86);
}

.social-card:hover::after {
  opacity: 1;
}

.social-card img,
.social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 22px;
  transition: transform 220ms ease, filter 220ms ease;
}

.social-card h3 {
  font-size: 21px;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}

.social-card p {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0;
  line-height: 1.5;
}

.social-card:hover img,
.social-card:hover .social-icon {
  transform: scale(1.13);
}

.social-discord:hover {
  box-shadow: 0 0 48px rgba(169, 134, 255, 0.38);
}

.social-x:hover {
  box-shadow: 0 0 48px rgba(255,255,255,0.28);
}

.social-tiktok:hover {
  box-shadow:
    -16px 0 45px rgba(37, 244, 238, 0.30),
    16px 0 45px rgba(254, 44, 85, 0.30);
}

.social-youtube:hover {
  box-shadow: 0 0 50px rgba(255, 0, 51, 0.45);
}

.discord-card-icon {
  display: grid;
  place-items: center;
  color: var(--purple);
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(135deg, #c5adff, #8a63ff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(169, 134, 255, 0.52));
}

.apply-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(169, 134, 255, 0.48));
}

.apply-card .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.banner-section {
  padding: 0 clamp(20px, 6vw, 86px) 100px;
}

.banner-section img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 52px rgba(169, 134, 255, 0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 56px clamp(22px, 6vw, 86px);
  border-top: 1px solid var(--border);
  color: var(--muted-2);
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer .footer-socials {
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 9, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .roster-grid,
  .partner-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer nav,
  .site-footer .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .apply-card .hero-actions {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .roster-grid,
  .partner-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 48px;
  }
}


/* v4 Discord logo polish */
.discord-button-logo {
  width: 19px;
  height: 19px;
  object-fit: cover;
  border-radius: 999px;
  filter: drop-shadow(0 0 8px rgba(169, 134, 255, 0.55));
}

.discord-card-logo {
  width: 58px !important;
  height: 58px !important;
  object-fit: cover !important;
  border-radius: 50%;
  margin-bottom: 20px !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 26px rgba(169, 134, 255, 0.45);
}

.social-discord:hover .discord-card-logo {
  filter:
    drop-shadow(0 0 16px rgba(169, 134, 255, 0.7))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.22));
}


/* v5 header/footer social symbols */
.header-symbol {
  color: #6f6a7c;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.92;
}

.header-symbol:hover {
  color: #f4f0ff;
  text-shadow: 0 0 18px rgba(169, 134, 255, 0.45);
}

.header-symbol.glow-youtube:hover {
  color: #ff0033;
  text-shadow:
    0 0 12px rgba(255, 0, 51, 0.65),
    0 0 28px rgba(255, 0, 51, 0.35);
}

.header-symbol.glow-tiktok:hover {
  color: #f4f0ff;
  text-shadow:
    -3px 0 10px rgba(37, 244, 238, 0.55),
    3px 0 10px rgba(254, 44, 85, 0.55),
    0 0 24px rgba(255, 255, 255, 0.2);
}

.header-symbol.glow-x:hover {
  color: #f4f0ff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.34);
}


/* v6 polished header/footer social SVG icons */
.header-symbol {
  color: #817a90;
  opacity: 0.86;
  font-size: unset;
  letter-spacing: 0;
}

.header-symbol svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
  transition: transform 180ms ease, color 180ms ease, filter 180ms ease;
}

.header-symbol:hover {
  background: rgba(255, 255, 255, 0.035);
}

.header-symbol:hover svg {
  transform: scale(1.12);
}

.header-symbol.glow-x:hover {
  color: #f4f0ff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.header-symbol.glow-youtube:hover {
  color: #ff0033;
  box-shadow: 0 0 28px rgba(255, 0, 51, 0.28);
}

.header-symbol.glow-tiktok:hover {
  color: #ffffff;
  box-shadow:
    -8px 0 24px rgba(37, 244, 238, 0.20),
    8px 0 24px rgba(254, 44, 85, 0.20);
}

.header-symbol.glow-tiktok:hover svg {
  filter:
    drop-shadow(-2px 0 0 rgba(37, 244, 238, 0.75))
    drop-shadow(2px 0 0 rgba(254, 44, 85, 0.75));
}


/* v7 management team section */
.team-section {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 20%, rgba(169, 134, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 62%);
}

.team-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}

.team-card {
  position: relative;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008)),
    rgba(9, 8, 14, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 134, 255, 0.17), transparent 52%),
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 28%, transparent 74%, rgba(169, 134, 255, 0.08));
  opacity: 0.78;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(169, 134, 255, 0.34);
  box-shadow: var(--shadow), 0 0 48px rgba(169, 134, 255, 0.18);
}

.team-image-wrap {
  position: relative;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.team-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.66)),
    radial-gradient(circle at 50% 0%, rgba(169, 134, 255, 0.12), transparent 64%);
}

.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 280ms ease;
}

.team-card:hover .team-image-wrap img {
  transform: scale(1.045);
}

.team-content {
  position: relative;
  padding: 22px 6px 4px;
}

.team-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.team-content h3 {
  margin-bottom: 4px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.team-handle {
  margin-bottom: 16px !important;
  color: var(--muted-2) !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.team-content p:not(.team-handle) {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.team-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,255,255,0.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.team-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.05);
}

.featured-team-card {
  border-color: rgba(169, 134, 255, 0.22);
}

.featured-team-card .team-image-wrap {
  height: 230px;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .team-card,
  .featured-team-card {
    min-height: auto;
  }

  .team-image-wrap,
  .featured-team-card .team-image-wrap {
    height: 280px;
  }
}

@media (max-width: 620px) {
  .team-image-wrap,
  .featured-team-card .team-image-wrap {
    height: 230px;
  }
}


/* v8 light / dark theme toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.028);
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: 0 0 28px rgba(169, 134, 255, 0.22);
}

.theme-icon {
  display: none;
  font-size: 21px;
  line-height: 1;
}

html[data-theme="dark"] .theme-icon-light,
html:not([data-theme]) .theme-icon-light {
  display: block;
}

html[data-theme="light"] .theme-icon-dark {
  display: block;
}

html[data-theme="light"] {
  background: #f7f3ff;
}

html[data-theme="light"] body {
  color: #181320;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 127, 255, 0.30), transparent 32rem),
    radial-gradient(circle at 12% 28%, rgba(210, 197, 255, 0.50), transparent 26rem),
    radial-gradient(circle at 86% 58%, rgba(236, 231, 255, 0.78), transparent 28rem),
    linear-gradient(180deg, #fbf9ff 0%, #f4f0ff 48%, #ffffff 100%);
}

html[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(108, 86, 168, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 86, 168, 0.045) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 66%);
}

html[data-theme="light"] body::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.25), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(118, 82, 215, 0.10), transparent 55%);
}

html[data-theme="light"] .site-header {
  background: rgba(252, 250, 255, 0.76);
  border-bottom-color: rgba(69, 50, 112, 0.11);
}

html[data-theme="light"] .site-nav a,
html[data-theme="light"] .site-footer nav a,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .site-footer p,
html[data-theme="light"] .placeholder-card,
html[data-theme="light"] .partner-card,
html[data-theme="light"] .social-card p,
html[data-theme="light"] .team-handle,
html[data-theme="light"] .team-content p:not(.team-handle),
html[data-theme="light"] .section p,
html[data-theme="light"] .tagline {
  color: #6f6680 !important;
}

html[data-theme="light"] .site-nav a:hover,
html[data-theme="light"] .site-nav a.active,
html[data-theme="light"] .site-footer nav a:hover {
  color: #181320 !important;
}

html[data-theme="light"] .placeholder-card,
html[data-theme="light"] .partner-card,
html[data-theme="light"] .social-card,
html[data-theme="light"] .partner-cta,
html[data-theme="light"] .apply-card,
html[data-theme="light"] .team-card {
  border-color: rgba(89, 66, 143, 0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(247,243,255,0.76)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 70px rgba(89, 66, 143, 0.16),
    0 0 0 1px rgba(255,255,255,0.58) inset;
}

html[data-theme="light"] .split-section,
html[data-theme="light"] .team-section,
html[data-theme="light"] .site-footer {
  border-color: rgba(89, 66, 143, 0.11);
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 134, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42));
}

html[data-theme="light"] .btn-outline {
  color: #211936;
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(89, 66, 143, 0.18);
}

html[data-theme="light"] .btn-outline:hover {
  border-color: rgba(137, 99, 229, 0.40);
  box-shadow: 0 0 30px rgba(137, 99, 229, 0.16);
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .icon-link {
  color: #71678a;
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(89, 66, 143, 0.13);
}

html[data-theme="light"] .social-card:hover,
html[data-theme="light"] .team-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,239,255,0.90)),
    rgba(255, 255, 255, 0.90);
}

html[data-theme="light"] .banner-section img {
  border-color: rgba(89, 66, 143, 0.14);
  box-shadow: 0 24px 80px rgba(137, 99, 229, 0.18);
}


/* v9 refined light theme */
html[data-theme="light"] {
  background: #fbfaff;
}

html[data-theme="light"] body {
  color: #17121f;
  background:
    radial-gradient(circle at 50% -10%, rgba(143, 95, 255, 0.20), transparent 34rem),
    radial-gradient(circle at 12% 28%, rgba(206, 196, 255, 0.34), transparent 28rem),
    radial-gradient(circle at 88% 58%, rgba(183, 164, 255, 0.24), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 45%, #ffffff 100%);
}

html[data-theme="light"] body::before {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(87, 63, 139, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 63, 139, 0.038) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 70%);
}

html[data-theme="light"] body::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(145, 106, 255, 0.045));
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(48, 32, 84, 0.10);
  box-shadow: 0 12px 36px rgba(45, 28, 86, 0.055);
}

html[data-theme="light"] .brand img,
html[data-theme="light"] .hero-logo,
html[data-theme="light"] .section-heading img,
html[data-theme="light"] .apply-card img,
html[data-theme="light"] .site-footer img {
  filter:
    drop-shadow(0 0 16px rgba(143, 95, 255, 0.26))
    drop-shadow(0 10px 28px rgba(60, 42, 110, 0.12));
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3 {
  color: #14101c;
  text-shadow: none;
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .team-label {
  color: #7c4dff;
}

html[data-theme="light"] .tagline,
html[data-theme="light"] .section p,
html[data-theme="light"] .social-card p,
html[data-theme="light"] .team-content p:not(.team-handle),
html[data-theme="light"] .team-handle,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .site-footer p,
html[data-theme="light"] .placeholder-card,
html[data-theme="light"] .partner-card {
  color: #665d75 !important;
}

html[data-theme="light"] .site-nav a,
html[data-theme="light"] .site-footer nav a {
  color: #746b82 !important;
}

html[data-theme="light"] .site-nav a:hover,
html[data-theme="light"] .site-nav a.active,
html[data-theme="light"] .site-footer nav a:hover {
  color: #17121f !important;
  text-shadow: none;
}

html[data-theme="light"] .site-nav a::after {
  background: linear-gradient(90deg, transparent, #8f5fff, transparent);
}

html[data-theme="light"] .split-section,
html[data-theme="light"] .team-section,
html[data-theme="light"] .site-footer {
  border-color: rgba(48, 32, 84, 0.10);
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 95, 255, 0.09), transparent 32rem),
    linear-gradient(180deg, rgba(255,255,255,0.80), rgba(250,247,255,0.64));
}

html[data-theme="light"] .placeholder-card,
html[data-theme="light"] .partner-card,
html[data-theme="light"] .social-card,
html[data-theme="light"] .partner-cta,
html[data-theme="light"] .apply-card,
html[data-theme="light"] .team-card {
  border-color: rgba(70, 48, 120, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,247,255,0.88)),
    #ffffff;
  box-shadow:
    0 22px 60px rgba(58, 39, 103, 0.105),
    0 0 0 1px rgba(255,255,255,0.75) inset;
}

html[data-theme="light"] .placeholder-card::before,
html[data-theme="light"] .partner-card::before,
html[data-theme="light"] .social-card::before,
html[data-theme="light"] .partner-cta::before,
html[data-theme="light"] .apply-card::before,
html[data-theme="light"] .team-card::before {
  background:
    linear-gradient(120deg, rgba(143, 95, 255, 0.08), transparent 28%, transparent 74%, rgba(255, 255, 255, 0.72));
  opacity: 0.70;
}

html[data-theme="light"] .social-card::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 95, 255, 0.18), transparent 70%);
}

html[data-theme="light"] .social-card:hover,
html[data-theme="light"] .team-card:hover,
html[data-theme="light"] .partner-card:hover {
  border-color: rgba(143, 95, 255, 0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,242,255,0.94)),
    #ffffff;
  box-shadow:
    0 26px 70px rgba(78, 52, 143, 0.145),
    0 0 34px rgba(143, 95, 255, 0.11);
}

html[data-theme="light"] .team-image-wrap {
  border-color: rgba(70, 48, 120, 0.13);
  background: #f2eefc;
}

html[data-theme="light"] .team-image-wrap::after {
  background:
    linear-gradient(180deg, transparent 35%, rgba(21, 15, 34, 0.48)),
    radial-gradient(circle at 50% 0%, rgba(143, 95, 255, 0.12), transparent 64%);
}

html[data-theme="light"] .btn-primary {
  color: #100b1b;
  background: linear-gradient(135deg, #c3adff 0%, #a684ff 48%, #8f5fff 100%);
  box-shadow:
    0 16px 44px rgba(143, 95, 255, 0.24),
    0 0 0 1px rgba(255,255,255,0.35) inset;
}

html[data-theme="light"] .btn-primary:hover {
  box-shadow:
    0 0 34px rgba(143, 95, 255, 0.38),
    0 18px 52px rgba(143, 95, 255, 0.22);
}

html[data-theme="light"] .btn-outline {
  color: #17121f;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(70, 48, 120, 0.16);
  box-shadow: 0 12px 30px rgba(58, 39, 103, 0.055);
}

html[data-theme="light"] .btn-outline:hover {
  border-color: rgba(143, 95, 255, 0.34);
  box-shadow:
    0 0 28px rgba(143, 95, 255, 0.14),
    0 14px 36px rgba(58, 39, 103, 0.08);
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .icon-link {
  color: #716780;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(70, 48, 120, 0.13);
  box-shadow: 0 10px 28px rgba(58, 39, 103, 0.05);
}

html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .icon-link:hover {
  color: #17121f;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(143, 95, 255, 0.26);
}

html[data-theme="light"] .header-symbol.glow-x:hover {
  color: #17121f;
  box-shadow: 0 0 24px rgba(40, 28, 70, 0.13);
}

html[data-theme="light"] .header-symbol.glow-youtube:hover {
  color: #ff0033;
  box-shadow: 0 0 28px rgba(255, 0, 51, 0.20);
}

html[data-theme="light"] .header-symbol.glow-tiktok:hover {
  color: #17121f;
  box-shadow:
    -8px 0 22px rgba(37, 244, 238, 0.18),
    8px 0 22px rgba(254, 44, 85, 0.18);
}

html[data-theme="light"] .social-discord:hover {
  box-shadow:
    0 26px 70px rgba(78, 52, 143, 0.145),
    0 0 42px rgba(143, 95, 255, 0.20);
}

html[data-theme="light"] .social-x:hover {
  box-shadow:
    0 26px 70px rgba(78, 52, 143, 0.12),
    0 0 38px rgba(40, 28, 70, 0.12);
}

html[data-theme="light"] .social-tiktok:hover {
  box-shadow:
    -14px 0 34px rgba(37, 244, 238, 0.18),
    14px 0 34px rgba(254, 44, 85, 0.18),
    0 26px 70px rgba(78, 52, 143, 0.10);
}

html[data-theme="light"] .social-youtube:hover {
  box-shadow:
    0 0 40px rgba(255, 0, 51, 0.20),
    0 26px 70px rgba(78, 52, 143, 0.10);
}

html[data-theme="light"] .banner-section img {
  border-color: rgba(70, 48, 120, 0.13);
  box-shadow:
    0 22px 70px rgba(78, 52, 143, 0.14),
    0 0 44px rgba(143, 95, 255, 0.11);
}

html[data-theme="light"] .discord-card-logo {
  box-shadow:
    0 0 0 1px rgba(70, 48, 120, 0.11),
    0 0 24px rgba(143, 95, 255, 0.24);
}


/* v10 website applications, loader, roster data, and team badges */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(169, 134, 255, 0.16), transparent 26rem),
    #020205;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(169, 134, 255, 0.62));
  animation: loaderPulse 1.35s ease-in-out infinite;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

.member-count {
  font-size: 12px;
  font-weight: 950;
  opacity: 0.84;
}

.responsibility-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 20px;
  padding: 0;
  list-style: none;
}

.responsibility-list li {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  font-weight: 850;
}

.applications-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 10%, rgba(169, 134, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.014), transparent 65%);
}

.application-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -18px auto 30px;
  flex-wrap: wrap;
}

.application-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  font-weight: 900;
  transition: 180ms ease;
}

.application-tab:hover,
.application-tab.active {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(169, 134, 255, 0.12);
  box-shadow: 0 0 28px rgba(169, 134, 255, 0.16);
}

.application-panels {
  max-width: 940px;
  margin: 0 auto;
}

.application-form {
  display: none;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008)),
    rgba(9, 8, 14, 0.78);
  box-shadow: var(--shadow);
}

.application-form.active {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  padding: 0 14px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.application-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: rgba(169, 134, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(169, 134, 255, 0.10);
  background: rgba(255,255,255,0.05);
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  min-height: 22px;
  margin: 0 !important;
  font-size: 14px !important;
  color: var(--muted) !important;
}

.form-status.success {
  color: #57F287 !important;
}

.form-status.error {
  color: #ff6b8a !important;
}

.application-channel-links {
  max-width: 940px;
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.application-channel-links a {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.018);
  transition: 180ms ease;
}

.application-channel-links a:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.roster-card {
  min-height: 264px;
  padding: 24px;
  display: grid;
  place-items: end start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.70)),
    var(--roster-image, none) center / cover,
    rgba(12, 10, 18, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.roster-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.roster-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

html[data-theme="light"] .application-form {
  border-color: rgba(70, 48, 120, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,247,255,0.88)),
    #ffffff;
  box-shadow:
    0 22px 60px rgba(58, 39, 103, 0.105),
    0 0 0 1px rgba(255,255,255,0.75) inset;
}

html[data-theme="light"] .application-form input,
html[data-theme="light"] .application-form select,
html[data-theme="light"] .application-form textarea {
  color: #17121f;
  background: rgba(255,255,255,0.72);
  border-color: rgba(70, 48, 120, 0.13);
}

html[data-theme="light"] .application-tab,
html[data-theme="light"] .application-channel-links a,
html[data-theme="light"] .responsibility-list li {
  color: #665d75;
  background: rgba(255,255,255,0.70);
  border-color: rgba(70, 48, 120, 0.13);
}

html[data-theme="light"] .application-tab.active,
html[data-theme="light"] .application-tab:hover,
html[data-theme="light"] .application-channel-links a:hover {
  color: #17121f;
  border-color: rgba(143, 95, 255, 0.30);
  background: rgba(244, 239, 255, 0.90);
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* v11 form fixes */
.application-form select option {
  color: #17121f;
  background: #ffffff;
}

html[data-theme="dark"] .application-form select option,
html:not([data-theme]) .application-form select option {
  color: #f7f2ff;
  background: #15111f;
}

.application-form select {
  color-scheme: dark;
}

html[data-theme="light"] .application-form select {
  color-scheme: light;
}


/* v12 header centering refinement */
@media (min-width: 981px) {
  .site-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 clamp(28px, 5vw, 86px);
  }

  .brand {
    flex: 0 0 auto;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
    width: max-content;
    margin: 0 auto;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
    gap: 14px;
    z-index: 2;
  }

  .site-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid !important;
  }

  .site-nav {
    left: 18px;
    right: 18px;
    transform: none;
    width: auto;
  }
}


/* v13 header nav balance + roster apply link polish */
@media (min-width: 981px) {
  .site-header {
    position: sticky;
    display: grid !important;
    grid-template-columns: 190px 1fr 390px;
    align-items: center;
    padding: 0 clamp(28px, 5vw, 82px);
    column-gap: 24px;
  }

  .brand {
    justify-self: start;
  }

  .site-nav {
    position: static !important;
    transform: none !important;
    width: 100%;
    justify-content: center;
    gap: clamp(18px, 1.8vw, 28px);
    margin: 0;
  }

  .header-actions {
    justify-self: end;
    margin-left: 0;
  }
}

@media (min-width: 1180px) {
  .site-header {
    grid-template-columns: 210px 1fr 430px;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid !important;
  }
}


/* v14 partner type field fix included in index.html */


/* v16 asset/path safety fixes */
img {
  max-width: 100%;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.header-symbol svg,
.header-symbol img,
.icon-link svg,
.icon-link img {
  width: 20px;
  height: 20px;
}

.discord-button-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero-logo,
.section-heading img,
.apply-card img {
  width: min(180px, 42vw);
  height: auto;
  object-fit: contain;
}

.social-card img,
.social-card svg {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}


/* v20 cleaner select dropdown styling */
.application-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(247, 242, 255, 0.86) 50%),
    linear-gradient(135deg, rgba(247, 242, 255, 0.86) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.application-form select option {
  color: #f7f2ff !important;
  background: #15111f !important;
  font-weight: 800;
}

.application-form select option:checked {
  color: #ffffff !important;
  background: #8B5CF6 !important;
}

html[data-theme="light"] .application-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(36, 24, 60, 0.82) 50%),
    linear-gradient(135deg, rgba(36, 24, 60, 0.82) 50%, transparent 50%);
}

html[data-theme="light"] .application-form select option {
  color: #17121f !important;
  background: #ffffff !important;
}

html[data-theme="light"] .application-form select option:checked {
  color: #ffffff !important;
  background: #8B5CF6 !important;
}

/* Firefox/Windows dropdowns can still use system styling. This keeps the closed select clean. */
.application-form select:focus {
  border-color: rgba(169, 134, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(169, 134, 255, 0.12),
    0 0 26px rgba(169, 134, 255, 0.16);
}


/* v21 clean application choice cards */
.form-field {
  display: grid;
  gap: 10px;
}

.field-label {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 86px;
  padding: 1px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(169, 134, 255, 0.40), rgba(255, 255, 255, 0.08));
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 18px rgba(169, 134, 255, 0.24));
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  width: 100%;
  border-radius: 17px;
  padding: 16px 16px;
  background: rgba(18, 15, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.choice-card strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.choice-card small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.choice-card input:checked + span {
  border-color: rgba(169, 134, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(18, 15, 26, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(169, 134, 255, 0.30),
    0 0 28px rgba(139, 92, 246, 0.22);
}

.choice-card input:checked + span strong::after {
  content: " ✓";
  color: #a986ff;
}

html[data-theme="light"] .choice-card span {
  background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .choice-card input:checked + span {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(255, 255, 255, 0.96));
}

@media (max-width: 680px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}


/* v3 roster Twitter/X button */
.roster-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(169, 134, 255, 0.32);
  background: rgba(10, 8, 16, 0.72);
  color: #f7f2ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.roster-social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 134, 255, 0.72);
  background: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 0 22px rgba(169, 134, 255, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .roster-social-btn {
  background: rgba(255, 255, 255, 0.78);
  color: #17121f;
  border-color: rgba(139, 92, 246, 0.24);
}


/* v4 roster stats + tracker buttons */
.roster-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.roster-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(169, 134, 255, 0.28);
  color: #f7f2ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.roster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.roster-actions .roster-social-btn {
  margin-top: 0;
}

.roster-tracker-btn {
  border-color: rgba(108, 182, 255, 0.36);
}

.roster-tracker-btn:hover {
  border-color: rgba(108, 182, 255, 0.76);
  background: rgba(108, 182, 255, 0.18);
  box-shadow:
    0 0 22px rgba(108, 182, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .roster-stats span {
  background: rgba(139, 92, 246, 0.10);
  border-color: rgba(139, 92, 246, 0.22);
  color: #17121f;
}
