html {
  overflow-x: hidden;
}

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

/* =======================
   PROSE STYLING
   ======================= */
.prose-casino {
  color: #d1d5db;
  max-width: 100%;
  line-height: 1.75;
}

.prose-casino h1 {
  font-family: Georgia, Cambria, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.2;
}

.prose-casino h2 {
  font-family: Georgia, Cambria, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fcd34d;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #1a3a24;
  padding-bottom: 0.5rem;
}

.prose-casino h3 {
  font-family: Georgia, Cambria, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #34d399;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

.prose-casino ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #9ca3af;
}

.prose-casino ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
}

.prose-casino ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose-casino ol li {
  margin-bottom: 0.5rem;
  color: #9ca3af;
}

.prose-casino a {
  color: #34d399;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose-casino a:hover {
  color: #fbbf24;
}

.prose-casino strong {
  color: #e5e7eb;
  font-weight: 600;
}

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

.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.prose-casino table th {
  background: #0f2318;
  color: #fbbf24;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #1a3a24;
}

.prose-casino table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1a3a24;
  color: #9ca3af;
}

.prose-casino table tr:hover td {
  background: #0f2318;
}

/* Scrollable table wrapper for prose content */
.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;
}

/* =======================
   HERO
   ======================= */
.hero-bg {
  background-color: #050e09;
}

.bonus-glow {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), 0 0 80px rgba(212, 175, 55, 0.05);
}

/* =======================
   MARQUEE
   ======================= */
.marquee-container {
  overflow: hidden;
  position: relative;
}

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

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

/* =======================
   PARALLAX
   ======================= */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.float-animation {
  animation: float-slow 6s ease-in-out infinite;
}

/* =======================
   GAME CARD
   ======================= */
.game-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.game-card:hover {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15);
}

/* =======================
   PROMO CARD
   ======================= */
.promo-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.promo-card:hover {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
}

/* =======================
   STEP CARD
   ======================= */
.step-card {
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

/* =======================
   CTA BUTTONS
   ======================= */
.cta-primary {
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5);
}

/* =======================
   NAV
   ======================= */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #d4af37;
  transition: left 0.3s, right 0.3s;
  border-radius: 2px;
}

.nav-link:hover::after {
  left: 8px;
  right: 8px;
}

/* =======================
   FAQ
   ======================= */
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotate-90 {
  transform: rotate(90deg);
}

/* =======================
   RESPONSIVE TABLES
   ======================= */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
}

table {
  min-width: 480px;
}

@media (max-width: 768px) {
  .prose-casino h1 {
    font-size: 1.75rem;
  }

  .prose-casino h2 {
    font-size: 1.4rem;
  }
}

/* =======================
   SHIMMER / GOLD BORDER
   ======================= */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(90deg, #d4af37 0%, #fbbf24 40%, #d4af37 60%, #92400e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* =======================
   SCROLLBAR
   ======================= */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #050e09;
}

::-webkit-scrollbar-thumb {
  background: #1a3a24;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}
