/* ============================================
   AWKRD GAMING — Dark purple / neon green
   ============================================ */

:root {
  --black: #050505;
  --charcoal: #0d0d0d;
  --charcoal-2: #141414;
  --charcoal-3: #1a1a1a;
  --charcoal-4: #222222;
  --border: #2a2a2a;
  --purple: #6a0dad;
  --purple-bright: #8b2fd6;
  --purple-dim: #4a0980;
  --purple-glow: rgba(106, 13, 173, 0.4);
  --neon: #39ff14;
  --neon-dim: #2bc410;
  --neon-glow: rgba(57, 255, 20, 0.35);
  --accent: var(--purple);
  --accent-bright: var(--purple-bright);
  --accent-dim: var(--purple-dim);
  --accent-glow: var(--purple-glow);
  --white: #f5f5f5;
  --electric: #fafafa;
  --muted: #9a9a9a;
  --muted-2: #6b6b6b;
  --discord: #5865f2;
  --discord-hover: #4752c4;
  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --transition: 0.25s ease;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}

.accent {
  color: var(--purple);
}

.neon {
  color: var(--neon);
}

.muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

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

.btn-purple {
  background: linear-gradient(135deg, var(--purple-bright) 0%, var(--purple) 55%, var(--purple-dim) 100%);
  color: var(--electric);
  box-shadow: 0 0 0 0 var(--purple-glow), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-purple:hover {
  background: linear-gradient(135deg, #9b3fe0 0%, var(--purple-bright) 100%);
  box-shadow: 0 0 28px var(--purple-glow), 0 12px 28px rgba(0, 0, 0, 0.45);
}

.btn-neon {
  background: var(--neon);
  color: var(--black);
  box-shadow: 0 0 20px var(--neon-glow);
  font-weight: 800;
}

.btn-neon:hover {
  background: #5cff3a;
  box-shadow: 0 0 32px var(--neon-glow), 0 12px 28px rgba(0, 0, 0, 0.45);
}

.btn-discord {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
  box-shadow: 0 0 18px var(--neon-glow);
  font-weight: 800;
  gap: 0.5rem;
}

.btn-discord:hover {
  background: #5cff3a;
  border-color: #5cff3a;
  box-shadow: 0 0 28px var(--neon-glow);
}

.btn-discord svg {
  width: 1.25em;
  height: 1.25em;
  display: block;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--purple-bright);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: rgba(106, 13, 173, 0.18);
  box-shadow: 0 0 20px var(--purple-glow);
  color: var(--electric);
}

.btn-outline-neon {
  background: transparent;
  color: var(--neon);
  border-color: var(--neon);
}

.btn-outline-neon:hover {
  background: rgba(57, 255, 20, 0.12);
  box-shadow: 0 0 20px var(--neon-glow);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--electric);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106, 13, 173, 0.25);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  color: var(--electric);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo span {
  color: var(--purple-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.75rem;
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--electric);
}

.nav-links a:not(.btn).active {
  color: var(--neon);
}

.nav-links a:not(.btn).active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.nav-discord {
  padding: 0.6rem 1.15rem !important;
  font-size: 0.82rem !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--charcoal-2);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--electric);
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.78) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 40%, transparent 60%, rgba(5, 5, 5, 0.55)),
    url("../assets/images/hero-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(106, 13, 173, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(57, 255, 20, 0.06), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 13vw, 8rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

.hero-title .line-2 {
  color: var(--purple-bright);
  text-shadow: 0 0 40px var(--purple-glow), 0 4px 40px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll .chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  animation: bounce 1.6s ease infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* ---------- Games grid ---------- */
.games {
  background: var(--charcoal);
  position: relative;
}

.games::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0.6;
}

.games-header {
  text-align: center;
  margin-bottom: 3rem;
}

.games-header .section-lead {
  margin-inline: auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.game-card {
  position: relative;
  grid-column: span 2;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal-3);
  isolation: isolate;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
  display: block;
  color: inherit;
  cursor: pointer;
}

.game-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.game-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.game-card:hover {
  border-color: rgba(106, 13, 173, 0.65);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.game-card:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.game-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.game-card:hover .game-card-bg {
  transform: scale(1.1);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.25) 0%,
    rgba(5, 5, 5, 0.55) 45%,
    rgba(5, 5, 5, 0.94) 100%
  );
  z-index: 1;
}

.game-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 0.45rem;
  color: var(--electric);
}

.game-card-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.game-card-tag {
  align-self: flex-start;
  margin-bottom: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(57, 255, 20, 0.35);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.game-card-cta {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.game-card:hover .game-card-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--neon);
}

/* ---------- Community ---------- */
.community {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(106, 13, 173, 0.14), transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 40%, rgba(57, 255, 20, 0.05), transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal-2) 50%, var(--black) 100%);
  text-align: center;
  border-top: 1px solid rgba(106, 13, 173, 0.28);
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
  overflow: hidden;
}

.community::before,
.community::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(106, 13, 173, 0.15);
  border-radius: 50%;
  top: 50%;
  pointer-events: none;
}

.community::before {
  left: -80px;
  transform: translateY(-50%);
}

.community::after {
  right: -80px;
  transform: translateY(-50%);
  border-color: rgba(57, 255, 20, 0.1);
}

.community-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.community .section-title {
  margin-bottom: 1.25rem;
}

.community p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.community .accent-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  margin: 0 auto 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand .logo {
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
  margin-bottom: 1rem;
}

/* Contact text links only — not social icons */
.footer-col > a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color var(--transition);
}

.footer-col > a:hover {
  color: var(--neon);
}

/* ---------- Footer SOCIALS (full-width bar) ---------- */
.footer-socials-bar {
  margin: 0 0 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.footer-socials-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.footer-social {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

/* Equal square buttons — icons dead-center via flex */
.social-link {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 56px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1a1a1a;
  color: #ffffff;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  overflow: hidden;
  position: relative;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(139, 47, 214, 0.8);
  background: rgba(106, 13, 173, 0.32);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 14px rgba(106, 13, 173, 0.28);
}

.social-link svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  flex-shrink: 0;
  pointer-events: none;
}

/* Discord featured — same box size, bigger glyph + neon */
.social-link.social-discord,
.social-link[data-brand="discord"] {
  order: 0;
  color: #39ff14 !important;
  border: 2px solid #39ff14 !important;
  background: rgba(57, 255, 20, 0.1) !important;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

.social-link.social-discord svg,
.social-link[data-brand="discord"] svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
}

.social-link.social-discord:hover,
.social-link[data-brand="discord"]:hover {
  color: #050505 !important;
  background: #39ff14 !important;
  border-color: #39ff14 !important;
  box-shadow: 0 0 26px rgba(57, 255, 20, 0.55);
}

.social-link[data-brand="tiktok"]:hover {
  color: #fff;
  border-color: #fe2c55;
  background: #111;
  box-shadow: 0 0 18px rgba(254, 44, 85, 0.35);
}

.social-link[data-brand="youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.12);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.3);
}

.social-link[data-brand="instagram"]:hover {
  color: #fff;
  border-color: #e1306c;
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 0 18px rgba(214, 36, 159, 0.4);
}

.social-link[data-brand="twitch"]:hover {
  color: #fff;
  border-color: #9146ff;
  background: #9146ff;
  box-shadow: 0 0 18px rgba(145, 70, 255, 0.45);
}

.social-link[data-brand="kick"]:hover {
  color: #050505;
  border-color: #53fc18;
  background: #53fc18;
  box-shadow: 0 0 18px rgba(83, 252, 24, 0.4);
}

.social-link[data-brand="facebook"]:hover {
  color: #fff;
  border-color: #1877f2;
  background: #1877f2;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.4);
}

/* Team member socials — same centering */
.member-socials {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--neon);
}

.footer-bottom a:hover {
  color: #5cff3a;
}

/* ---------- Team page ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(106, 13, 173, 0.18), transparent 70%),
    var(--black);
  border-bottom: 1px solid rgba(106, 13, 173, 0.2);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.accent-underline {
  width: 90px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 12px var(--neon-glow);
}

.page-hero p {
  color: var(--muted);
  margin-top: 1.25rem;
  max-width: 520px;
  margin-inline: auto;
}

.team-section {
  padding: 3.5rem 0 5rem;
  background: var(--charcoal);
}

.team-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.member-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.member-card:hover {
  border-color: rgba(106, 13, 173, 0.45);
  box-shadow: var(--shadow);
}

.member-card.featured {
  border-color: rgba(106, 13, 173, 0.4);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.08), 0 24px 60px rgba(0, 0, 0, 0.45);
  grid-template-columns: 380px 1fr;
}

.member-photo {
  position: relative;
  min-height: 320px;
  background: var(--charcoal-4) center / cover no-repeat;
}

.member-card.featured .member-photo {
  min-height: 400px;
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--charcoal-2));
}

.member-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-role {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
  background: rgba(57, 255, 20, 0.06);
}

.member-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.member-handle {
  color: var(--purple-bright);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.member-title {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  font-weight: 500;
}

.member-bio {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.member-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.member-card.future {
  grid-template-columns: 1fr;
  min-height: 220px;
  opacity: 0.55;
  border-style: dashed;
  border-color: rgba(106, 13, 173, 0.4);
  background:
    radial-gradient(ellipse at center, rgba(106, 13, 173, 0.1), transparent 70%),
    var(--charcoal-2);
  transition: opacity var(--transition), border-color var(--transition),
    box-shadow var(--transition), transform var(--transition);
  display: block;
  color: inherit;
}

.member-card.future:hover {
  opacity: 0.95;
  border-color: rgba(57, 255, 20, 0.45);
  border-style: solid;
  transform: translateY(-3px);
}

.future-inner {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.future-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px dashed rgba(57, 255, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon);
  margin-bottom: 0.35rem;
}

.future-inner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--electric);
}

.future-inner p {
  color: var(--muted);
  max-width: 320px;
}

/* ---------- Game detail / Support pages ---------- */
.game-detail {
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  background: var(--charcoal);
  min-height: 80vh;
}

.game-detail-header {
  margin-bottom: 2.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--neon);
}

.game-detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.game-detail-header .subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.65;
}

.detail-panel {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.detail-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--purple-bright);
  margin-bottom: 1.25rem;
}

.server-stats {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.server-stat {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal-3);
}

.server-stat:last-child {
  border-bottom: none;
}

.server-stat:nth-child(even) {
  background: rgba(106, 13, 173, 0.06);
}

.server-stat dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  align-self: center;
}

.server-stat dd {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--electric);
  word-break: break-word;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.detail-cta-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, rgba(57, 255, 20, 0.06), transparent 70%),
    var(--charcoal-2);
}

.detail-cta-block p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Support page */
.support-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.support-disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted-2);
  max-width: 560px;
  line-height: 1.55;
  border-left: 3px solid var(--purple);
  padding-left: 1rem;
}

/* ---------- Discord redirect page ---------- */
.redirect-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(57, 255, 20, 0.1), transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 60%, rgba(106, 13, 173, 0.15), transparent 60%),
    var(--black);
}

.redirect-card {
  max-width: 440px;
  padding: 2.75rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.9);
  box-shadow: var(--shadow);
}

.redirect-card h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  margin: 1rem 0 0.5rem;
}

.redirect-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.redirect-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--neon);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-card,
  .game-card:nth-child(4),
  .game-card:nth-child(5) {
    grid-column: span 1;
  }

  .game-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    width: 100%;
  }

  .member-card,
  .member-card.featured {
    grid-template-columns: 280px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn) {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:not(.btn).active::after {
    display: none;
  }

  .nav-links .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 4rem 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card,
  .game-card:nth-child(4),
  .game-card:nth-child(5),
  .game-card:last-child:nth-child(odd) {
    grid-column: span 1;
    max-width: none;
  }

  .member-card,
  .member-card.featured {
    grid-template-columns: 1fr;
  }

  .member-photo,
  .member-card.featured .member-photo {
    min-height: 240px;
  }

  .member-photo::after {
    background: linear-gradient(180deg, transparent 50%, var(--charcoal-2));
  }

  .member-body {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .server-stat {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .detail-actions .btn {
    width: 100%;
  }

  .footer-social {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}
