/* =====================================================================
   Fan Fantasy & Quiz Platform — Native Glassmorphism Stylesheet
   No frameworks. Pure CSS. Dark emerald premium theme.
   ===================================================================== */

:root {
  --emerald-50:  #e6fdf5;
  --emerald-300: #34d399;
  --emerald-400: #10b981;
  --emerald-500: #059669;
  --emerald-900: #064e3b;
  --bg-deep:     #021a12;
  --bg-mid:      #083325;
  --glass-bg:    rgba(255, 255, 255, 0.05);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #eafff5;
  --text-muted:   #9fc9b8;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 24px rgba(16, 185, 129, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Bricolage Grotesque", "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------------------
   Glass primitives
   --------------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 28px;
}

.glass-card--tight { padding: 18px; border-radius: var(--radius-md); }

.glass-panel {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ---------------------------------------------------------------------
   Navigation
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 26, 18, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque", "Segoe UI", Roboto, sans-serif;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-900));
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--glass-bg-strong);
  color: var(--text-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.points-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-weight: 600;
  font-size: 14px;
  color: var(--emerald-300);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 8px 10px;
  cursor: pointer;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
  color: #032216;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(16, 185, 129, 0.55); }

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-ghost:hover { background: var(--glass-bg-strong); }

.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  padding: 64px 0 32px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #ffffff, var(--emerald-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ---------------------------------------------------------------------
   Landing hero (public homepage) — photo background + dark overlay
   --------------------------------------------------------------------- */
.hero-landing {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 56px;
  margin: 16px 0 8px;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(180deg, rgba(2, 26, 18, 0.45) 0%, rgba(2, 26, 18, 0.82) 60%, var(--bg-deep) 100%),
    url('/assets/img/hero-bg.jpg?v=2');
  background-size: cover;
  background-position: center 35%;
  border: 1px solid var(--glass-border);
}

.hero-landing-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--emerald-300);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-landing h1 {
  font-size: 46px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-landing p { max-width: 620px; font-size: 17px; }

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-lg { padding: 15px 30px; font-size: 15px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat strong {
  display: block;
  font-size: 26px;
  color: var(--emerald-300);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.photo-credit {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 16px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.photo-credit a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; }

.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ---------------------------------------------------------------------
   How It Works steps
   --------------------------------------------------------------------- */
.steps-section { margin-top: 12px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card { text-align: center; padding: 28px 20px; }

.step-number {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
  color: #032216;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.step-card h3 { font-size: 15px; margin: 0 0 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------------------
   Photo banner CTA
   --------------------------------------------------------------------- */
.photo-banner {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
  padding: 60px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--glass-border);
  background-image:
    linear-gradient(120deg, rgba(2, 26, 18, 0.82), rgba(6, 78, 59, 0.68)),
    url('/assets/img/action-banner.jpg?v=2');
  background-size: cover;
  background-position: center;
}

.photo-banner-inner { position: relative; z-index: 1; }
.photo-banner h2 { margin: 0 0 10px; font-size: 28px; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4); }
.photo-banner p { color: var(--text-primary); opacity: 0.85; max-width: 520px; margin: 0 auto 22px; }

/* ---------------------------------------------------------------------
   Feature cards
   --------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card { padding: 26px 24px; }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; margin: 0 0 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------------------
   FAQ (native <details>/<summary> accordion, no JS needed)
   --------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item { padding: 0; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--emerald-400);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-answer a { color: var(--emerald-300); font-weight: 600; }

/* ---------------------------------------------------------------------
   Final CTA
   --------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  padding: 52px 30px;
  margin: 48px 0 28px;
}

.final-cta h2 { margin: 0 0 10px; font-size: 26px; }
.final-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }

/* ---------------------------------------------------------------------
   Fantasy Coming Soon banner
   --------------------------------------------------------------------- */
.fantasy-teaser {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.18), rgba(6, 78, 59, 0.35));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fantasy-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.25), transparent 60%);
  pointer-events: none;
}

.fantasy-teaser h3 { margin: 0 0 6px; font-size: 20px; }
.fantasy-teaser p { margin: 0; color: var(--text-muted); font-size: 14px; }

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--emerald-400);
  color: #032216;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* ---------------------------------------------------------------------
   Match prediction grid
   --------------------------------------------------------------------- */
.section-title {
  font-size: 22px;
  margin: 36px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.match-card {
  padding: 20px;
}

.match-card .teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.match-card .teams .team {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.team-crest {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.match-card .vs { color: var(--emerald-400); font-size: 12px; margin: 0 8px; }

.match-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pick-btn {
  padding: 10px 0;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pick-btn:hover { border-color: var(--emerald-400); }

.pick-btn.active {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
  color: #032216;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ---------------------------------------------------------------------
   Slip builder (sticky side panel)
   --------------------------------------------------------------------- */
.slip-panel {
  position: sticky;
  top: 90px;
  padding: 22px;
}

.slip-panel h3 { margin-top: 0; }

.slip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13px;
}

.slip-item:last-child { border-bottom: none; }

.slip-pick {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-300);
  font-weight: 700;
  font-size: 12px;
}

.slip-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  padding: 24px 0;
}

.slip-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 16px 0;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   Prediction history
   --------------------------------------------------------------------- */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.history-ticket { padding: 22px; }

.history-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
}

.ticket-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-right: 10px;
}

.ticket-status-badge.status-pending { background: rgba(251, 191, 36, 0.15); color: #fde68a; }
.ticket-status-badge.status-won { background: rgba(16, 185, 129, 0.18); color: var(--emerald-300); }
.ticket-status-badge.status-lost { background: rgba(248, 113, 113, 0.15); color: #fca5a5; }

.history-date { font-size: 12px; color: var(--text-muted); }

.history-points { font-weight: 700; font-size: 14px; }
.points-won { color: var(--emerald-300); }
.points-lost { color: #fca5a5; }
.points-pending { color: var(--text-muted); font-weight: 600; }

.history-selections {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.history-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13px;
}

.history-selection:last-child { border-bottom: none; padding-bottom: 0; }

.history-teams {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.history-teams .team { display: inline-flex; align-items: center; gap: 6px; }
.history-teams .vs { color: var(--text-muted); font-size: 11px; }

.history-pick-result {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pick-correct { background: rgba(16, 185, 129, 0.15); color: var(--emerald-300); }
.pick-wrong { background: rgba(248, 113, 113, 0.15); color: #fca5a5; }
.pick-tbd {
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 10px;
}

/* ---------------------------------------------------------------------
   Leaderboard
   --------------------------------------------------------------------- */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
}

.leaderboard-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.6px;
}

.leaderboard-table tbody tr {
  border-top: 1px solid var(--glass-border);
  transition: background 0.15s ease;
}

.leaderboard-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

.leaderboard-table tbody tr.top-rank { background: rgba(16, 185, 129, 0.08); }

.rank-cell { font-weight: 700; color: var(--emerald-300); }

.points-cell { font-weight: 700; }

/* ---------------------------------------------------------------------
   Forms
   --------------------------------------------------------------------- */
.form-shell {
  max-width: 440px;
  margin: 60px auto;
  padding: 36px;
}

.form-shell h2 { margin-top: 0; text-align: center; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-error {
  color: #fca5a5;
  font-size: 12px;
  margin-top: 6px;
}

.form-status {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-300);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 18px;
}

.form-footer-link {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.form-footer-link a { color: var(--emerald-300); font-weight: 600; }

/* ---------------------------------------------------------------------
   Static / legal content pages
   --------------------------------------------------------------------- */
.content-page {
  max-width: 820px;
  margin: 48px auto;
  padding: 40px;
}

.content-page h1 { margin-top: 0; }
.content-page h2 { color: var(--emerald-300); margin-top: 32px; font-size: 18px; }
.content-page p, .content-page li { color: var(--text-muted); line-height: 1.7; font-size: 14px; }

.callout-warning {
  margin: 22px 0;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fde68a;
  font-size: 13px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   Modal
   --------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-window {
  width: 90%;
  max-width: 420px;
  padding: 30px;
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 26, 18, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--emerald-300);
  margin-bottom: 12px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 18px;
  border-top: 1px solid var(--glass-border);
}

.footer-disclaimer {
  font-size: 11px;
  color: #6b9482;
  max-width: 720px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slip-panel { position: static; }
  .home-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: inline-flex; }

  .nav-wrap.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(2, 26, 18, 0.96);
    padding: 12px;
    border-bottom: 1px solid var(--glass-border);
  }

  .hero h1 { font-size: 30px; }
  .hero-landing { padding: 76px 18px 40px; }
  .hero-landing h1 { font-size: 30px; }
  .hero-stats { gap: 24px; }
  .fantasy-teaser { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .photo-banner { padding: 40px 20px; }
  .photo-banner h2 { font-size: 22px; }
  .final-cta { padding: 40px 20px; }
}
