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

:root {
  --navy: #07091a;
  --navy-light: #0d1230;
  --ruby: #c0233b;
  --ruby-bright: #e8294a;
  --gold: #d4a017;
  --gold-bright: #f0c040;
  --aurora-teal: #1affd5;
  --aurora-purple: #9b5de5;
  --text-primary: #f0f4ff;
  --text-muted: #9aaed6;
}

* { box-sizing: border-box; }

body {
  background-color: var(--navy);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

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

.aurora-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1540 30%, #0d1a3a 60%, #07091a 100%);
  position: relative;
  overflow-x: hidden;
}

.aurora-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 255, 213, 0.045) 0%,
    rgba(155, 93, 229, 0.055) 35%,
    rgba(192, 35, 59, 0.045) 65%,
    rgba(212, 160, 23, 0.04) 100%
  );
  pointer-events: none;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--ruby), var(--ruby-bright));
  color: #fff;
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.35), 0 0 26px rgba(192, 35, 59, 0.22);
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(232,41,74,0.6);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold-bright);
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}

.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% auto;
  background-position: 50% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-casino {
  background: linear-gradient(145deg, rgba(13,18,48,0.95), rgba(10,14,26,0.98));
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 1rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card-casino:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.6);
  box-shadow: 0 12px 40px rgba(192,35,59,0.2);
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(192,35,59,0.15), rgba(212,160,23,0.12));
  border: 2px solid var(--gold);
  border-radius: 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

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

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

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(192,35,59,0.4);
}

.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 26, 0.98);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  transform: translateZ(0);
}

.mobile-menu {
  background: #0a0e1a;
  border-top: 1px solid rgba(212,160,23,0.2);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--gold-bright);
  background: rgba(212,160,23,0.08);
}

.payment-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.faq-item {
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: var(--gold-bright); }

.faq-item p {
  color: var(--text-muted);
  padding-bottom: 1.2rem;
  line-height: 1.7;
}

.provider-tag {
  display: inline-block;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-bright);
  border-radius: 2rem;
  padding: 0.3em 1em;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: background 0.2s;
}

.provider-tag:hover {
  background: rgba(212,160,23,0.25);
}

.hero-section {
  min-height: 92vh;
  background: url('/images/hero.webp') center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,9,26,0.82) 0%, rgba(7,9,26,0.65) 50%, rgba(7,9,26,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.8;
  text-align: center;
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.5;
}

.overflow-x-auto { overflow-x: auto; }

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

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.2rem;
  color: #c8d6f0;
}

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

.prose a:hover { color: #fff; }

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

.prose ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5rem;
  color: #c8d6f0;
}

.prose ul li::before {
  content: '\2665';
  position: absolute;
  left: 0;
  color: var(--ruby-bright);
  font-size: 0.75em;
  top: 0.2em;
}

.prose ol {
  counter-reset: ol-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.prose ol li {
  counter-increment: ol-counter;
  padding-left: 2em;
  position: relative;
  margin-bottom: 0.5rem;
  color: #c8d6f0;
}

.prose ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.prose blockquote {
  border-left: 4px solid var(--ruby);
  background: rgba(192,35,59,0.08);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #d4e0f8;
  font-style: italic;
}

.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.5rem;
}

.prose table th {
  background: rgba(212,160,23,0.15);
  color: var(--gold-bright);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid rgba(212,160,23,0.2);
}

.prose table td {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212,160,23,0.1);
  color: #c8d6f0;
}

.prose table tr:nth-child(even) td {
  background: rgba(13,18,48,0.6);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(212,160,23,0.2);
}

.eighteen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--ruby);
  color: var(--ruby-bright);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    will-change: auto;
  }
}
