/* ==============================================
   SPIN BLITZ DEUTSCHLAND – DESIGN SYSTEM 2026
   Colors: Electric Blue / Dark Navy
   ============================================== */
/* Fonts loaded via async preload in HTML for performance (no render-blocking @import) */

/* ---- CSS VARIABLES ---- */
:root {
  --brand-blue: #0056B3;
  --brand-blue-light: #1E7FF5;
  --brand-blue-dark: #003D82;
  --brand-cyan: #00C3FF;
  --brand-gold: #FFD700;
  --brand-green: #00E07F;
  --brand-red: #EF3340;

  --bg-dark: #050D1C;
  --bg-card: #0B1829;
  --bg-card-hover: #101E35;
  --bg-surface: #07122A;
  --bg-header: rgba(5, 13, 28, 0.95);

  --text-white: #F0F4FF;
  --text-muted: #839CCE;
  --text-cyan: #00C3FF;

  --border-subtle: rgba(0, 86, 179, 0.25);
  --border-bright: rgba(0, 195, 255, 0.5);

  --gradient-main: linear-gradient(135deg, #0056B3 0%, #003D82 50%, #001F60 100%);
  --gradient-hero: linear-gradient(to right, rgba(5,13,28,0.92) 40%, rgba(5,13,28,0.0) 100%);
  --gradient-card: linear-gradient(145deg, #0B1829, #07122A);
  --gradient-text: linear-gradient(90deg, #00C3FF, #0056B3, #FFD700);

  --glow-blue: 0 0 30px rgba(0, 86, 179, 0.5);
  --glow-cyan: 0 0 20px rgba(0, 195, 255, 0.3);

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-btn: 0 4px 16px rgba(0, 86, 179, 0.5);
  --shadow-hover: 0 12px 40px rgba(0, 86, 179, 0.4);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-gold); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.bg-surface { background-color: var(--bg-surface); }

/* ---- SKIP LINK ---- */
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  z-index: 99999;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.logo img { display: block; max-height: 60px; width: auto; }

.main-nav {
  display: flex; gap: 4px; align-items: center;
}
.main-nav a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 600;
  padding: 7px 12px; border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text-white); background: rgba(0, 86, 179, 0.2);
}

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

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px; border: none; background: none; cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-white); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(320px, 90vw); height: 100vh;
  background: var(--bg-card); z-index: 1200; padding: 80px 24px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transition: right var(--transition-slow); overflow-y: auto;
  border-left: 1px solid var(--border-subtle);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: var(--text-muted); font-weight: 600; padding: 12px 16px;
  border-radius: 8px; transition: all var(--transition); font-size: 1rem;
}
.mobile-nav a:hover { color: #fff; background: rgba(0,86,179,0.2); }
.mobile-nav .btn { margin-top: 16px; text-align: center; display: block; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px; background: none;
  border: 1px solid var(--border-subtle); color: var(--text-white);
  width: 36px; height: 36px; border-radius: 8px; font-size: 1rem; cursor: pointer;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill); font-family: 'Exo 2', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none;
  text-decoration: none; transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #0056B3, #1E7FF5);
  color: #fff; box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff; }
.btn-outline {
  background: transparent; color: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
}
.btn-outline:hover { background: var(--brand-cyan); color: var(--bg-dark); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ---- BADGES ---- */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; font-family: 'Exo 2', sans-serif;
}
.badge-blue { background: rgba(0,86,179,0.2); color: var(--brand-cyan); border: 1px solid rgba(0,195,255,0.3); }
.badge-gold { background: rgba(255,215,0,0.15); color: var(--brand-gold); border: 1px solid rgba(255,215,0,0.3); }
.badge-green { background: rgba(0,224,127,0.15); color: var(--brand-green); border: 1px solid rgba(0,224,127,0.3); }

/* ---- HERO MAIN ---- */
.hero-main {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center right;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,13,28,0.97) 0%, rgba(5,13,28,0.93) 40%, rgba(5,13,28,0.5) 65%, rgba(5,13,28,0.0) 100%);
}
.hero-main .container { position: relative; z-index: 1; }
.hero-content {
  max-width: 560px;
  margin-right: auto;
  text-align: left;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; text-align: left; }
.hero-description { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; text-align: left; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border-subtle);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ---- PAGE HERO (inner) ---- */
.page-hero {
  padding: 110px 0 0;
  background: linear-gradient(to bottom, rgba(0,86,179,0.08), transparent);
}
.hero-img {
  margin-top: 32px; border-radius: var(--radius-lg);
  width: 100%; object-fit: cover; max-height: 340px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; font-size: 0.85rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-cyan); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--brand-cyan); }

/* ---- SECTION HEADINGS ---- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { margin: 10px 0 14px; }
.section-head p { color: var(--text-muted); }
.section-head-left { margin-bottom: 36px; }
.section-head-left h2 { margin: 10px 0 12px; }
.section-label {
  display: inline-block; font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--brand-cyan); margin-bottom: 8px;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--brand-blue); transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--gradient-main); padding: 32px 0; }
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0;
}
.stats-bar-item { text-align: center; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-number { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.5rem; color: #fff; }
.stats-bar-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---- BONUS GRID ---- */
.bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.bonus-card {
  background: var(--gradient-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  transition: all var(--transition);
}
.bonus-card:hover { border-color: var(--brand-blue); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.bonus-card.featured { border-color: var(--brand-gold); background: linear-gradient(145deg,#0B1829,#1A150A); }
.bonus-icon { font-size: 2.4rem; margin-bottom: 14px; }
.bonus-amount { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--brand-gold); margin: 10px 0; }
.bonus-card h3 { font-size: 1rem; margin-bottom: 8px; }
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- GAMES GRID ---- */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.game-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.game-card:hover { border-color: var(--brand-blue); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.game-card-thumb {
  width: 100%; height: 130px; object-fit: cover; display: block;
}
.game-card-body { padding: 14px; }
.game-card-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--text-white); }
.game-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.game-rtp { color: var(--brand-green); font-weight: 600; }
.star-rating { display: flex; gap: 2px; }
.star { color: var(--brand-gold); font-size: 0.85rem; }
.star.empty { color: rgba(255,215,0,0.25); }

/* ---- TABLE ---- */
.table-wrapper { overflow-x: auto; margin: 8px 0; border-radius: var(--radius); border: 1px solid var(--border-subtle); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue)); }
thead th {
  padding: 14px 16px; text-align: left; font-family: 'Exo 2', sans-serif;
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
}
tbody tr { border-bottom: 1px solid var(--border-subtle); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(0,86,179,0.08); }
tbody td { padding: 13px 16px; color: var(--text-muted); font-size: 0.88rem; }
.highlight-row { background: rgba(0,86,179,0.12) !important; }
.top-pick td:first-child { color: var(--brand-gold); font-weight: 700; }
.check { color: var(--brand-green); font-weight: 700; }
.cross { color: var(--text-muted); }
.comparison-table td, .data-table td { vertical-align: middle; }

/* ---- CHART BARS ---- */
.chart-bars { max-width: 100%; }
.chart-row { margin-bottom: 14px; }
.chart-row-label { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.bar-track { width: 100%; height: 8px; background: rgba(0,86,179,0.15); border-radius: 4px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RATING OVERVIEW ---- */
.rating-overview { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; max-width: 800px; margin: 0 auto; }
.rating-big { text-align: center; }
.rating-score { font-family: 'Exo 2', sans-serif; font-size: 4rem; font-weight: 900; color: var(--brand-gold); line-height: 1; }
.rating-stars { font-size: 1.4rem; margin: 8px 0; }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }
.rating-bars { flex: 1; }

/* ---- RADIAL CARDS ---- */
.radial-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.radial-card {
  text-align: center; padding: 40px 24px;
  background: var(--gradient-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.radial-card:hover { border-color: var(--brand-blue); box-shadow: var(--shadow-hover); }
.radial-number { font-family: 'Exo 2', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--brand-cyan); margin-bottom: 10px; }
.radial-label { font-size: 0.88rem; color: var(--text-muted); }

/* ---- SPLIT SECTION ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-text h2 { margin: 10px 0 16px; }
.split-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; }

/* ---- PLATFORM GRID ---- */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.platform-card {
  background: var(--gradient-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.platform-card:hover { border-color: var(--brand-blue); box-shadow: var(--shadow-hover); }
.platform-icon { font-size: 2.5rem; margin-bottom: 16px; }
.platform-card h3 { margin-bottom: 12px; }
.platform-rating { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.platform-score { font-family: 'Exo 2', sans-serif; font-size: 2rem; font-weight: 900; color: var(--brand-gold); }
.platform-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---- STEPS GUIDE ---- */
.steps-guide { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 16px; position: relative; }
.step-item:not(:last-child)::before {
  content: ''; position: absolute; left: 18px; top: 44px;
  width: 2px; height: calc(100% - 44px); background: var(--border-subtle);
}
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,var(--brand-blue),var(--brand-blue-light));
  color: #fff; font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-content { padding: 8px 0 28px; flex: 1; }
.step-content h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text-white); }
.step-content p { font-size: 0.88rem; }

/* ---- STEPS HORIZONTAL ---- */
.steps-horizontal {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px; position: relative; margin-bottom: 16px;
}
.h-step { text-align: center; padding: 24px 16px; position: relative; }
.h-step-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(0,86,179,0.15); border: 2px solid var(--border-subtle);
  font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.h-step-num.active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.h-step h4 { font-size: 0.9rem; margin-bottom: 8px; }
.h-step p { font-size: 0.82rem; }

/* ---- INFO GRID ---- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.info-card {
  background: var(--gradient-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 24px;
}
.info-card h3 { font-size: 1rem; margin-bottom: 14px; }
.info-card ul { display: flex; flex-direction: column; gap: 8px; }
.info-card li {
  font-size: 0.88rem; color: var(--text-muted);
  padding-left: 18px; position: relative;
}
.info-card li::before { content: '▸'; position: absolute; left: 0; color: var(--brand-cyan); }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: rgba(0,86,179,0.1); border: 1px solid rgba(0,86,179,0.3);
  border-left: 4px solid var(--brand-cyan);
  border-radius: var(--radius); padding: 18px 20px; margin-top: 20px;
}
.highlight-box p { color: var(--text-muted); font-size: 0.9rem; }
.highlight-box a { color: var(--brand-cyan); }

/* ---- WARNING BOX ---- */
.warning-box {
  background: rgba(239,51,64,0.08); border: 1px solid rgba(239,51,64,0.25);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius); padding: 16px 20px; margin-top: 20px;
}
.warning-box p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  color: var(--text-white); font-family: 'Exo 2', sans-serif;
  font-weight: 700; font-size: 0.95rem; text-align: left; gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(0,86,179,0.1); }
.faq-toggle { font-size: 1.3rem; color: var(--brand-cyan); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 22px 20px; font-size: 0.9rem; }

/* ---- AUTHOR BLOCK ---- */
.author-block {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 32px; background: var(--gradient-card);
  border: 1px solid var(--border-subtle); border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-lg);
}
.author-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--brand-blue); }
.author-name { font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--text-white); margin-bottom: 4px; }
.author-name a { color: var(--brand-cyan); }
.author-title { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-surface); border-top: 1px solid var(--border-subtle); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--border-subtle);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo img { max-height: 90px; max-width: 300px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 16px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-col h4 {
  font-family: 'Exo 2', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 0.85rem; color: var(--text-muted); }
.footer-col li a:hover { color: var(--brand-cyan); }
.footer-disclaimer {
  padding: 20px 0; border-bottom: 1px solid var(--border-subtle);
}
.footer-disclaimer p { font-size: 0.8rem; color: var(--text-muted); }
.footer-disclaimer a { color: var(--brand-cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ---- LEGAL BLOCK ---- */
.legal-block h2 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 10px; color: var(--brand-cyan); }
.legal-block p { font-size: 0.9rem; }
.legal-block ul { margin: 10px 0; padding-left: 20px; }
.legal-block li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; list-style: disc; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--brand-blue); color: #fff; font-size: 1.2rem; cursor: pointer;
  opacity: 0; transform: translateY(20px); transition: all var(--transition);
  box-shadow: var(--shadow-btn);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--brand-cyan); color: var(--bg-dark); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-card); border-top: 1px solid var(--border-subtle);
  padding: 16px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition-slow);
}
.cookie-banner.hidden { transform: translateY(100%); display: none; }
.cookie-text { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.cookie-text a { color: var(--brand-cyan); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept {
  padding: 9px 20px; background: var(--brand-blue); color: #fff;
  border: none; border-radius: var(--radius-pill); font-weight: 700; cursor: pointer; font-size: 0.85rem;
}
.cookie-decline {
  padding: 9px 20px; background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); cursor: pointer; font-size: 0.85rem;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-fade-up { animation: fadeUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-visual img { max-height: 300px; }
  .rating-overview { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-reg-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 14px; background: linear-gradient(135deg,#0056B3,#1E7FF5);
    color: #fff; border-radius: var(--radius-pill); font-family: 'Exo 2',sans-serif;
    font-weight: 700; font-size: 0.8rem; white-space: nowrap; text-decoration: none;
  }
  .btn.header-desktop { display: none; }
  .header-actions .btn-primary.btn-sm { display: none; }

  section { padding: 52px 0; }
  .hero-main { min-height: auto; padding: 100px 0 48px; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .author-block { flex-direction: column; gap: 16px; padding: 20px; }
  .steps-horizontal { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-horizontal { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .radial-cards { grid-template-columns: 1fr; }
}
