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

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

/* =====================
   NEON TEXT GLOW
===================== */
.neon-text-glow {
  text-shadow:
    0 0 10px rgba(0, 245, 255, 0.8),
    0 0 30px rgba(0, 245, 255, 0.5),
    0 0 60px rgba(0, 245, 255, 0.3);
}

.neon-amber-glow {
  text-shadow:
    0 0 10px rgba(255, 179, 0, 0.8),
    0 0 30px rgba(255, 179, 0, 0.5);
}

/* =====================
   LIGHT TRAILS
===================== */
.light-trail {
  position: absolute;
  width: 2px;
  border-radius: 999px;
  animation: trailFloat 8s ease-in-out infinite;
  opacity: 0.4;
}

.light-trail-1 {
  height: 200px;
  background: linear-gradient(to bottom, transparent, #00f5ff, transparent);
  left: 20%;
  top: 10%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.light-trail-2 {
  height: 300px;
  background: linear-gradient(to bottom, transparent, #ffb300, transparent);
  left: 60%;
  top: 5%;
  animation-delay: 2s;
  animation-duration: 9s;
}

.light-trail-3 {
  height: 180px;
  background: linear-gradient(to bottom, transparent, #39ff14, transparent);
  left: 80%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 6s;
}

@keyframes trailFloat {
  0%, 100% {
    transform: translateY(0) scaleX(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) scaleX(1.5);
    opacity: 0.7;
  }
}

/* =====================
   JUNGLE PATTERN BG
===================== */
.jungle-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 179, 0, 0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(0, 245, 255, 0.02) 30px,
      rgba(0, 245, 255, 0.02) 31px
    );
}

/* =====================
   BONUS BADGE ANIMATION
===================== */
.bonus-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(255, 179, 0, 0.4),
      0 0 40px rgba(255, 179, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 35px rgba(255, 179, 0, 0.7),
      0 0 70px rgba(255, 179, 0, 0.35);
  }
}

/* =====================
   MARQUEE / GAME STRIP
===================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  padding: 0.5rem 0;
}

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

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

/* =====================
   CTA BUTTON ANIMATIONS
===================== */
.cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.cta-primary:hover::after {
  left: 130%;
}

/* =====================
   PROMO CARD HOVER
===================== */
.promo-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
}

/* =====================
   STEP CARD
===================== */
.step-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

/* =====================
   GAME CARD
===================== */
.game-card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
}

/* =====================
   PROVIDER TAG
===================== */
.provider-tag {
  font-size: 0.7rem;
  transition: all 0.2s ease;
}

/* =====================
   FAQ ANSWER TRANSITION
===================== */
.faq-answer {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* =====================
   PROSE CASINO STYLES
===================== */
.prose-casino {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 0.9375rem;
}

.prose-casino h1 {
  color: #00f5ff;
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.prose-casino h2 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #1a4a2e;
  padding-bottom: 0.5rem;
}

.prose-casino h3 {
  color: #ffb300;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.prose-casino ul li {
  color: #9ca3af;
  padding: 0.25rem 0 0.25rem 1.5rem;
  position: relative;
}

.prose-casino ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00f5ff;
}

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

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

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

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

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

.prose-casino table th {
  background-color: #0d2518;
  color: #00f5ff;
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #1a4a2e;
}

.prose-casino table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(26, 74, 46, 0.4);
  color: #9ca3af;
  vertical-align: top;
}

.prose-casino table tr:hover td {
  background-color: rgba(17, 45, 30, 0.6);
}

.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;
}

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

::-webkit-scrollbar-track {
  background: #0a1a0f;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #00f5ff;
}

/* =====================
   PARALLAX HERO
===================== */
@media (max-width: 768px) {
  .hero-parallax {
    background-attachment: scroll !important;
  }
}

/* =====================
   RESPONSIVE NAV
===================== */
@media (max-width: 1023px) {
  #mobile-menu {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* =====================
   OVERFLOW TABLE WRAPPER
===================== */
.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
