/* ===== Tokens ===== */
:root {
  --bg-0: #1a0e2e;
  --bg-1: #2a1450;
  --bg-2: #5a1556;
  --bg-3: #7a1a5e;

  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text: #f4eefb;
  --text-dim: #c7b8db;
  --text-faint: #9a8bb5;

  --accent-a: #ff5e8a;
  --accent-b: #ff9a4d;
  --accent-grad: linear-gradient(95deg, var(--accent-a), var(--accent-b));

  --rail-w: 86px;
  --header-h: 64px;
  --maxw: 1200px;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  min-height: 100vh;
  overflow-x: hidden;
}
/* Diagonal purple→magenta gradient wash to match original */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 700px at 12% 0%, var(--bg-1) 0%, transparent 55%),
    radial-gradient(1100px 900px at 100% 100%, var(--bg-3) 0%, transparent 55%),
    linear-gradient(140deg, var(--bg-0) 0%, var(--bg-1) 38%, var(--bg-2) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Oswald", sans-serif; font-weight: 700; margin: 0; letter-spacing: 0.5px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(10px);
  background: rgba(20, 10, 35, 0.35);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}
.site-header.scrolled { background: rgba(20, 10, 35, 0.78); }
.header-inner {
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  flex: none;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.05rem;
}
.brand-accent { color: var(--accent-a); }

.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent-grad);
  transition: width 0.25s ease;
}
.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { width: 100%; }

.header-cta { white-space: nowrap; }

.header-social { grid-column: 3; display: flex; gap: 10px; justify-content: flex-end; }
.soc {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, background 0.2s ease;
}
.soc svg { width: 16px; height: 16px; fill: var(--text-dim); transition: fill 0.2s ease; }
.soc:hover { transform: translateY(-2px); background: var(--surface-2); }
.soc:hover svg { fill: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }

/* ===== Left rail ===== */
.side-rail {
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 30;
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-right: 1px solid var(--border);
  background: rgba(20, 10, 35, 0.25);
  backdrop-filter: blur(6px);
}
.rail-nav, .rail-tools { display: flex; flex-direction: column; gap: 6px; width: 100%; align-items: center; }
.rail-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 72px;
  padding: 12px 4px;
  border-radius: var(--radius-sm);
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s ease, background 0.2s ease;
}
.rail-link svg { width: 22px; height: 22px; fill: currentColor; transition: transform 0.2s ease; }
.rail-link:hover { color: var(--text); background: var(--surface); }
.rail-link:hover svg { transform: translateY(-2px); }
.rail-link--accent { color: var(--accent-a); }
.rail-link--accent:hover { color: #fff; background: rgba(255, 94, 138, 0.14); }

.tool-btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.tool-btn svg { width: 18px; height: 18px; fill: currentColor; }
.tool-btn:hover { transform: translateY(-2px); background: var(--surface-2); color: var(--text); }

/* ===== Main layout ===== */
.main {
  margin-left: var(--rail-w);
  padding: 0 24px;
}
/* Homepage sections only — must NOT clobber inner-page (.main--page) sections,
   which set their own vertical margins for spacing. */
.main:not(.main--page) > section {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0;
}
.hero-visual { display: flex; justify-content: center; }
.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.hero-title-accent {
  background: linear-gradient(100deg, #fff 10%, var(--accent-a) 60%, var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 22px 0 30px;
  max-width: 460px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 46px 0 0;
  padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}
.hero-stats span { color: var(--text-faint); font-size: 0.82rem; margin-top: 4px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 94, 138, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 94, 138, 0.5); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn--lg { padding: 16px 38px; font-size: 1.05rem; }

/* ===== Sections ===== */
.section-head { text-align: center; margin: 0 auto 38px; max-width: 620px; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
}
.section-desc { color: var(--text-dim); margin-top: 10px; }

.games { padding: 80px 0; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.game-tile {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tile-grad, linear-gradient(160deg, rgba(255,94,138,0.2), transparent 60%));
  opacity: 0.9;
}
.game-tile:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.game-tile .gt-icon {
  position: relative;
  margin-bottom: auto;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.game-tile .gt-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}
.game-tile .gt-tag {
  position: relative;
  margin-top: 16px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-faint);
}
.game-tile .gt-name {
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 4px;
}
.game-tile .gt-meta { position: relative; color: var(--text-dim); font-size: 0.8rem; margin-top: 6px; }

/* How it works */
.how { padding: 80px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 8px 0 10px; font-size: 1.25rem; text-transform: uppercase; }
.step p { color: var(--text-dim); line-height: 1.6; margin: 0; }

/* Free tools */
.tools { padding: 0 0 80px; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tool-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.tool-card-icon {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px; margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tool-card-icon svg { width: 24px; height: 24px; fill: var(--accent-a); }
.tool-card h3 { margin: 0 0 8px; font-size: 1.2rem; text-transform: uppercase; }
.tool-card p { color: var(--text-dim); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.tool-card-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 0.9rem; color: var(--accent-a);
}
.tool-card-cta svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.2s ease; }
.tool-card:hover .tool-card-cta svg { transform: translateX(3px); }

/* CTA */
.cta { padding: 40px 0 100px; }
.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  padding: 64px 32px;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(255, 94, 138, 0.25), transparent 60%),
    var(--surface);
}
.cta-title { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }
.cta-inner p { color: var(--text-dim); margin: 14px auto 28px; max-width: 460px; }

/* ===== Footer ===== */
.site-footer {
  margin-left: var(--rail-w);
  border-top: 1px solid var(--border);
  background: rgba(15, 8, 28, 0.5);
  padding: 56px 24px 30px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr 1fr;
  gap: 30px;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-brand { text-align: center; }
.footer-brand .brand-text { font-size: 1.3rem; }
.footer-social { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.footer-disclaimer {
  max-width: var(--maxw);
  margin: 40px auto 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== Active rail link ===== */
.rail-link.is-active { color: #fff; background: var(--surface-2); }
.rail-link.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px; height: 30px;
  border-radius: 0 3px 3px 0;
  background: var(--accent-grad);
}
.rail-link { position: relative; }

/* ===== Inner page wrapper ===== */
.main--page { padding-top: 24px; padding-bottom: 60px; }

.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* Breadcrumb */
.breadcrumb {
  max-width: var(--maxw);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-dim); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .crumb-current { color: var(--text); }

/* Page hero */
.page-hero {
  max-width: var(--maxw);
  margin: 0 auto 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(255, 154, 77, 0.16), transparent 60%),
    var(--surface);
}
.page-hero-icon {
  flex: none;
  width: 92px; height: 92px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
}
.page-hero-eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
}
.page-hero-title { font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; }
.page-hero-sub { margin: 10px 0 0; color: var(--text-dim); max-width: 620px; line-height: 1.6; }
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.page-hero-meta strong { color: var(--text); }
.page-hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }

/* Game tabs */
.game-tabs {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.game-tab {
  flex: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.game-tab:hover { background: var(--surface-2); color: var(--text); }
.game-tab.is-active {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
}

/* Filter bar */
.filter-bar {
  max-width: var(--maxw);
  margin: 0 auto 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip.is-active { background: var(--surface-2); color: #fff; border-color: var(--border-strong); }
.filter-sort { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-faint); }
.filter-sort select {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}
.filter-sort select:focus { outline: 2px solid var(--accent-a); outline-offset: 1px; }

/* Coaches grid */
.coaches-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.coach-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.coach-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.coach-card.is-hidden { display: none; }
.coach-top { display: flex; align-items: center; gap: 14px; }
.coach-avatar {
  position: relative;
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a0e2e;
  background: var(--av, var(--accent-grad));
}
.coach-online {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #3ddc84;
  border: 2px solid #20123a;
}
.coach-name { font-family: "Oswald", sans-serif; font-weight: 700; letter-spacing: 0.5px; font-size: 1.15rem; margin: 0 0 4px; }
.rank-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--accent-b);
  background: rgba(255, 154, 77, 0.12);
  border: 1px solid rgba(255, 154, 77, 0.25);
}
.coach-rating { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.coach-rating b { color: var(--text); }
.coach-rating .muted { color: var(--text-faint); }
.stars {
  --p: 100%;
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}
.stars::before { content: "\2605\2605\2605\2605\2605"; }
.stars::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  left: 0; top: 0;
  width: var(--p);
  overflow: hidden;
  color: var(--accent-b);
}
.coach-bio { color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; margin: 0; flex: 1; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.coach-tags span {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.coach-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.coach-price { font-size: 0.85rem; color: var(--text-faint); }
.coach-price strong { font-family: "Oswald", sans-serif; font-size: 1.3rem; color: var(--text); }
.coach-price span { font-size: 0.8rem; }

.no-results {
  max-width: var(--maxw);
  margin: 30px auto;
  text-align: center;
  color: var(--text-faint);
}

/* ===== Info / SEO content ===== */
.page-content {
  max-width: var(--maxw);
  margin: 64px auto 0;
}
.content-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 56px 0 22px;
}
.content-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: start;
}
.content-prose h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.content-prose p {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 16px;
}
.content-prose em { color: var(--text); font-style: italic; }

.content-callout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(255, 154, 77, 0.14), transparent 60%),
    var(--surface);
  padding: 24px;
}
.content-callout h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 14px; }
.content-steps { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.content-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.4;
}
.content-steps li span {
  flex: none;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a0e2e;
  background: var(--accent-grad);
}

/* Feature grid */
.content-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.feature h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature p { color: var(--text-dim); line-height: 1.6; margin: 0; font-size: 0.94rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-a);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: #fff; }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item em { color: var(--text); font-style: italic; }

/* Content CTA */
.content-cta {
  margin-top: 56px;
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 50% -30%, rgba(255, 94, 138, 0.22), transparent 60%),
    var(--surface);
}
.content-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); text-transform: uppercase; }
.content-cta p { color: var(--text-dim); margin: 12px 0 24px; }

@media (max-width: 860px) {
  .content-intro { grid-template-columns: 1fr; }
  .content-features { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-hero { flex-direction: column; text-align: center; align-items: center; }
  .page-hero-meta { justify-content: center; flex-wrap: wrap; }
  .breadcrumb, .game-tabs, .filter-bar, .page-hero, .coaches-grid { padding-left: 4px; padding-right: 4px; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Mobile drawer overlay ===== */
.rail-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(0, 0, 0, 0.5);
}
.rail-backdrop.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 360px; }
  .steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .header-nav, .header-cta, .header-social { display: none; }

  .side-rail {
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    width: 220px;
    align-items: stretch;
    padding: 22px 16px;
  }
  .side-rail.open { transform: translateX(0); }
  .rail-link { flex-direction: row; width: 100%; justify-content: flex-start; gap: 14px; font-size: 0.95rem; }
  .rail-tools { flex-direction: row; justify-content: center; }

  .main, .site-footer { margin-left: 0; }
  .hero-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
