@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --coral: #FF6B35;
  --amber: #FFD23F;
  --violet: #6C63FF;
  --teal: #4ECDC4;
  --pink: #FF6B9D;
  --navy: #1A1F3D;
  --ink: #2D3250;
  --muted: #6B7280;
  --white: #FFFFFF;
  --cream: #FFF8F2;
  --sky: #E8F4FD;
  --mint: #E6FAF5;
  --lavender: #F0EDFF;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(26, 31, 61, 0.08);
  --shadow-card: 0 12px 40px rgba(26, 31, 61, 0.12);
  --font-display: 'Baloo 2', cursive;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 40%, var(--sky) 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbDrift 18s ease-in-out infinite alternate;
}

.bg-orb--1 {
  width: 320px;
  height: 320px;
  background: var(--coral);
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}

.bg-orb--2 {
  width: 280px;
  height: 280px;
  background: var(--violet);
  bottom: 10%;
  left: -80px;
  animation-delay: -6s;
}

.bg-orb--3 {
  width: 200px;
  height: 200px;
  background: var(--teal);
  top: 45%;
  right: 15%;
  animation-delay: -12s;
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}

.bg-bricks {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-brick {
  position: absolute;
  border-radius: 4px;
  opacity: 0.12;
  animation: brickFall linear infinite;
}

.bg-brick:nth-child(1) { width: 48px; height: 16px; background: var(--coral); left: 8%; animation-duration: 14s; animation-delay: 0s; }
.bg-brick:nth-child(2) { width: 36px; height: 12px; background: var(--violet); left: 22%; animation-duration: 18s; animation-delay: -3s; }
.bg-brick:nth-child(3) { width: 52px; height: 14px; background: var(--teal); left: 45%; animation-duration: 16s; animation-delay: -7s; }
.bg-brick:nth-child(4) { width: 40px; height: 13px; background: var(--pink); left: 68%; animation-duration: 20s; animation-delay: -2s; }
.bg-brick:nth-child(5) { width: 44px; height: 15px; background: var(--amber); left: 85%; animation-duration: 15s; animation-delay: -9s; }
.bg-brick:nth-child(6) { width: 38px; height: 12px; background: var(--coral); left: 55%; animation-duration: 17s; animation-delay: -5s; }

@keyframes brickFall {
  0% { transform: translateY(-60px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.12; }
  100% { transform: translateY(100vh) rotate(180deg); opacity: 0; }
}

.bg-ball {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, var(--amber) 60%, var(--coral) 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  animation: ballBounce 6s ease-in-out infinite;
}

.bg-ball--1 { width: 22px; height: 22px; top: 20%; left: 12%; animation-delay: 0s; }
.bg-ball--2 { width: 16px; height: 16px; top: 60%; left: 78%; animation-delay: -2s; }
.bg-ball--3 { width: 18px; height: 18px; top: 35%; left: 90%; animation-delay: -4s; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 31, 61, 0.06);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--lavender);
  color: var(--violet);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 31, 61, 0.25);
}

.btn-primary:hover {
  background: var(--violet);
  box-shadow: 0 8px 28px rgba(108, 99, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral), #FF8C5A);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-coral:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
}

.play-badge {
  display: inline-block;
  transition: transform 0.25s, filter 0.25s;
  line-height: 0;
}

.play-badge img {
  height: 48px;
  width: auto;
}

.play-badge:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.play-badge--sm img {
  height: 44px;
  width: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 32px 0 56px;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 31, 61, 0.04);
  overflow: hidden;
}

.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sky) 0%, var(--lavender) 100%);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: calc(var(--radius-md) - 4px);
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  animation: heroFloat 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-float--1 {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--amber));
  top: 12%;
  right: 6%;
  box-shadow: 0 8px 24px rgba(255, 210, 63, 0.45);
  opacity: 0.85;
}

.hero-float--2 {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--teal));
  bottom: 14%;
  left: 5%;
  animation-delay: -1.5s;
  box-shadow: 0 6px 18px rgba(78, 205, 196, 0.4);
  opacity: 0.85;
}

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

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

.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-actions .btn-outline {
  height: 48px;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--sky) 0%, var(--mint) 100%);
  border-radius: var(--radius-lg);
  margin: 0 16px;
  padding: 72px 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  background: var(--lavender);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-desc {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 1.02rem;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ===== INTRO BLOCK ===== */
.intro-block {
  padding: 56px 0 24px;
}

.intro-text {
  background: var(--white);
  border: 2px solid rgba(108, 99, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.intro-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--coral), var(--violet), var(--teal));
  border-radius: 6px 0 0 6px;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.intro-text p {
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text .highlight {
  color: var(--coral);
  font-weight: 600;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border: 1px solid rgba(26, 31, 61, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-card__icon--coral { background: rgba(255, 107, 53, 0.12); }
.feature-card__icon--violet { background: rgba(108, 99, 255, 0.12); }
.feature-card__icon--teal { background: rgba(78, 205, 196, 0.12); }
.feature-card__icon--amber { background: rgba(255, 210, 63, 0.2); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  border: 1px solid rgba(26, 31, 61, 0.04);
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 24px;
}

.news-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 8px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== SPLIT BLOCKS ===== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-block--reverse .split-block__visual { order: 2; }
.split-block--reverse .split-block__content { order: 1; }

.split-block__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.split-block__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-block__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.split-block__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.split-block__content p {
  color: var(--muted);
  margin-bottom: 12px;
}

.split-block__content .btn {
  margin-top: 16px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 31, 61, 0.04);
  animation: statPulse 3s ease-in-out infinite;
}

.stat-item:nth-child(2) { animation-delay: -0.75s; }
.stat-item:nth-child(3) { animation-delay: -1.5s; }
.stat-item:nth-child(4) { animation-delay: -2.25s; }

@keyframes statPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== POWER-UPS SHOWCASE ===== */
.powerups-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.powerup-chip {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.powerup-chip:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.powerup-chip__ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: chipSpin 8s linear infinite;
}

.powerup-chip__ball--fire {
  background: radial-gradient(circle at 35% 35%, #fff, var(--coral));
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.powerup-chip__ball--ice {
  background: radial-gradient(circle at 35% 35%, #fff, var(--teal));
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.4);
}

.powerup-chip__ball--gold {
  background: radial-gradient(circle at 35% 35%, #fff, var(--amber));
  box-shadow: 0 4px 16px rgba(255, 210, 63, 0.4);
}

.powerup-chip__ball--violet {
  background: radial-gradient(circle at 35% 35%, #fff, var(--violet));
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.4);
}

@keyframes chipSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.powerup-chip h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.powerup-chip p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--coral), var(--violet), var(--teal));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--coral);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--coral);
}

.timeline-item:nth-child(2)::before { background: var(--violet); box-shadow: 0 0 0 2px var(--violet); }
.timeline-item:nth-child(3)::before { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }
.timeline-item:nth-child(4)::before { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }

.timeline-item h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(26, 31, 61, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2D3561 50%, var(--violet) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  top: -60px;
  right: -40px;
  animation: ctaGlow 5s ease-in-out infinite alternate;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(78, 205, 196, 0.15);
  border-radius: 50%;
  bottom: -40px;
  left: -30px;
  animation: ctaGlow 5s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0.8; }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-inline: auto;
}

.cta-banner .play-badge {
  position: relative;
  z-index: 1;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.newsletter-form input {
  padding: 14px 18px;
  border: 2px solid rgba(26, 31, 61, 0.08);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.newsletter-form input:focus {
  border-color: var(--violet);
}

.newsletter-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.page-content {
  padding: 32px 0 72px;
}

.page-content .container {
  max-width: 800px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 32px 0 12px;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 8px;
}

.prose p {
  color: var(--muted);
  margin-bottom: 14px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ul li {
  color: var(--muted);
  margin-bottom: 6px;
}

.prose .play-cta {
  margin: 32px 0;
  text-align: center;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.tip-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--coral);
}

.tip-box:nth-child(even) { border-left-color: var(--violet); }
.tip-box:nth-child(3) { border-left-color: var(--teal); }
.tip-box:nth-child(4) { border-left-color: var(--amber); }

.tip-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.tip-box p {
  font-size: 0.92rem;
  color: var(--muted);
}

.level-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.level-table th,
.level-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 31, 61, 0.08);
}

.level-table th {
  font-family: var(--font-display);
  color: var(--navy);
  background: var(--lavender);
}

.level-table td {
  color: var(--muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 32px 0;
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -8px 32px rgba(26, 31, 61, 0.15);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin-inline: auto;
}

.cookie-inner p {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie-inner a {
  color: var(--violet);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-accept {
  background: var(--navy);
  color: var(--white);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(26, 31, 61, 0.15);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 280px;
  }

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

  .split-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-block--reverse .split-block__visual,
  .split-block--reverse .split-block__content {
    order: unset;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .powerups-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(26, 31, 61, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    display: block;
    text-align: center;
    padding: 12px;
  }

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

  .hero-shell {
    padding: 24px 18px;
  }

  .hero-visual {
    max-width: 240px;
  }

  .section {
    padding: 48px 0;
  }

  .section--alt {
    margin: 0 8px;
    padding: 48px 16px;
  }

  .intro-text {
    padding: 28px 24px 28px 32px;
  }

  .cta-banner {
    padding: 36px 24px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-item__num {
    font-size: 1.5rem;
  }

  .powerups-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-outline {
    width: 100%;
    max-width: 220px;
  }
}
