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

:root {
  --navy: #0a1628;
  --navy-dark: #060f1a;
  --navy-light: #142040;
  --navy-card: #1a2a50;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #a07010;
  --text-light: #f8f0d8;
  --text-muted: #b8a88a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-dark);
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

.font-display { font-family: 'Playfair Display', serif; }

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

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

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

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 30px rgba(212,160,23,0.9), 0 0 60px rgba(212,160,23,0.4); }
}

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

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

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

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

.sparkle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: sparkle 2s ease-in-out infinite;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,26,0.88) 0%, rgba(10,22,40,0.75) 50%, rgba(6,15,26,0.92) 100%);
  z-index: 1;
}

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

.velvet-pattern {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.04) 0%, transparent 50%);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.card-casino {
  background: var(--navy-card);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

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

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  width: 60%;
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.3rem 1rem;
  font-size: 0.875rem;
}

.step-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.provider-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

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

.faq-item {
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--navy-card);
}

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

.faq-question .faq-icon {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

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

.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

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

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

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

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

.prose ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

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

.prose ol li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  padding-left: 0.5rem;
}

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

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1.25rem;
  background: rgba(212,160,23,0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  color: var(--text-muted);
  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 thead tr { background: rgba(212,160,23,0.15); }
.prose th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 2px solid rgba(212,160,23,0.3);
}

.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  color: var(--text-light);
}

.prose tbody tr:hover { background: rgba(212,160,23,0.05); }

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

.nav-mobile {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212,160,23,0.2);
}

.disclaimer-text {
  font-size: 0.75rem;
  color: rgba(248,240,216,0.55);
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .hero-bg { background-attachment: scroll; }
}
