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

/* ===== VARIABLES ===== */
:root {
  --gold: #f0c040;
  --gold-dark: #c8960a;
  --gold-light: #ffe080;
  --purple: #1a0a2e;
  --purple-mid: #2d1060;
  --purple-light: #4a1a8a;
  --dark: #0a0a14;
  --dark-card: #12102a;
  --dark-card2: #1a1535;
  --text: #e8e0d0;
  --text-muted: #9080b0;
  --radius: 16px;
  --shadow-gold: 0 0 30px rgba(240,192,64,0.3);
  --shadow-purple: 0 8px 40px rgba(74,26,138,0.4);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }
.btn-gold {
  background: linear-gradient(135deg, #f0c040, #c8960a);
  color: #1a0a00;
  border-color: #f0c040;
  box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffe080, #f0c040);
  box-shadow: 0 6px 30px rgba(240,192,64,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #f0c040;
  border-color: #f0c040;
}
.btn-outline:hover {
  background: rgba(240,192,64,0.1);
  box-shadow: 0 4px 20px rgba(240,192,64,0.3);
  transform: translateY(-2px);
}
.btn-xl { padding: 16px 40px; font-size: 17px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.pulse-btn { animation: pulseBtnAnim 2s infinite; }
@keyframes pulseBtnAnim {
  0%, 100% { box-shadow: 0 4px 20px rgba(240,192,64,0.4); }
  50% { box-shadow: 0 4px 40px rgba(240,192,64,0.8), 0 0 60px rgba(240,192,64,0.3); }
}

/* ===== PRELOADER ===== */
.preloader-hidden { display: none !important; }
.preloader-active {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.preloader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a14 70%);
  z-index: 0;
}
.preloader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  background: rgba(26,10,46,0.85);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(240,192,64,0.15), 0 0 120px rgba(74,26,138,0.3);
  backdrop-filter: blur(12px);
}
.preloader-logo { margin-bottom: 20px; }
.preloader-logo-icon {
  width: 80px; height: 80px;
  margin: 0 auto;
  animation: preloaderSpin 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(240,192,64,0.6));
}
@keyframes preloaderSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.preloader-title {
  font-size: 20px;
  font-weight: 800;
  color: #f0c040;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
}
.preloader-subtitle {
  font-size: 13px;
  color: #9080b0;
  margin-bottom: 24px;
}
.preloader-checklist {
  text-align: left;
  margin-bottom: 24px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #9080b0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.check-item:nth-child(1) { animation: checkAppear 0.4s 0.3s forwards; }
.check-item:nth-child(2) { animation: checkAppear 0.4s 0.8s forwards; }
.check-item:nth-child(3) { animation: checkAppear 0.4s 1.4s forwards; }
.check-item:nth-child(4) { animation: checkAppear 0.4s 2.0s forwards; }
@keyframes checkAppear {
  to { opacity: 1; transform: translateX(0); }
}
.check-item.check-done { color: #f0c040; }
.check-item.check-done .check-icon { color: #4ade80; text-shadow: 0 0 10px rgba(74,222,128,0.6); }
.check-icon { font-size: 16px; min-width: 20px; text-align: center; transition: all 0.3s; }
.preloader-progress-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}
.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f0c040, #ffe080);
  border-radius: 50px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(240,192,64,0.6);
}
.preloader-percent { font-size: 13px; color: #f0c040; font-weight: 700; }
.preloader-fadeout { animation: fadeOut 0.7s forwards; }
@keyframes fadeOut { to { opacity: 0; pointer-events: none; } }

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,0.6), transparent);
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.2); }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(240,192,64,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; filter: drop-shadow(0 0 8px rgba(240,192,64,0.6)); animation: logoGlow 3s ease-in-out infinite; }
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(240,192,64,0.6)); }
  50% { filter: drop-shadow(0 0 16px rgba(240,192,64,1)); }
}
.logo-text { font-size: 22px; font-weight: 900; color: #f0c040; letter-spacing: 2px; line-height: 1; }
.logo-sub { font-size: 10px; font-weight: 600; color: #9080b0; letter-spacing: 3px; text-transform: uppercase; margin-left: -2px; }
.nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #c0b0e0;
  transition: all 0.3s;
}
.nav-link:hover { color: #f0c040; background: rgba(240,192,64,0.08); }
.header-btns { display: flex; gap: 10px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #f0c040;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(10,10,20,0.98);
  border-top: 1px solid rgba(240,192,64,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: 10px 0; font-size: 16px; color: #c0b0e0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-btn { margin-top: 8px; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 40%, #2d1060 0%, #1a0a2e 40%, #0a0a14 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0c040' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(74,26,138,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240,192,64,0.15), rgba(240,192,64,0.05));
  border: 1px solid rgba(240,192,64,0.3);
  color: #f0c040;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,64,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(240,192,64,0); }
}
.hero-title {
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: heroTitleIn 0.8s ease both;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.gold-text {
  background: linear-gradient(135deg, #f0c040, #ffe080, #c8960a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(240,192,64,0.4));
}
.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: #c0b0e0;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: heroTitleIn 0.8s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: heroTitleIn 0.8s 0.4s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroTitleIn 0.8s 0.6s ease both;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(240,192,64,0.2);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #f0c040;
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
}
.stat-plus { font-size: 24px; font-weight: 900; color: #f0c040; }
.stat-label { font-size: 12px; color: #9080b0; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: 4px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(240,192,64,0.5);
  border-bottom: 2px solid rgba(240,192,64,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240,192,64,0.15), rgba(240,192,64,0.05));
  border: 1px solid rgba(240,192,64,0.3);
  color: #f0c040;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.section-desc { font-size: 16px; color: #9080b0; max-width: 500px; margin: 0 auto; }

/* ===== BONUSES ===== */
.bonuses {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #0a0a14 0%, #12102a 50%, #0a0a14 100%);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(135deg, #1a1535, #12102a);
  border: 1px solid rgba(240,192,64,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.bonus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 20px 60px rgba(74,26,138,0.4), 0 0 30px rgba(240,192,64,0.1);
}
.bonus-card--main {
  background: linear-gradient(135deg, #2d1060, #1a0a2e);
  border-color: rgba(240,192,64,0.3);
  box-shadow: 0 10px 40px rgba(74,26,138,0.4);
}
.bonus-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,192,64,0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
.bonus-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.bonus-amount {
  font-size: 42px;
  font-weight: 900;
  color: #f0c040;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
}
.bonus-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bonus-desc { font-size: 13px; color: #9080b0; margin-bottom: 20px; line-height: 1.5; }

/* ===== GAMES ===== */
.games {
  padding: 100px 0;
  background: #0a0a14;
  position: relative;
}
.games::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.3), transparent);
}
.games-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(240,192,64,0.2);
  background: transparent;
  color: #9080b0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #f0c040, #c8960a);
  color: #1a0a00;
  border-color: #f0c040;
  box-shadow: 0 4px 15px rgba(240,192,64,0.3);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.game-card {
  background: #12102a;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(240,192,64,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(240,192,64,0.1);
}
.game-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.game-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-img-wrap img { transform: scale(1.08); }
.game-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;
  backdrop-filter: blur(4px);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #f0c040, #c8960a);
  color: #1a0a00;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.game-badge--new { background: linear-gradient(135deg, #4ade80, #16a34a); color: #fff; }
.game-badge--jackpot { background: linear-gradient(135deg, #f43f5e, #be123c); color: #fff; }
.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}
.game-name { font-size: 13px; font-weight: 700; color: #e8e0d0; }
.game-rtp { font-size: 11px; color: #4ade80; font-weight: 600; }
.games-cta { text-align: center; }
.fade-in { animation: fadeInAnim 0.4s ease both; }
@keyframes fadeInAnim { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a14 0%, #12102a 100%);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: #c0b0e0;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.about-cta { margin-top: 24px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(26,21,53,0.6);
  border: 1px solid rgba(240,192,64,0.08);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
}
.feature-item:hover {
  border-color: rgba(240,192,64,0.25);
  background: rgba(45,16,96,0.4);
  transform: translateX(6px);
}
.feature-icon { font-size: 28px; flex-shrink: 0; }
.feature-content h3 { font-size: 15px; font-weight: 700; color: #f0c040; margin-bottom: 4px; }
.feature-content p { font-size: 13px; color: #9080b0; line-height: 1.6; }

/* ===== ARTICLE ===== */
.article-section {
  padding: 80px 0;
  background: #0a0a14;
}
.article-wrap {
  background: linear-gradient(135deg, #12102a, #1a1535);
  border: 1px solid rgba(240,192,64,0.1);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.article-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #f0c040, #c8960a);
  border-radius: 4px 0 0 4px;
}
.article-title {
  font-size: 28px;
  font-weight: 900;
  color: #f0c040;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(240,192,64,0.15);
}
.article-body p {
  color: #c0b0e0;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.85;
}
.article-body p:last-child { margin-bottom: 0; }

/* ===== PROVIDERS ===== */
.providers {
  padding: 60px 0;
  background: linear-gradient(180deg, #12102a, #0a0a14);
  overflow: hidden;
}
.providers-ticker { overflow: hidden; position: relative; }
.providers-ticker::before, .providers-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.providers-ticker::before { left: 0; background: linear-gradient(90deg, #12102a, transparent); }
.providers-ticker::after { right: 0; background: linear-gradient(-90deg, #12102a, transparent); }
.providers-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 20s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.provider-name {
  font-size: 15px;
  font-weight: 700;
  color: #9080b0;
  padding: 0 20px;
  white-space: nowrap;
  transition: color 0.3s;
}
.provider-name:hover { color: #f0c040; }
.provider-sep { color: rgba(240,192,64,0.3); font-size: 12px; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #0a0a14;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(135deg, #12102a, #1a1535);
  border: 1px solid rgba(240,192,64,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open {
  border-color: rgba(240,192,64,0.3);
  box-shadow: 0 8px 30px rgba(74,26,138,0.3);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #e8e0d0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover { color: #f0c040; }
.faq-item.open .faq-question { color: #f0c040; }
.faq-arrow {
  font-size: 12px;
  color: #f0c040;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.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: #9080b0; font-size: 14px; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #2d1060 0%, #1a0a2e 50%, #0a0a14 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(240,192,64,0.1), transparent);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc { font-size: 18px; color: #c0b0e0; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #06060f;
  border-top: 1px solid rgba(240,192,64,0.1);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: #6050a0; line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.2);
  color: #f0c040;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.footer-links h4 { font-size: 13px; font-weight: 700; color: #f0c040; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 13px; color: #6050a0; margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: #f0c040; }
.footer-bottom { text-align: center; }
.footer-copy { font-size: 13px; color: #4030a0; margin-bottom: 8px; }
.footer-disclaimer { font-size: 11px; color: #302060; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ===== SCROLL REVEAL ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-btns { display: none; }
  .burger { display: flex; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 20px; }
  .stat-item::after { display: none; }
  .article-wrap { padding: 30px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 28px; }
}