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

:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --velvet: #080d1a;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dim: #a8882a;
  --text-primary: #e8e8f4;
  --text-muted: #9ca3af;
  --card-bg: #101e38;
  --border-gold: rgba(212,175,55,0.3);
}

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

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

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

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

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 35px rgba(212,175,55,0.8); }
}

@keyframes spinReel {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); }
}

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

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

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

.gold-pulse {
  animation: goldPulse 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(8,13,26,0.88) 0%, rgba(10,22,40,0.82) 50%, rgba(8,13,26,0.92) 100%);
  z-index: 0;
}

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

.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #060b17 0%, #0a1628 50%, #060b17 100%);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  color: #080d1a;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
}

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

.btn-outline-gold:hover {
  background: rgba(212,175,55,0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

.card-casino {
  background: linear-gradient(135deg, var(--card-bg), #0d1f3c);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card-casino:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.section-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.bonus-badge {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  border: 2px solid var(--gold);
  border-radius: 1rem;
  animation: goldPulse 2.5s ease-in-out infinite;
}

.payment-table-wrap {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
}

.faq-item {
  border-bottom: 1px solid var(--border-gold);
}

.faq-question {
  cursor: pointer;
  padding: 1.25rem 0;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.word-cloud span {
  display: inline-block;
  margin: 0.4rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-gold);
  border-radius: 2rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  background: rgba(212,175,55,0.07);
  transition: all 0.2s ease;
}

.word-cloud span:hover {
  background: rgba(212,175,55,0.2);
  border-color: var(--gold);
}

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

.prose h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
}

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

.prose p {
  margin-bottom: 1.25rem;
  color: #d1d5db;
}

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

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

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

.prose ul li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: #d1d5db;
}

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

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

.prose ol li {
  counter-increment: ol-counter;
  padding: 0.4rem 0 0.4rem 0.5rem;
  color: #d1d5db;
  position: relative;
}

.prose ol li::before {
  content: counter(ol-counter) '.';
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(212,175,55,0.07);
  border-radius: 0 0.5rem 0.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 table th {
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border-gold);
}

.prose table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gold);
  color: #d1d5db;
  background: rgba(13,31,60,0.5);
}

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

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border-gold);
  margin: 1.5rem 0;
}

.mobile-menu {
  background: #060b17;
  border-top: 1px solid var(--border-gold);
}

.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.5rem;
}

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

.star-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.star-divider::before,
.star-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.eighteen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
}

.reel-pattern {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(212,175,55,0.03) 60px,
    rgba(212,175,55,0.03) 61px
  ), repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(212,175,55,0.03) 60px,
    rgba(212,175,55,0.03) 61px
  );
}
