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

:root {
  --color-burgundy: #6B1A2A;
  --color-burgundy-dark: #3D0A14;
  --color-gold: #D4AF37;
  --color-gold-light: #F5D96B;
  --color-cream: #F5EDD8;
  --color-velvet: #1A0A0F;
  --color-velvet-mid: #2D1020;
  --color-text-light: #F5EDD8;
  --color-text-muted: #C9A96E;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-velvet);
  color: var(--color-text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-gold);
}

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

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

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 10px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,0.8); }
}

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

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

.float-anim { animation: float 3s ease-in-out infinite; }
.pulse-gold { animation: pulse-gold 2s ease-in-out infinite; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear 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(61,10,20,0.88) 0%, rgba(26,10,15,0.82) 50%, rgba(61,10,20,0.88) 100%);
  z-index: 1;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  color: var(--color-velvet);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

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

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-velvet);
}

.card-velvet {
  background: linear-gradient(135deg, var(--color-velvet-mid) 0%, var(--color-burgundy-dark) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

.bonus-badge {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  border: 2px solid var(--color-gold);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  animation: pulse-gold 2s ease-in-out infinite;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-velvet);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.velvet-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 2rem 0;
}

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

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

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

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

.prose a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.4);
  transition: color 0.2s;
}

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

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

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

.prose ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.6rem;
  top: 0.45rem;
}

.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-cream);
}

.prose ol li { margin-bottom: 0.5rem; }

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

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

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background: rgba(45,16,32,0.7);
  border-radius: 0.5rem;
}

.prose table thead th {
  background: var(--color-burgundy);
  color: var(--color-gold);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.prose table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  color: var(--color-cream);
}

.prose table tbody tr:hover { background: rgba(212,175,55,0.05); }

.nav-link {
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s;
}

.nav-link:hover { color: var(--color-gold); }
.nav-link:hover::after { width: 100%; }

.mobile-menu {
  background: var(--color-velvet-mid);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.provider-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  margin: 0.3rem;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 2rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: all 0.3s;
  background: rgba(45,16,32,0.5);
}

.provider-tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,175,55,0.08);
}

.faq-item {
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(45,16,32,0.5);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-cream);
  font-weight: 500;
  user-select: none;
}

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

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 400px;
  padding: 1rem 1.25rem;
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

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

.game-card {
  background: linear-gradient(180deg, var(--color-velvet-mid) 0%, var(--color-burgundy-dark) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  width: 200px;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.2);
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--color-gold);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

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

.payment-table-wrap { overflow-x: auto; }

.payment-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

.payment-table th {
  background: var(--color-burgundy);
  color: var(--color-gold);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
}

.payment-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  color: var(--color-cream);
  vertical-align: middle;
}

.payment-table tr:hover { background: rgba(212,175,55,0.04); }

.review-tab-content { display: none; }
.review-tab-content.active { display: block; }

.tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 0.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(212,175,55,0.3);
  background: transparent;
  color: var(--color-text-muted);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-gold);
  color: var(--color-velvet);
  border-color: var(--color-gold);
}
