/* ===================================================================
   Mostbet Türkiye — Lansman Sayfası Stilleri
   Renk paleti:
   - Sayfa arka planı: #EBF3FF
   - Menü / koyu metin: #181818
   - Başlık & kart koyu: #051435
   - Birincil buton (turuncu): #F0A954
   - İkincil buton (beyaz): #FFFFFF
   =================================================================== */

:root {
  /* Mostbet resmi marka paleti */
  --bg-page: #0a1530;            /* koyu lacivert sayfa zemini (resmi tema) */
  --bg-page-2: #0d1b3d;
  --bg-dark: #061232;            /* en koyu lacivert */
  --bg-darker: #040c22;
  --menu: #0a1024;               /* menü / footer */
  --mb-blue: #0d55e0;            /* Mostbet mavisi */
  --mb-blue-light: #1172eb;
  --mb-blue-deep: #043396;
  --mb-orange: #ff7a22;          /* Mostbet turuncusu */
  --mb-orange-deep: #ff6314;
  --mb-cyan: #00d9ff;            /* neon vurgu */
  --grad-brand: linear-gradient(110deg, #043396 0%, #0d55e0 42%, #ff6314 100%);
  --grad-orange: linear-gradient(135deg, #ff8a2b, #ff6314);
  --grad-blue: linear-gradient(135deg, #1172eb, #0d55e0);
  --btn-primary: #ff7a22;
  --btn-primary-hover: #ff6314;
  --btn-secondary: #FFFFFF;
  --accent: #ff8a2b;
  --accent-cyan: #00d9ff;
  --text-dark: #eaf0ff;          /* koyu temada metin açık */
  --text-muted: #9fb0d6;
  --text-light: #ffffff;
  --text-light-muted: #aebcdd;
  --border: rgba(120, 150, 220, 0.18);
  --card-bg: #101c3f;            /* kart zemini koyu */
  --card-bg-2: #0c1838;
  --radius: 14px;                /* Mostbet yumuşak köşeler */
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.42);
  --glow-orange: 0 0 30px rgba(255, 99, 20, 0.45);
  --glow-blue: 0 0 30px rgba(13, 85, 224, 0.5);
  --maxw: 1200px;
  --font: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  background:
    radial-gradient(1100px 600px at 80% -5%, rgba(13,85,224,0.22), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(255,99,20,0.10), transparent 55%),
    var(--bg-page);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ====================== HEADER ====================== */
.site-header {
  background: linear-gradient(90deg, #061232 0%, #0b1f4d 55%, #0d2a66 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(120,150,220,0.16);
  backdrop-filter: blur(6px);
}
.site-header::after {
  content: ''; display: block; height: 3px; width: 100%;
  background: var(--grad-brand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.logo-fallback {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 22px; color: #fff;
  letter-spacing: .5px;
}
.logo-fallback .star { width: 26px; height: 26px; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-orange); transition: width .25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

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

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);   /* Mostbet pill kenarlar */
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .2px;
}
.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,99,20,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-orange), 0 10px 24px rgba(255,99,20,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: #07173a;
  border-color: rgba(255,255,255,0.95);
}
.btn-secondary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,255,255,0.18); }
.btn-blue {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(13,85,224,0.4);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--glow-blue), 0 10px 24px rgba(13,85,224,0.5); }
.btn-lg { padding: 16px 38px; font-size: 17px; }
.btn-block { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s;
}

/* ====================== HERO ====================== */
.hero {
  background:
    linear-gradient(115deg, rgba(4,51,150,0.96) 0%, rgba(13,85,224,0.85) 45%, rgba(255,99,20,0.85) 115%),
    #061232;
  color: var(--text-light);
  padding: 76px 0 86px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,217,255,0.35), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 8px 16px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .6px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.hero h1 .hl {
  background: linear-gradient(90deg, #ffd27a, #ff8a2b);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 18px; color: #e8eeff; margin-bottom: 28px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats .stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 12px 18px; border-radius: var(--radius); backdrop-filter: blur(4px);
}
.hero-stats .stat strong { display: block; font-size: 24px; color: #ffd27a; font-weight: 900; }
.hero-stats .stat span { font-size: 12px; color: #cdd8f5; text-transform: uppercase; letter-spacing: .4px; }
.hero-visual { position: relative; }
.hero-visual .media-frame {
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,138,43,0.5));
}
.hero-visual img { box-shadow: none; }
.hero-promo-tag {
  position: absolute; top: -14px; right: -10px;
  background: var(--grad-orange); color: #fff;
  font-weight: 800; font-size: 14px; padding: 9px 18px;
  box-shadow: var(--glow-orange); transform: rotate(3deg);
  border-radius: var(--radius-pill);
}

/* ====================== QUICK BONUS BAR ====================== */
.bonus-bar {
  background: var(--grad-orange);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.bonus-bar a { text-decoration: underline; font-weight: 900; color: #fff; }

/* ====================== SECTIONS ====================== */
.section { padding: 70px 0; position: relative; }
.section-alt { background: rgba(255,255,255,0.025); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: linear-gradient(180deg, #061232, #040c22); color: var(--text-light); }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; color: var(--accent); font-weight: 800;
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 12px;
  padding: 5px 14px; background: rgba(255,138,43,0.12); border: 1px solid rgba(255,138,43,0.3);
  border-radius: var(--radius-pill);
}
h2 { font-size: 34px; font-weight: 900; line-height: 1.18; margin-bottom: 16px; color: #fff; letter-spacing: -.3px; }
h2 .hl { background: linear-gradient(90deg,#ffd27a,#ff7a22); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.section-dark h2 { color: #fff; }
h3 { font-size: 22px; font-weight: 800; margin: 26px 0 12px; color: #eaf0ff; }
.section-dark h3 { color: #fff; }
h4 { font-size: 18px; font-weight: 700; margin: 18px 0 8px; color: #eaf0ff; }
.section p { margin-bottom: 16px; color: var(--text-muted); }
.section-dark p { color: var(--text-light-muted); }
.section li { color: var(--text-muted); margin-bottom: 8px; }
.section-dark li { color: var(--text-light-muted); }

.prose { max-width: 880px; margin: 0 auto; }
.prose ul, .prose ol { margin: 8px 0 20px 22px; }
.prose strong { color: #ffd27a; }
.section-dark .prose strong { color: var(--accent); }

/* Content + image split blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin: 36px 0;
}
.split.reverse .split-media { order: 2; }
.split-media img { box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); }
.split-text h2 { margin-top: 0; }

/* ====================== ŞIK GÖRSEL ÇERÇEVELERİ ====================== */
/* Tüm görseller için ortak premium çerçeve: gradyan kenar + parlama + hover */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;                       /* gradyan kenar kalınlığı */
  background: linear-gradient(135deg, rgba(13,85,224,0.55), rgba(255,99,20,0.45));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.media-frame::after {              /* hareketli parlama (shine) */
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
  z-index: 3; pointer-events: none;
}
.media-frame:hover { transform: translateY(-6px); box-shadow: var(--glow-blue), var(--shadow-lg); }
.media-frame:hover::after { left: 130%; }
.media-frame > img,
.media-frame .media-inner > img {
  display: block; width: 100%; height: auto;
  border-radius: calc(var(--radius-lg) - 4px);
  position: relative; z-index: 1;
}
.media-inner { position: relative; border-radius: calc(var(--radius-lg) - 4px); overflow: hidden; background: #0a1530; }

/* Köşe rozeti (ör. "Resmi görsel", "Canlı") */
.media-badge {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-orange); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .3px;
  padding: 6px 13px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255,99,20,0.45);
}
.media-badge.blue { background: var(--grad-blue); box-shadow: 0 4px 12px rgba(13,85,224,0.45); }
.media-badge.live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,0.7); animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.7); }
  70% { box-shadow: 0 0 0 7px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

/* Görsel altı açıklama (caption) */
.media-cap {
  display: block; text-align: center; font-size: 13.5px; color: var(--text-muted);
  margin-top: 12px; font-style: italic;
}
.media-cap b { color: var(--accent); font-style: normal; }

/* Tam genişlik şık banner */
.banner-wrap { margin: 34px auto; max-width: 960px; }
.figure { margin: 0; }

/* ====================== CARDS / GRID ====================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--card-bg), var(--card-bg-2));
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .25s;
}
.section-dark .card { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border-color: rgba(255,255,255,0.1); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,138,43,0.4); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-orange); color: #fff; font-size: 24px; margin-bottom: 16px;
  border-radius: 14px; box-shadow: 0 6px 16px rgba(255,99,20,0.35);
}
.card h3 { margin-top: 0; font-size: 19px; color: #fff; }
.card p { font-size: 15px; margin-bottom: 0; }

/* Bonus cards w/ image */
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bonus-card {
  background: linear-gradient(180deg, var(--card-bg), var(--card-bg-2)); border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  border-radius: var(--radius-lg); transition: transform .25s, box-shadow .25s;
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bonus-media { position: relative; overflow: hidden; }
.bonus-media img { width: 100%; display: block; transition: transform .5s ease; }
.bonus-card:hover .bonus-media img { transform: scale(1.06); }
.bonus-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,21,48,0.55));
  pointer-events: none;
}
.bonus-card img { width: 100%; }
.bonus-card .body { padding: 24px; }
.bonus-card h3 { margin-top: 0; color: #fff; }
.bonus-card p { font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; counter-reset: step; }
.step {
  background: linear-gradient(180deg, var(--card-bg), var(--card-bg-2)); border: 1px solid var(--border); padding: 28px 22px;
  box-shadow: var(--shadow); position: relative; border-radius: var(--radius-lg);
  transition: transform .25s, border-color .25s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(13,85,224,0.5); }
.section-dark .step { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border-color: rgba(255,255,255,0.1); }
.step .num {
  width: 42px; height: 42px; background: var(--grad-blue); color: #fff;
  font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border-radius: 50%; box-shadow: 0 6px 16px rgba(13,85,224,0.4);
}
.step h4 { margin-top: 0; color: #fff; }
.step p { font-size: 14px; margin-bottom: 0; }

/* Payment methods */
.pay-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.pay-list span {
  background: rgba(255,255,255,0.06); color: #eaf0ff; border: 1px solid var(--border);
  padding: 9px 18px; font-weight: 600; font-size: 14px; border-radius: var(--radius-pill);
}
.section-dark .pay-list span { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }

/* Crypto highlight */
.crypto-box {
  background: linear-gradient(135deg, rgba(13,85,224,0.18), rgba(255,99,20,0.10));
  border: 1px solid rgba(255,138,43,0.3); border-left: 4px solid var(--accent);
  padding: 26px; margin: 24px 0; border-radius: var(--radius);
}
.crypto-box h3 { margin-top: 0; color: #fff; }

/* ====================== ICE FISHING GAME ====================== */
.game-section { background: linear-gradient(180deg, #06183f, #04122f); color: #fff; padding: 64px 0; }
.game-wrap { max-width: 760px; margin: 0 auto; }
.game-banner { margin-bottom: 26px; box-shadow: var(--shadow-lg); }
.game-stage {
  position: relative;
  background: #0a2550;
  border: 2px solid rgba(240,169,84,0.4);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.game-canvas-holder { position: relative; width: 100%; }
#iceFishingCanvas { display: block; width: 100%; height: auto; background: #bfe3f5; touch-action: none; }
.game-hud {
  display: flex; justify-content: space-between; align-items: center;
  background: #051435; padding: 12px 18px; color: #fff; font-weight: 700; flex-wrap: wrap; gap: 10px;
}
.game-hud .hud-item { font-size: 15px; }
.game-hud .hud-item b { color: var(--btn-primary); }
.game-controls { display: flex; gap: 12px; padding: 16px 18px; background: #06183f; flex-wrap: wrap; justify-content: center; }
.game-msg {
  text-align: center; padding: 12px; font-weight: 700; min-height: 24px; color: var(--btn-primary);
}
.game-help { font-size: 14px; color: var(--text-light-muted); text-align: center; margin-top: 16px; }

/* ====================== FAQ ====================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); background: linear-gradient(180deg, var(--card-bg), var(--card-bg-2)); margin-bottom: 12px; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(255,138,43,0.45); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-weight: 700; font-size: 17px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q .arrow {
  transition: transform .3s; color: #fff; font-size: 18px; flex-shrink: 0;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-orange); border-radius: 50%;
}
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 20px; }
.faq-a p { font-size: 15px; margin-bottom: 10px; color: var(--text-muted); }

/* ====================== TOC (içindekiler) ====================== */
.toc {
  background: linear-gradient(135deg, rgba(13,85,224,0.14), rgba(255,99,20,0.06));
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  padding: 26px 30px; margin: 0 auto 40px; max-width: 880px; box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.toc h2 { font-size: 20px; margin-bottom: 14px; color: #fff; }
.toc ol { margin-left: 20px; columns: 2; column-gap: 36px; }
.toc li { margin-bottom: 8px; }
.toc a { color: #cdd8f5; font-weight: 600; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

/* ====================== TABLE ====================== */
.tbl-wrap { overflow-x: auto; margin: 22px 0; box-shadow: var(--shadow); border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: var(--card-bg); min-width: 480px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; color: #d6e0fb; }
th { background: var(--grad-blue); color: #fff; font-weight: 800; }
tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* ====================== CTA STRIP ====================== */
.cta-strip {
  background: var(--grad-brand);
  color: #fff; text-align: center; padding: 64px 20px;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events:none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto 26px; }
.cta-strip .btn-secondary { border-color: #fff; }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--menu); color: #c7cdda; padding: 50px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 34px; }
.footer-col h4 { color: #fff; font-size: 16px; margin: 0 0 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a:hover { color: var(--btn-primary); }
.footer-about p { color: #9aa3b5; margin-bottom: 14px; }
.footer-logo { display:flex; align-items:center; gap:8px; margin-bottom: 14px; width: fit-content; transition: opacity .2s; }
.footer-logo:hover { opacity: .85; }
.footer-logo img { height: 30px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: #8893a6; font-size: 13px;
}
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 2px solid #e5484d; color: #ff6b6f;
  border-radius: 50%; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.footer-disclaimer { background: #0f0f0f; color: #7e879a; font-size: 12px; padding: 18px 0; line-height: 1.6; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.reverse .split-media { order: 0; }
  .toc ol { columns: 1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .main-nav {
    position: fixed; top: 72px; right: 0; width: 80%; max-width: 320px; height: calc(100vh - 72px);
    background: var(--bg-dark); flex-direction: column; align-items: flex-start;
    padding: 28px 26px; gap: 20px; transform: translateX(110%); transition: transform .3s ease;
    box-shadow: -6px 0 30px rgba(0,0,0,.4); overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 17px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .header-actions .btn { padding: 9px 14px; font-size: 13px; }
  .header-actions .btn-hide-mobile { display: none; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 16px; }
  h2 { font-size: 25px; }
  h3 { font-size: 19px; }
  .section { padding: 44px 0; }
  .bonus-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 22px; }
}

@media (max-width: 480px) {
  .media-frame { padding: 3px; }
  .media-badge { font-size: 11px; padding: 5px 10px; top: 9px; left: 9px; }
  .media-cap { font-size: 12.5px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-cta .btn { width: 100%; }
  .game-controls .btn { width: 100%; }
}
