/* ===== 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: #0d0a1a;
  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; }

/* ===== VARIABLES ===== */
:root {
  --gold: #f0c040;
  --gold-light: #ffe082;
  --gold-dark: #c8960a;
  --purple: #6c2eb9;
  --purple-dark: #3d1a6e;
  --purple-light: #9b59d0;
  --bg-dark: #0d0a1a;
  --bg-card: #1a1230;
  --bg-card2: #221640;
  --text: #e8e0f0;
  --text-muted: #a090c0;
  --accent: #ff4fa3;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(108,46,185,0.25);
  --shadow-gold: 0 4px 24px rgba(240,192,64,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; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0a00;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(240,192,64,0.5); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(240,192,64,0.1); }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 16px 40px;
  box-shadow: 0 8px 40px rgba(255,79,163,0.4);
}
.btn-hero-primary:hover { box-shadow: 0 12px 50px rgba(255,79,163,0.6); }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  padding: 10px 24px;
  font-size: 0.9rem;
}
.btn-lg { font-size: 1.1rem; padding: 18px 48px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,10,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108,46,185,0.3);
  transition: background var(--transition);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-btns { display: flex; gap: 12px; flex-shrink: 0; }
.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: transform var(--transition), opacity 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: 0;
  background: rgba(13,10,26,0.98);
  border-top: 1px solid rgba(108,46,185,0.3);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-nav.open {
  max-height: 500px;
  padding: 16px 24px 24px;
  display: flex;
}
.mobile-nav a {
  padding: 12px 0;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid rgba(108,46,185,0.15);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-parallax {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(108,46,185,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,79,163,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(240,192,64,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #0d0a1a 0%, #1a0a2e 50%, #0d0a1a 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.15;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { opacity: 0.4; transform: translateY(-40px) scale(1.2); }
  100% { transform: translateY(0) scale(1); opacity: 0.15; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  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: fadeInDown 0.9s ease 0.1s both;
  text-shadow: 0 4px 32px 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 40px;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease 0.4s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollHint 1.8s ease infinite;
}
@keyframes scrollHint {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; position: relative; }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ===== CONNECT ===== */
.connect-section { background: var(--bg-dark); }
.connect-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.connect-card {
  background: var(--bg-card);
  border: 1px solid rgba(108,46,185,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.connect-card.in-view { opacity: 1; transform: translateY(0); }
.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(108,46,185,0.6);
}
.connect-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240,192,64,0.08) 100%);
}
.connect-card.featured:hover { box-shadow: var(--shadow-gold); }
.connect-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.connect-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.connect-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.connect-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ===== BONUSES ===== */
.bonuses-section {
  background: linear-gradient(135deg, #110828 0%, #1e0a40 50%, #110828 100%);
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(108,46,185,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid rgba(108,46,185,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.bonus-card.in-view { opacity: 1; transform: translateY(0); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bonus-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
.bonus-body { padding: 28px; }
.bonus-tag {
  display: inline-block;
  background: rgba(240,192,64,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  border: 1px solid rgba(240,192,64,0.3);
}
.bonus-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.bonus-card p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }
.bonus-list { margin-bottom: 24px; }
.bonus-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.bonus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SLOTS ===== */
.slots-section { background: var(--bg-dark); }
.slots-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(108,46,185,0.3);
  color: var(--text-muted);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid rgba(108,46,185,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.slot-card.in-view { opacity: 1; transform: translateY(0); }
.slot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.slot-img-wrap {
  position: relative;
  overflow: hidden;
}
.slot-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.slot-card:hover .slot-img-wrap img { transform: scale(1.08); }
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,10,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}
.slot-name { font-weight: 700; font-size: 0.95rem; color: #fff; }
.slot-rtp {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(240,192,64,0.1);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(240,192,64,0.25);
}
.slots-more { text-align: center; }

/* ===== ADVANTAGES ===== */
.advantages-section { background: linear-gradient(180deg, #0d0a1a 0%, #110828 100%); }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid rgba(108,46,185,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.adv-card.in-view { opacity: 1; transform: translateY(0); }
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(240,192,64,0.4);
}
.adv-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.adv-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.adv-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* ===== STRATEGY TABLE ===== */
.strategy-section { background: var(--bg-dark); }
.table-wrap { overflow-x: auto; margin-bottom: 24px; border-radius: var(--radius); }
.strategy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.93rem;
}
.strategy-table thead tr {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.strategy-table th {
  padding: 16px 20px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.strategy-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(108,46,185,0.15);
  color: var(--text-muted);
  vertical-align: middle;
}
.strategy-table tbody tr:last-child td { border-bottom: none; }
.strategy-table tbody tr:hover td { background: rgba(108,46,185,0.1); color: var(--text); }
.risk {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.risk.high { background: rgba(255,80,80,0.15); color: #ff6060; border: 1px solid rgba(255,80,80,0.3); }
.risk.medium { background: rgba(255,165,0,0.15); color: #ffaa40; border: 1px solid rgba(255,165,0,0.3); }
.risk.low { background: rgba(80,200,120,0.15); color: #60cc80; border: 1px solid rgba(80,200,120,0.3); }
.strategy-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 16px 24px;
  background: rgba(108,46,185,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(108,46,185,0.2);
}

/* ===== GUIDE ===== */
.guide-section { background: linear-gradient(180deg, #110828 0%, #0d0a1a 100%); }
.guide-steps { display: flex; flex-direction: column; gap: 48px; }
.guide-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.guide-step.in-view { opacity: 1; transform: translateX(0); }
.step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 24px rgba(108,46,185,0.4);
}
.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.step-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.step-content ul { margin-bottom: 24px; }
.step-content ul li {
  color: var(--text-muted);
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.93rem;
}
.step-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-dark);
  padding: 96px 0;
}
.faq-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
}
.faq-inner .section-title,
.faq-inner .section-sub { text-align: center; }
.faq-inner .section-sub { max-width: 680px; margin-left: auto; margin-right: auto; }
.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(108,46,185,0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #1e0a40 0%, #3d1a6e 50%, #1e0a40 100%);
}
.cta-parallax {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(240,192,64,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255,79,163,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080614;
  border-top: 1px solid rgba(108,46,185,0.3);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(108,46,185,0.2);
  border: 1px solid rgba(108,46,185,0.4);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(108,46,185,0.2);
  padding: 24px 0;
}
.footer-legal {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
}
.footer-legal strong { color: var(--accent); }
.footer-copy {
  color: rgba(160,144,192,0.5);
  font-size: 0.8rem;
  text-align: center;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(108,46,185,0.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(108,46,185,0.7); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(17,8,40,0.97);
  border-top: 1px solid rgba(108,46,185,0.4);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  min-width: 200px;
}
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.cookie-close:hover { color: #fff; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .main-nav { gap: 20px; }
}
@media (max-width: 768px) {
  .main-nav, .header-btns { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-stats { gap: 24px; }
  .guide-step { flex-direction: column; gap: 20px; }
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .cta-section { padding: 80px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .scroll-top { bottom: 80px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .stat-num { font-size: 1.5rem; }
  .connect-cards { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}