@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
  --cobalt: #0d1f6e;
  --cobalt-light: #1a3a9c;
  --gold: #f5c518;
  --gold-light: #ffe066;
  --black-bg: #07090f;
  --surface: #0f1629;
  --card: #121d3a;
  --card-border: #1e3060;
  --text-primary: #eef2ff;
  --text-secondary: #94a3c0;
  --text-muted: #5a6a8a;
}

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

body {
  background-color: var(--black-bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  50% { box-shadow: 0 0 24px 8px rgba(245,197,24,0.25); }
}

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

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

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

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

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f5c518, #e0a800);
  color: #07090f;
  font-weight: 700;
  padding: 0.85em 2.2em;
  border-radius: 0.5em;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-gold 3s ease-in-out infinite;
  border: none;
  cursor: pointer;
}

.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.4); }

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 0.8em 2em;
  border-radius: 0.5em;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover { background: var(--gold); color: #07090f; }

.card-glass {
  background: linear-gradient(135deg, rgba(26,58,156,0.18), rgba(7,9,15,0.6));
  border: 1px solid var(--card-border);
  border-radius: 1em;
  backdrop-filter: blur(8px);
}

.badge-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c98a00);
  color: #07090f;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.gold-text { color: var(--gold); }

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.72) 0%, rgba(13,31,110,0.55) 50%, rgba(7,9,15,0.85) 100%);
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(13,31,110,0.9), rgba(7,9,15,0.95));
  border: 2px solid var(--gold);
  border-radius: 1.25em;
  padding: 1.5em 2.5em;
  display: inline-block;
  animation: pulse-gold 3s ease-in-out infinite;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.875em;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
  width: clamp(160px, 22vw, 220px);
}

.game-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(245,197,24,0.2); }

.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.provider-cloud span {
  display: inline-block;
  background: rgba(26,58,156,0.25);
  border: 1px solid var(--card-border);
  border-radius: 2em;
  padding: 0.35em 1em;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0.3em;
  transition: background 0.2s, color 0.2s;
}

.provider-cloud span:hover { background: var(--gold); color: #07090f; cursor: default; }

.prose {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  margin-top: 2em;
  margin-bottom: 0.6em;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.3em;
}

.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

.prose p { margin-bottom: 1.1em; color: var(--text-secondary); }

.prose a { color: var(--gold); text-decoration: underline; }

.prose a:hover { color: var(--gold-light); }

.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1.1em; color: var(--text-secondary); }

.prose ul li, .prose ol li { margin-bottom: 0.4em; }

.prose ul li::marker { color: var(--gold); }

.prose ol li::marker { color: var(--gold); font-weight: 700; }

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.2em;
  margin-left: 0;
  color: var(--text-muted);
  font-style: italic;
}

.prose img { max-width: 100%; border-radius: 0.75em; margin: 1.5em 0; display: block; }

.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }

.prose th {
  background: var(--cobalt);
  color: var(--gold);
  font-weight: 700;
  padding: 0.7em 1em;
  text-align: left;
  border: 1px solid var(--card-border);
}

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

.prose tr:nth-child(even) td { background: rgba(26,58,156,0.1); }

/* Horizontal scroll for tables on all pages */
.overflow-x-auto {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.prose .overflow-x-auto { overflow-x: auto; max-width: 100%; }

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4em 0.8em;
  border-radius: 0.375em;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--gold); background: rgba(245,197,24,0.08); }

.mobile-menu {
  background: #0a0f22;
  border-top: 1px solid var(--card-border);
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.75em;
  overflow: hidden;
  margin-bottom: 0.75em;
}

.faq-question {
  padding: 1.1em 1.5em;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.faq-answer {
  padding: 0 1.5em 1.1em;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.open { display: block; }

.promo-card {
  background: linear-gradient(135deg, var(--card), rgba(13,31,110,0.3));
  border: 1px solid var(--card-border);
  border-radius: 1em;
  padding: 1.75em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  transition: transform 0.25s, box-shadow 0.25s;
}

.promo-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(13,31,110,0.4); }

.footer-base {
  background: #050710;
  border-top: 1px solid var(--card-border);
}

.disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
