:root {
  --color-bg: #0b0620;
  --color-surface: #150a30;
  --color-card: #1d1042;
  --color-primary: #8b5cf6;
  --color-primary-bright: #a78bfa;
  --color-accent: #f59e0b;
  --color-accent-bright: #fbbf24;
  --color-text: #f3f0ff;
  --color-text-muted: #c4b5fd;
  --color-border: #2e1a6e;
}

* { box-sizing: border-box; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.2); }
  50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.4); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.glow-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

.float-anim { animation: float 4s ease-in-out infinite; }

.fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

.shimmer-text {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-bright), var(--color-accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-bg {
  position: relative;
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,6,32,0.92) 0%, rgba(21,10,48,0.85) 50%, rgba(29,16,66,0.92) 100%);
  z-index: 1;
}

.hero-bg > * { position: relative; z-index: 2; }

.card-glow {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.35);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168,85,247,0.5);
}

.btn-accent {
  display: inline-block;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #0b0620;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,158,11,0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-primary-bright);
  font-weight: 700;
  padding: 0.7rem 1.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  text-align: center;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.badge-bonus {
  background: linear-gradient(135deg, #1d1042, #2e1a6e);
  border: 2px solid var(--color-accent);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(245,158,11,0.25), 0 0 80px rgba(139,92,246,0.15);
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
  padding: 0.25rem 0;
}

.nav-link:hover { color: var(--color-accent); }

.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #7c3aed, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}

.provider-tag {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--color-text-muted);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: background 0.15s, color 0.15s;
}

.provider-tag:hover {
  background: rgba(139,92,246,0.35);
  color: #ffffff;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.game-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  width: 200px;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(139,92,246,0.4);
}

.game-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer.open { max-height: 400px; }

.faq-icon { transition: transform 0.3s; color: var(--color-accent); }
.faq-icon.rotated { transform: rotate(45deg); }

.mobile-menu {
  display: none;
  background: #150a30;
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.prose h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--color-primary-bright);
  margin-top: 2em;
  margin-bottom: 0.75em;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.4em;
}

.prose h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25em;
  font-size: 1rem;
}

.prose a {
  color: var(--color-accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover { color: var(--color-primary-bright); }

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5em;
}

.prose ul li {
  color: var(--color-text-muted);
  padding: 0.35em 0 0.35em 1.75em;
  position: relative;
  line-height: 1.7;
}

.prose ul li::before {
  content: '▸';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 0.85em;
  top: 0.45em;
}

.prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.prose ol li {
  color: var(--color-text-muted);
  padding: 0.25em 0;
  line-height: 1.7;
}

.prose blockquote {
  border-left: 4px solid var(--color-primary);
  background: rgba(139,92,246,0.08);
  padding: 1em 1.5em;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5em 0;
  color: var(--color-text);
  font-style: italic;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5em 0;
  display: block;
  border: 1px solid var(--color-border);
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
  font-size: 0.9rem;
}

.prose table th {
  background: var(--color-surface);
  color: var(--color-accent);
  font-weight: 700;
  padding: 0.75em 1em;
  text-align: left;
  border: 1px solid var(--color-border);
}

.prose table td {
  padding: 0.65em 1em;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-card);
}

.prose table tr:nth-child(even) td { background: rgba(29,16,66,0.7); }

.disclaimer {
  font-size: 0.78rem;
  color: rgba(167,139,250,0.7);
  text-align: center;
  margin-top: 0.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.payment-table th {
  background: var(--color-surface);
  color: var(--color-accent);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--color-border);
  white-space: nowrap;
}

.payment-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-card);
  white-space: nowrap;
}

.payment-table tr:nth-child(even) td { background: rgba(29,16,66,0.6); }

.review-tab-btn {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.15s;
}

.review-tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.review-tab-btn:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary-bright);
}

.review-panel { display: none; }
.review-panel.active { display: block; }

.promo-card {
  background: linear-gradient(135deg, #1d1042, #150a30);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.2);
  border-color: var(--color-accent);
}

@media (max-width: 1023px) {
  .desktop-nav { display: none !important; }
}

@media (min-width: 1024px) {
  .burger-btn { display: none !important; }
}
