:root {
  --color-primary:    #007cba;
  --color-accent:     #7a00df;
  --color-bg:         #2b1234;
  --color-bg-2:       #1c0325;
  --color-text:       #ffffff;
  --color-secondary:  #006ba1;
  --color-cta:        #7a00df;
  --color-cta-hover:  #6b00d0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-2);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-cta), #9a20ff);
  color: #fff;
  box-shadow: 0 4px 20px rgba(122,0,223,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-cta-hover), #8800e8);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(122,0,223,0.55);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 620px;
}
section { padding: 80px 0; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 3, 37, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,0,223,0.2);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: auto; }
.nav-logo-text { font-size: 1.5rem; font-weight: 900; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-weight: 500; font-size: 0.95rem; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
#menu-toggle { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  #menu-toggle:checked ~ .mobile-nav { display: flex; flex-direction: column; gap: 0; padding: 12px 20px 20px; background: var(--color-bg-2); border-top: 1px solid rgba(122,0,223,0.2); }
  #menu-toggle:checked ~ .mobile-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; font-weight: 500; }
  #menu-toggle:checked ~ .mobile-nav .mobile-cta { margin-top: 16px; text-align: center; }
  .nav-logo-text { font-size: 1.2rem; }
  nav { flex-wrap: wrap; }
  .nav-header-row { display: flex; width: 100%; justify-content: space-between; align-items: center; }
}

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-2) 50%, #12001e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,0,223,0.2) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,124,186,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
#hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 32px;
}
.bonus-badge {
  background: linear-gradient(135deg, rgba(122,0,223,0.25), rgba(0,124,186,0.2));
  border: 1px solid rgba(122,0,223,0.5);
  border-radius: 16px;
  padding: 20px 32px;
  display: inline-block;
  margin-bottom: 36px;
}
.bonus-badge-text {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #f0c060;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.trust-bar {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.07);
  padding: 8px 16px;
  border-radius: 50px;
}

#bonus { background: linear-gradient(180deg, var(--color-bg-2), var(--color-bg)); }
.bonus-headline {
  text-align: center;
  margin-bottom: 56px;
}
.bonus-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.bonus-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(122,0,223,0.25);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.bonus-step:hover { transform: translateY(-4px); }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-num {
  display: inline-block;
  width: 32px; height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.step-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; opacity: 0.8; }
.bonus-table-wrap { overflow-x: auto; margin-bottom: 32px; }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.bonus-table th, .bonus-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bonus-table th {
  background: rgba(122,0,223,0.2);
  font-weight: 700;
  color: #c084fc;
}
.bonus-table tr:hover td { background: rgba(255,255,255,0.04); }
.bonus-fine-print {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 32px;
}
.bonus-cta-wrap { text-align: center; }

#games { background: var(--color-bg); }
.games-header { text-align: center; margin-bottom: 48px; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.game-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  aspect-ratio: 3/2;
}
.game-card:hover { transform: scale(1.04); }
.game-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.game-thumb-1 { background: linear-gradient(135deg, #1a0533, #6b00d0); }
.game-thumb-2 { background: linear-gradient(135deg, #003366, #007cba); }
.game-thumb-3 { background: linear-gradient(135deg, #1a2a00, #4a7c00); }
.game-thumb-4 { background: linear-gradient(135deg, #330000, #aa0000); }
.game-thumb-5 { background: linear-gradient(135deg, #002233, #005580); }
.game-thumb-6 { background: linear-gradient(135deg, #220033, #8800cc); }
.game-thumb-7 { background: linear-gradient(135deg, #331100, #cc5500); }
.game-thumb-8 { background: linear-gradient(135deg, #003322, #007744); }
.game-thumb-9 { background: linear-gradient(135deg, #1a0040, #5500cc); }
.game-thumb-10 { background: linear-gradient(135deg, #0a0a2a, #0033aa); }
.game-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 12px 12px;
}
.game-name { font-weight: 700; font-size: 0.9rem; }
.game-type { font-size: 0.75rem; opacity: 0.75; }
.providers-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.provider-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.provider-badge:hover { background: rgba(122,0,223,0.2); border-color: var(--color-accent); }
.games-cta { text-align: center; }

#payments { background: linear-gradient(180deg, var(--color-bg), var(--color-bg-2)); }
.payments-header { text-align: center; margin-bottom: 48px; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.payment-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}
.payment-card:hover { border-color: var(--color-primary); background: rgba(0,124,186,0.12); }
.payment-icon { font-size: 2rem; margin-bottom: 8px; }
.payment-name { font-size: 0.85rem; font-weight: 600; }
.payment-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.payment-info-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--color-primary);
}
.payment-info-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #60c0ff; }
.payment-info-card p { font-size: 0.88rem; opacity: 0.8; }

#about { background: var(--color-bg-2); }
.about-header { text-align: center; margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(122,0,223,0.2);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--color-accent); background: rgba(122,0,223,0.1); transform: translateY(-3px); }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.92rem; opacity: 0.8; }

#faq { background: var(--color-bg); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(122,0,223,0.2); border-radius: 12px; overflow: hidden; }
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.faq-label:hover { background: rgba(122,0,223,0.12); }
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}
.faq-item input:checked ~ .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-item input:checked ~ .faq-label .faq-arrow { transform: rotate(180deg); }

footer {
  background: #100018;
  padding: 60px 0 0;
  border-top: 1px solid rgba(122,0,223,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; opacity: 0.7; margin-top: 16px; line-height: 1.7; max-width: 320px; }
.footer-logo-text { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: #c084fc; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 1; color: var(--color-primary); }
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.footer-pay-badge { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 6px 12px; font-size: 0.78rem; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; opacity: 0.65; margin-bottom: 6px; }
.footer-bottom .disclaimer { color: #f0c060; font-weight: 700; opacity: 1; font-size: 0.9rem; }
.footer-license { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.82rem; opacity: 0.6; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(28,3,37,0.97);
  border-top: 1px solid rgba(122,0,223,0.3);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 999;
}
#cookie-check { display: none; }
#cookie-check:checked ~ .cookie-bar { display: none; }
.cookie-text { font-size: 0.85rem; opacity: 0.85; flex: 1; min-width: 200px; }
.cookie-btn {
  background: var(--color-cta);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-label { display: contents; }

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
}
#hero, section#hero, .hero, .hero-section, [id*="hero"], [class*="hero-"] { background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('images/hero.jpg') !important; background-size: cover !important; background-position: center center !important; background-repeat: no-repeat !important; }
#bonus, section#bonus, .bonus-section, [id*="bonus"], [class*="bonus-"] { background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('images/bonus_bg.jpg') !important; background-size: cover !important; background-position: center !important; }
