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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d060;
  --gold-pale: #f5e9c0;
  --violet-deep: #0f0520;
  --violet-dark: #1a0a2e;
  --violet-mid: #2d1b4e;
  --violet-soft: #3d2460;
  --cream: #f0e8d0;
  --cream-dark: #d8ccb0;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  background-color: var(--violet-deep);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

@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(-12px); }
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--violet-deep);
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  animation: glow-pulse 2.5s ease-in-out infinite;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
}

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

.btn-secondary:hover {
  background: rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.card-violet {
  background: linear-gradient(145deg, var(--violet-mid), var(--violet-soft));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-violet:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}

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

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

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

.prose h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

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

.prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.5);
  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: 0.3rem 0 0.3rem 1.75rem;
  position: relative;
  color: var(--cream);
}

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

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

.prose ol li {
  padding: 0.25rem 0;
  color: var(--cream);
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(201,168,76,0.08);
  border-radius: 0 8px 8px 0;
  color: var(--cream-dark);
  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(201,168,76,0.2);
  color: var(--gold-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(201,168,76,0.4);
}

.prose table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  color: var(--cream);
}

.prose table tr:hover td {
  background: rgba(201,168,76,0.06);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.25);
  display: block;
  margin: 1.5rem auto;
}

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

.number-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--violet-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.provider-cloud span {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 0.9rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  color: var(--cream);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.provider-cloud span:hover {
  background: rgba(201,168,76,0.25);
  color: var(--gold-light);
}

.game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.star-icon {
  color: var(--gold);
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(240,232,208,0.6);
  margin-top: 0.75rem;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.25rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--cream-dark);
  line-height: 1.7;
}

.payment-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.2);
}

.nav-link {
  color: var(--cream-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}

.mobile-menu {
  background: var(--violet-dark);
  border-top: 1px solid rgba(201,168,76,0.25);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
