html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  word-break: break-word;
  overflow-x: hidden;
}

/* =============================
   CONTAINER
   ============================= */
.max-w-site {
  max-width: 1440px;
}

/* =============================
   HERO
   ============================= */
.hero-section {
  position: relative;
  min-height: 100vh;
}

/* Sparkle decorations */
.sparkle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.9) 0%, transparent 70%);
  animation: sparkle-float 6s ease-in-out infinite;
  pointer-events: none;
}

.sparkle-1 { width: 8px; height: 8px; top: 15%; left: 10%; animation-delay: 0s; }
.sparkle-2 { width: 5px; height: 5px; top: 30%; right: 15%; animation-delay: 1.5s; }
.sparkle-3 { width: 10px; height: 10px; top: 60%; left: 25%; animation-delay: 3s; }
.sparkle-4 { width: 6px; height: 6px; bottom: 25%; right: 20%; animation-delay: 2s; }
.sparkle-5 { width: 8px; height: 8px; top: 70%; right: 40%; animation-delay: 4s; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) scale(1.4); opacity: 1; }
}

/* =============================
   BONUS BADGE
   ============================= */
.bonus-badge {
  animation: pulseGold 2s ease-in-out infinite;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 28px 10px rgba(212,160,23,0.7); }
}

/* =============================
   CTA BUTTON GLOW
   ============================= */
.btn-glow {
  box-shadow: 0 0 16px 4px rgba(212,160,23,0.5);
}
.btn-glow:hover {
  box-shadow: 0 0 32px 10px rgba(212,160,23,0.8);
}

/* =============================
   MARQUEE
   ============================= */
.marquee-track {
  animation: marquee 35s linear infinite;
  will-change: transform;
}

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

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

/* =============================
   GAME CARDS
   ============================= */
.game-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.3);
}

/* =============================
   STEP BADGES
   ============================= */
.step-badge {
  box-shadow: 0 4px 16px rgba(212,160,23,0.5);
  transition: transform 0.2s ease;
}

/* =============================
   FAQ
   ============================= */
.faq-item {
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(212,160,23,0.5);
}

/* =============================
   TABLE SCROLL (mandatory)
   ============================= */
.prose-casino .prose-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 1.5em 0;
  border-radius: 0.5rem;
}

.prose-casino .prose-table-scroll table {
  margin-top: 0;
  margin-bottom: 0;
}

/* =============================
   PROSE STYLING
   ============================= */
.prose-casino {
  color: #f5f0e0;
  font-size: 1rem;
  line-height: 1.75;
}

.prose-casino h1 {
  color: #d4a017;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.prose-casino h2 {
  color: #d4a017;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,160,23,0.3);
  padding-bottom: 0.3rem;
}

.prose-casino h3 {
  color: #f0c430;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose-casino p {
  margin-bottom: 1rem;
  color: #f5f0e0;
}

.prose-casino a {
  color: #d4a017;
  text-decoration: underline;
  transition: color 0.2s;
}
.prose-casino a:hover {
  color: #f0c430;
}

.prose-casino ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose-casino ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose-casino li {
  margin-bottom: 0.4rem;
  color: #f5f0e0;
}

.prose-casino strong {
  color: #f0c430;
  font-weight: 700;
}

.prose-casino blockquote {
  border-left: 4px solid #d4a017;
  padding-left: 1rem;
  color: #a8b8a4;
  font-style: italic;
  margin: 1.5rem 0;
}

.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.prose-casino thead {
  background: #0d5c3a;
  color: #d4a017;
}
.prose-casino th, .prose-casino td {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(13,92,58,0.5);
  text-align: left;
}
.prose-casino tbody tr:nth-child(even) {
  background: rgba(14,45,28,0.5);
}
.prose-casino tbody tr:hover {
  background: rgba(13,92,58,0.3);
}

/* Ensure overflow-x on tables inside prose --*/
.prose-casino .overflow-x-auto {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* =============================
   PARALLAX UTILITY
   ============================= */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* =============================
   MOBILE-SPECIFIC
   ============================= */
@media (max-width: 640px) {
  .hero-section {
    min-height: 90vh;
  }
  .bonus-badge {
    padding: 1rem;
  }
  h1 {
    font-size: 2rem !important;
  }
}

/* =============================
   SCROLLBAR STYLING
   ============================= */
::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #061a10;
}
::-webkit-scrollbar-thumb {
  background: #d4a017;
  border-radius: 2px;
}
