/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0f;
  color: #e8e0d0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f0c040;
  --gold-light: #ffd966;
  --gold-dark: #c8960c;
  --purple: #6c3fc5;
  --purple-dark: #4a2a8a;
  --purple-light: #9b6ef3;
  --bg-dark: #0a0a0f;
  --bg-card: #13131f;
  --bg-card2: #1a1a2e;
  --text: #e8e0d0;
  --text-muted: #9a8fa0;
  --border: rgba(240,192,64,0.2);
  --glow-gold: 0 0 30px rgba(240,192,64,0.4);
  --glow-purple: 0 0 30px rgba(108,63,197,0.5);
  --radius: 16px;
  --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 BG ===== */
.particles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a0a3a 0%, #0a0a1a 60%, #000 100%);
  transition: opacity 0.7s ease;
}
.preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(108,63,197,0.3) 0%, transparent 70%);
  animation: preloaderBgPulse 2s ease-in-out infinite;
}
@keyframes preloaderBgPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.preloader__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.preloader__particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: preloaderParticle linear infinite;
}
@keyframes preloaderParticle {
  0% { bottom: -10px; opacity: 0; transform: translateX(0) scale(0); }
  20% { opacity: 0.8; transform: translateX(20px) scale(1); }
  80% { opacity: 0.4; }
  100% { bottom: 110%; opacity: 0; transform: translateX(-20px) scale(0.5); }
}
.preloader__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 480px;
  width: 90%;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(108,63,197,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.preloader__logo {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  animation: spinRing 1.5s linear infinite;
}
.preloader__logo-ring--2 {
  inset: 8px;
  border-top-color: var(--purple-light);
  border-right-color: transparent;
  border-bottom-color: var(--purple-light);
  animation: spinRing 2s linear infinite reverse;
}
@keyframes spinRing {
  to { transform: rotate(360deg); }
}
.preloader__logo-icon {
  font-size: 36px;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
  animation: iconPulse 1.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px var(--gold); }
  50% { transform: scale(1.15); text-shadow: 0 0 40px var(--gold), 0 0 60px var(--gold-light); }
}
.preloader__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
}
.preloader__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.preloader__checklist {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preloader__check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.4;
  transition: all 0.4s ease;
}
.preloader__check-item.done {
  opacity: 1;
  color: var(--text);
}
.preloader__check-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  font-size: 0.75rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.preloader__check-item.done .preloader__check-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(240,192,64,0.6);
}
.preloader__progress-wrap {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.preloader__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 3px;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(240,192,64,0.5);
}
.preloader__progress-num {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

/* ===== 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,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo-icon {
  font-size: 28px;
  color: var(--gold);
  text-shadow: var(--glow-gold);
  animation: logoGlow 2s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { text-shadow: 0 0 10px var(--gold); }
  50% { text-shadow: 0 0 25px var(--gold), 0 0 40px var(--gold-light); }
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: 'Playfair Display', serif;
}
.header__logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  font-weight: 600;
  margin-top: 2px;
  align-self: flex-end;
  margin-bottom: 3px;
}
.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header__nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.header__nav-link:hover { color: var(--gold); }
.header__nav-link:hover::after { width: 100%; }
.header__actions { display: flex; gap: 12px; flex-shrink: 0; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: rgba(10,10,15,0.98);
  border-top: 1px solid var(--border);
}
.header__mobile-menu.open { display: flex; }
.header__mobile-link {
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,192,64,0.6);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: rgba(240,192,64,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(240,192,64,0.2);
}
.btn--hero {
  padding: 16px 40px;
  font-size: 1rem;
}
.btn--large {
  padding: 16px 44px;
  font-size: 1rem;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(108,63,197,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(240,192,64,0.15) 0%, transparent 50%),
              linear-gradient(180deg, #0d0a1a 0%, #0a0a0f 100%);
  padding: 120px 24px 80px;
}
.hero__overlay {
  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");
}
.hero__coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__coin {
  position: absolute;
  top: -50px;
  animation: coinFall linear infinite;
  user-select: none;
}
@keyframes coinFall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.4);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: badgePulse 2s 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-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__title-accent {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(240,192,64,0.5);
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero__stat {
  text-align: center;
  position: relative;
}
.hero__stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero__stat:last-child::after { display: none; }
.hero__stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,192,64,0.4);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.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.75rem;
  letter-spacing: 1px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ===== TICKER ===== */
.ticker {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-dark));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(240,192,64,0.2);
  border-bottom: 1px solid rgba(240,192,64,0.2);
}
.ticker__track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker__track span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SLOTS ===== */
.slots {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.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-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.slot-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.slot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(240,192,64,0.15);
}
.slot-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.slot-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.slot-card:hover .slot-card__img-wrap img { transform: scale(1.08); }
.slot-card__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);
}
.slot-card:hover .slot-card__overlay { opacity: 1; }
.slot-card__play {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
}
.slot-card:hover .slot-card__play { transform: scale(1); }
.slot-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff4444, #ff8800);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 2px 10px rgba(255,68,68,0.4);
}
.slot-card__badge--new {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 2px 10px rgba(108,63,197,0.4);
}
.slot-card__info {
  padding: 16px;
}
.slot-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.slot-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slot-card__rtp {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.slot-card__stars {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.slots__cta { text-align: center; }

/* ===== BONUSES ===== */
.bonuses {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(108,63,197,0.05), transparent);
}
.bonuses__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(108,63,197,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.bonus-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,192,64,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(240,192,64,0.1);
}
.bonus-card--featured {
  background: linear-gradient(135deg, rgba(108,63,197,0.2), rgba(240,192,64,0.05));
  border-color: rgba(240,192,64,0.4);
  grid-column: span 1;
}
.bonus-card__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(240,192,64,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.bonus-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.bonus-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(240,192,64,0.4);
}
.bonus-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content[data-aos], .about__visual[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.about__content[data-aos].visible, .about__visual[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}
.about__title { text-align: left; margin-bottom: 24px; }
.about__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}
.about__feature-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__card-stack {
  position: relative;
  width: 300px;
  height: 300px;
}
.about__floating-card {
  position: absolute;
  width: 80px;
  height: 110px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.about__floating-card--1 {
  top: 20px;
  left: 20px;
  animation: cardFloat1 4s ease-in-out infinite;
  transform: rotate(-15deg);
}
.about__floating-card--2 {
  top: 40px;
  right: 20px;
  animation: cardFloat2 4s ease-in-out infinite 0.5s;
  transform: rotate(10deg);
  color: #ff6b6b;
}
.about__floating-card--3 {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  animation: cardFloat3 4s ease-in-out infinite 1s;
  color: #74b9ff;
}
@keyframes cardFloat1 {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-12px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-16px); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translateX(-50%) rotate(-5deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-5deg) translateY(-10px); }
}
.about__center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(108,63,197,0.4), rgba(10,10,15,0.9));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 40px rgba(240,192,64,0.3), inset 0 0 20px rgba(108,63,197,0.2);
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(240,192,64,0.3); }
  50% { box-shadow: 0 0 60px rgba(240,192,64,0.6), 0 0 80px rgba(108,63,197,0.3); }
}
.about__center-icon { font-size: 2rem; }
.about__center-text {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== ARTICLE ===== */
.article {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.article__wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
}
.article__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.article__body p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.article__body p:last-child { margin-bottom: 0; }

/* ===== PAYMENTS ===== */
.payments {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.payments .section-title { margin-bottom: 32px; }
.payments__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.payment-item {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.payment-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(240,192,64,0.2);
}

/* ===== 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);
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.faq__item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq__item.open {
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 4px 20px rgba(240,192,64,0.1);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(108,63,197,0.2) 0%, rgba(240,192,64,0.05) 50%, rgba(108,63,197,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(240,192,64,0.15) 0%, transparent 70%);
  animation: ctaGlow 3s 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-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-banner__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__logo-icon {
  font-size: 24px;
  color: var(--gold);
}
.footer__logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: 'Playfair Display', serif;
}
.footer__brand-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__badge {
  padding: 4px 12px;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}
.footer__col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
}
.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.footer__copy {
  color: rgba(154,143,160,0.5);
  font-size: 0.78rem;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__burger { display: flex; }
  .hero__stats { gap: 24px; }
  .hero__stat::after { display: none; }
  .slots__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .bonuses__grid { grid-template-columns: 1fr; }
  .article__wrap { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .about__card-stack { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; align-items: center; }
  .cta-banner__buttons { flex-direction: column; align-items: center; }
  .slots__grid { grid-template-columns: 1fr 1fr; }
  .hero__stat-num { font-size: 1.8rem; }
}