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

:root {
  --emerald: #059669;
  --emerald-light: #10b981;
  --emerald-dark: #047857;
  --gold: #c9a227;
  --gold-light: #e0b830;
  --bg-primary: #0a1a0f;
  --bg-secondary: #0f2318;
  --bg-card: #132a1a;
  --bg-card2: #1a3524;
  --text-primary: #e8f5e9;
  --text-secondary: #a7d7b0;
  --text-muted: #6b9e77;
  --border: #1e4028;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
}

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

@keyframes parallax-bg {
  0% { background-position: center 0%; }
  100% { background-position: center 100%; }
}

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

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

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a1a0f;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-gold 2.5s infinite;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.45); }

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

.btn-secondary:hover { background: var(--emerald-light); color: #0a1a0f; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover { transform: translateY(-4px); border-color: var(--emerald); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4rem 0; }

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

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold);
  margin: 1rem 0 0.9rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--emerald-light);
  margin: 1.5rem 0 0.6rem;
  font-weight: 700;
}

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

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

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

.prose ul, .prose ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  color: var(--text-primary);
}

.prose li { margin-bottom: 0.4rem; }

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.8rem 1.2rem;
  background: var(--bg-card2);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

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

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

.prose table th {
  background: var(--bg-card2);
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--border);
}

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

.prose table tr:nth-child(even) td { background: var(--bg-secondary); }

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

.nav-link:hover { color: var(--gold); background: rgba(201,162,39,0.08); }

.hero-bg {
  background-image: linear-gradient(to bottom, rgba(10,26,15,0.72) 0%, rgba(10,26,15,0.88) 100%), url('/images/hero.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.bonus-badge {
  background: linear-gradient(135deg, #0f2318 0%, #1a3524 100%);
  border: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 1.8rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(201,162,39,0.25);
  animation: float 4s ease-in-out infinite;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
  flex: 0 0 auto;
  width: 220px;
}

.game-card:hover { transform: translateY(-5px); border-color: var(--gold); }

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a1a0f;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,162,39,0.35);
}

.promo-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, border-color 0.2s;
}

.promo-card:hover { transform: translateY(-4px); border-color: var(--emerald); }

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

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

.faq-q:hover { color: var(--gold); }

.faq-a {
  padding: 0 1.4rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-icon {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--text-primary);
}

th {
  background: var(--bg-card2);
  color: var(--gold);
  font-weight: 700;
}

tr:nth-child(even) td { background: var(--bg-secondary); }
tr:nth-child(odd) td { background: var(--bg-card); }

.word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.provider-tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--emerald-light);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.provider-tag:hover { background: var(--emerald-dark); color: #fff; }

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

@media (max-width: 1023px) {
  #mobile-menu { display: none; }
  #mobile-menu.open { display: flex; }
}
