/* ===== 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;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f5c842;
  --gold-dark: #c9a227;
  --gold-light: #ffe680;
  --purple: #1a0a2e;
  --purple-mid: #2d1060;
  --purple-light: #4a1a8a;
  --pink: #e040fb;
  --bg-dark: #0a0a14;
  --bg-card: rgba(255,255,255,0.04);
  --border: rgba(245,200,66,0.2);
  --glow-gold: 0 0 20px rgba(245,200,66,0.4);
  --glow-purple: 0 0 30px rgba(74,26,138,0.6);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

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

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a14 70%);
  transition: opacity 0.6s ease;
}
.preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,200,66,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(224,64,251,0.08) 0%, transparent 50%);
  animation: preloaderBgPulse 3s ease-in-out infinite;
}
@keyframes preloaderBgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.preloader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  padding: 40px 30px;
}
.preloader-logo {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.preloader-logo-inner {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  animation: logoPulse 1.5s ease-in-out infinite;
  z-index: 2;
}
.preloader-logo-text .gold { color: var(--gold); }
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(245,200,66,0.6)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(245,200,66,1)); }
}
.preloader-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245,200,66,0.4);
  animation: ringRotate 2s linear infinite;
}
.preloader-logo-ring.ring2 {
  inset: 8px;
  border-color: rgba(224,64,251,0.3);
  animation: ringRotate 3s linear infinite reverse;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.preloader-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245,200,66,0.5);
}
.preloader-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.preloader-checklist {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.check-item.done { color: #fff; }
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.check-item.done .check-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 10px rgba(245,200,66,0.6);
}
.preloader-progress-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,200,66,0.8);
}
.preloader-percent {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== 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: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a0a00;
  box-shadow: 0 4px 20px rgba(245,200,66,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,200,66,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(245,200,66,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245,200,66,0.3);
}
.btn-xl { padding: 16px 40px; font-size: 1.05rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== GOLD TEXT ===== */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold { color: var(--gold); }

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

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header.left { text-align: left; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
}
.section-header.left .section-sub { margin: 0; }

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.logo-pin {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.logo-up {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-left: 6px;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(245,200,66,0.08);
}
.header-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(10,10,20,0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-link:hover { color: var(--gold); background: rgba(245,200,66,0.08); }
.mobile-btn { margin-top: 4px; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #2d1060 0%, #1a0a2e 40%, #0a0a14 80%);
  padding: 120px 20px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245,200,66,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(224,64,251,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: starTwinkle ease-in-out infinite;
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,200,66,0.05));
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(245,200,66,0); }
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(245,200,66,0.2);
  animation: heroTitleIn 1s ease forwards;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  animation: heroDescIn 1s ease 0.2s both;
}
@keyframes heroDescIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: heroDescIn 1s ease 0.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  animation: heroDescIn 1s ease 0.6s both;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(135deg, #1a0a2e, #0d0520);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== BONUSES ===== */
.bonuses {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.5);
  box-shadow: var(--glow-gold);
}
.bonus-card--main {
  background: linear-gradient(135deg, rgba(45,16,96,0.8), rgba(26,10,46,0.9));
  border-color: rgba(245,200,66,0.4);
}
.bonus-glow {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,200,66,0.3) 0%, transparent 70%);
  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: 2.5rem; margin-bottom: 12px; }
.bonus-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
}
.bonus-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ===== GAMES ===== */
.games {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(26,10,46,0.3), transparent);
  position: relative;
  z-index: 1;
}
.games-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0a00;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(245,200,66,0.4);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245,200,66,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--glow-gold);
}
.game-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.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.1); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0a00;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.game-badge--new {
  background: linear-gradient(135deg, #e040fb, #9c27b0);
  color: #fff;
}
.game-badge--jackpot {
  background: linear-gradient(135deg, #ff6b35, #f7c59f);
  color: #1a0a00;
}
.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}
.game-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.game-rtp {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.games-more { text-align: center; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: rgba(245,200,66,0.4);
  background: rgba(245,200,66,0.04);
  transform: translateX(6px);
}
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-body strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.feature-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}
.about-floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(45,16,96,0.9), rgba(26,10,46,0.95));
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.card1 { top: 20px; left: 0; animation: floatCard 4s ease-in-out infinite; }
.card2 { top: 20px; right: 0; animation: floatCard 4s ease-in-out 1s infinite; }
.card3 { bottom: 20px; left: 0; animation: floatCard 4s ease-in-out 2s infinite; }
.card4 { bottom: 20px; right: 0; animation: floatCard 4s ease-in-out 3s infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.about-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(45,16,96,1), rgba(10,10,20,1));
  border: 2px solid rgba(245,200,66,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245,200,66,0.3), 0 0 80px rgba(74,26,138,0.4);
  animation: centerBadgePulse 3s ease-in-out infinite;
}
@keyframes centerBadgePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(245,200,66,0.3), 0 0 80px rgba(74,26,138,0.4); }
  50% { box-shadow: 0 0 60px rgba(245,200,66,0.5), 0 0 120px rgba(74,26,138,0.6); }
}
.about-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

/* ===== ARTICLE ===== */
.article-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.article-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  backdrop-filter: blur(10px);
}
.article-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 30px;
  line-height: 1.3;
}
.article-body p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-body p:last-child { margin-bottom: 0; }

/* ===== HOW TO PLAY ===== */
.howto {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(26,10,46,0.4), transparent);
  position: relative;
  z-index: 1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,200,66,0.4);
  box-shadow: var(--glow-gold);
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,200,66,0.1);
  line-height: 1;
  margin-bottom: 8px;
  font-family: monospace;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  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: all var(--transition);
}
.faq-item.open {
  border-color: rgba(245,200,66,0.4);
  box-shadow: 0 4px 20px rgba(245,200,66,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-arrow {
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45,16,96,0.8) 0%, rgba(10,10,20,0.95) 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(245,200,66,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(224,64,251,0.08) 0%, transparent 40%);
  animation: ctaBgAnim 5s ease-in-out infinite;
}
@keyframes ctaBgAnim {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,200,66,0.05));
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(10,10,20,0.95), #050508);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.footer-warning {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { 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-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
@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; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 1.4rem; }
  .article-wrap { padding: 30px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}