/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0a0a14;
  color: #e8e0f0;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dark: #c8860a;
  --purple: #6c2eb9;
  --purple-light: #9b59d0;
  --purple-dark: #3d1a6e;
  --bg-dark: #0a0a14;
  --bg-card: #12111f;
  --bg-card2: #1a1830;
  --text: #e8e0f0;
  --text-muted: #9b8fc0;
  --border: rgba(240,180,41,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(108,46,185,0.25);
  --shadow-gold: 0 4px 24px rgba(240,180,41,0.3);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0a00;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,180,41,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(240,180,41,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-xl { padding: 16px 40px; font-size: 1.05rem; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,10,20,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link, .footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.header-btns { display: flex; gap: 12px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(10,10,20,0.98);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}
.hero-parallax {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(108,46,185,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(240,180,41,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a14 0%, #1a0a2e 50%, #0a0a14 100%);
  will-change: transform;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.7; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
  text-shadow: 0 2px 40px rgba(108,46,185,0.5);
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
  position: relative;
}
.section-dark {
  background: #0d0c1a;
}
.section-label {
  display: inline-block;
  background: rgba(108,46,185,0.2);
  border: 1px solid rgba(108,46,185,0.4);
  color: var(--purple-light);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
}

/* ===== ANIMATE ON SCROLL ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONNECTION ===== */
.connection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.conn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.conn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.conn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(240,180,41,0.35);
}
.conn-card:hover::before { opacity: 1; }
.conn-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.conn-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.conn-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== BONUSES ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(240,180,41,0.4);
}
.bonus-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 16px 4px 12px;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.bonus-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.bonus-body {
  padding: 20px 24px 28px;
}
.bonus-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.bonus-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.bonus-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===== SLOTS ===== */
.slots-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #1a0a00;
  border-color: var(--gold);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.slot-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(240,180,41,0.4);
}
.slot-img-wrap {
  position: relative;
  overflow: hidden;
}
.slot-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-card:hover .slot-img-wrap img {
  transform: scale(1.07);
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.slot-badge.hot { background: #e74c3c; color: #fff; }
.slot-badge.new { background: #27ae60; color: #fff; }
.slot-badge.jackpot { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a0a00; }
.slot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.slot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.slot-rtp {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}
.slots-more {
  text-align: center;
  margin-top: 40px;
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(240,180,41,0.3);
}
.adv-card:hover::after { transform: scaleX(1); }
.adv-icon-wrap {
  margin-bottom: 16px;
}
.adv-icon {
  font-size: 2rem;
  display: inline-block;
  animation: none;
}
.adv-card:hover .adv-icon {
  animation: pulse 0.6s ease;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.adv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.adv-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== GUIDE ===== */
.guide-text {
  max-width: 800px;
  margin-bottom: 40px;
}
.guide-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.guide-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.guide-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.guide-step:hover {
  border-color: rgba(240,180,41,0.35);
  transform: translateY(-3px);
}
.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
}
.step-body strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== STRATEGY TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.strategy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.strategy-table thead tr {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
}
.strategy-table th {
  padding: 14px 20px;
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.strategy-table td {
  padding: 13px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.strategy-table tbody tr:last-child td { border-bottom: none; }
.strategy-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.strategy-table tbody tr:hover { background: rgba(240,180,41,0.06); }
.strategy-table td:first-child { color: #fff; font-weight: 600; }

/* ===== PARALLAX BANNER ===== */
.parallax-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px;
}
.parallax-bg {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(108,46,185,0.6) 0%, transparent 70%),
    linear-gradient(135deg, #1a0a2e 0%, #0a0a14 100%);
  will-change: transform;
}
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.parallax-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.parallax-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ===== HOW TO START ===== */
.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}
.howto-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.howto-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.howto-line {
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% + 24px);
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.howto-line.last { display: none; }
.howto-body {
  padding: 8px 0 40px;
}
.howto-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.howto-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(240,180,41,0.4);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--bg-dark);
}
.cta-inner {
  background: linear-gradient(135deg, rgba(108,46,185,0.25) 0%, rgba(240,180,41,0.1) 100%);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(240,180,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #07070f;
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0 20px;
  line-height: 1.65;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.footer-nav-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-responsible {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 600px;
}
.age-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  min-width: 36px;
  text-align: center;
}
.footer-responsible span:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240,180,41,0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  z-index: 1100;
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}
.cookie-banner.show { bottom: 24px; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .main-nav, .header-btns { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 28px; }
  .cta-inner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .howto-steps { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .scroll-top { bottom: 20px; right: 20px; }
  .guide-step-grid { grid-template-columns: 1fr; }
  .connection-grid { grid-template-columns: 1fr; }
}