*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #8b5cf6;
  --primary-deep: #6d28d9;
  --primary-light: #c4b5fd;
  --primary-glow: #ede9fe;
  --accent: #a78bfa;
  --dark: #07051a;
  --dark2: #0d0b22;
  --dark3: #14113a;
  --dark4: #1c1850;
  --text: #f0eeff;
  --text-muted: #8b84b0;
  --red: #ef4444;
  --green: #22c55e;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,5,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,92,246,0.3);
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: .5px;
}
.logo img { width: 36px; height: 36px; }
.logo span { color: var(--primary-light); }
nav { display: flex; gap: 28px; }
nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
  letter-spacing: .4px;
}
nav a:hover { color: var(--primary-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  text-transform: uppercase;
  letter-spacing: .8px;
  border: none;
  outline: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6, #5b21b6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}
.btn-outline:hover { background: rgba(139,92,246,.15); }
.btn-red {
  background: linear-gradient(135deg, #c084fc, #7c3aed, #4c1d95);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
}
.btn-lg { padding: 16px 40px; font-size: 1.08rem; }

/* ── BANNER ── */
.banner {
  position: relative;
  min-height: 580px;
  background: linear-gradient(125deg, #07051a 0%, #1a0845 45%, #0d0b22 100%);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(109,40,217,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(139,92,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 52%;
  object-fit: cover;
  object-position: center top;
  display: block;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0.6) 65%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0.6) 65%, transparent 100%);
}
.banner-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 60px 6%;
  width: 56%;
}
.banner-content { max-width: 540px; }
.banner-tag {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(139,92,246,.5);
}
.banner-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.banner-title .purple { color: var(--primary-light); }
.banner-sub {
  font-size: 1.05rem;
  color: #c4b5fd;
  margin-bottom: 30px;
}
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PROMO STRIP ── */
.promo-strip {
  background: linear-gradient(90deg, #0d0b22, #14113a, #0d0b22);
  border-top: 1px solid rgba(139,92,246,.3);
  border-bottom: 1px solid rgba(139,92,246,.3);
  padding: 18px 24px;
  overflow: hidden;
}
.promo-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.promo-item .icon { font-size: 1.4rem; }
.promo-item strong { color: var(--primary-light); font-size: 1.05rem; }

/* ── SECTION ── */
section { padding: 72px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 44px;
}

/* ── BONUS CARDS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.bonus-card {
  background: var(--dark3);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.6);
  box-shadow: 0 8px 32px rgba(139,92,246,.2);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary-light), var(--primary-deep));
}
.bonus-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-light);
  margin-bottom: 6px;
}
.bonus-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.bonus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-deep);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  aspect-ratio: 3/4;
}
.game-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(139,92,246,.35);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.game-card:hover img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,5,26,.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.game-card-btn {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .8px;
  display: block;
}
.game-card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-deep);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.game-card-label.hot {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(139,92,246,.15);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: rgba(139,92,246,.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,92,246,.15);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-light);
}
.feature-text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── SEO TEXT ── */
.seo-section {
  background: var(--dark2);
  border-top: 1px solid rgba(139,92,246,.12);
  border-bottom: 1px solid rgba(139,92,246,.12);
}
.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin: 32px 0 12px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 8px;
}
.seo-content p {
  font-size: .97rem;
  color: #b0aacc;
  margin-bottom: 14px;
  max-width: 860px;
  line-height: 1.8;
}
.seo-content ul {
  margin: 0 0 16px 18px;
  max-width: 820px;
}
.seo-content ul li {
  font-size: .95rem;
  color: #b0aacc;
  margin-bottom: 7px;
  line-height: 1.65;
}
.seo-content ul li::marker { color: var(--primary); }

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--dark); }
.faq-list { max-width: 860px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(139,92,246,.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(139,92,246,.5); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary-light); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(139,92,246,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-deep);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .95rem;
  color: #b0aacc;
  line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, #0f0b2e 0%, #1c1456 50%, #0f0b2e 100%);
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(109,40,217,.2);
}
.cta-block .section-title { margin-bottom: 10px; }
.cta-block p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.step-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  border: 1px solid rgba(139,92,246,.15);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(139,92,246,.4);
}
.step-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-light);
}
.step-text { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ── PAYMENT ICONS ── */
.payments {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.pay-badge {
  background: var(--dark3);
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 10px;
  padding: 12px 22px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.pay-badge:hover { border-color: var(--primary); color: var(--primary-light); }

/* ── FOOTER ── */
footer {
  background: #04030f;
  border-top: 1px solid rgba(139,92,246,.15);
  padding: 48px 24px 28px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col { flex: 1; min-width: 160px; }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: #555; }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #555;
  font-size: .72rem;
  font-weight: 900;
  color: #555;
}
.age-warn {
  font-size: .78rem;
  color: #444;
  max-width: 640px;
  line-height: 1.5;
  margin-top: 8px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .banner { min-height: 420px; }
  .banner-overlay { width: 100%; padding: 40px 5%; }
  .banner-img { width: 100%; opacity: .25; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-block { padding: 36px 20px; }
  section { padding: 52px 16px; }
  .footer-top { gap: 28px; }
}

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  animation: floatPulse 2.5s ease-in-out infinite;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(139,92,246,.55); }
  50% { box-shadow: 0 8px 44px rgba(139,92,246,.9); }
}

/* ── TICKER ── */
.ticker-wrap {
  background: #0a0720;
  border-bottom: 1px solid rgba(139,92,246,.2);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  gap: 60px;
}
.ticker:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 4px;
}
.ticker-item .win { color: var(--green); font-weight: 700; }
.ticker-item .name { color: var(--primary-light); }

.highlight { color: var(--primary-light); }
