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

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

/* =============================================
   NEON GLOW EFFECTS
============================================= */
.neon-text-cyan {
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.7), 0 0 30px rgba(0, 245, 255, 0.4);
}

.neon-text-violet {
  color: #bf00ff;
  text-shadow: 0 0 10px rgba(191, 0, 255, 0.7), 0 0 30px rgba(191, 0, 255, 0.4);
}

.neon-btn {
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.neon-btn:hover {
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.7), 0 8px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position: relative;
}

.hero-bg {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  will-change: transform;
}

.neon-trail-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f5ff, transparent);
  opacity: 0.4;
  animation: trailMove 4s ease-in-out infinite;
}

.neon-trail-2 {
  position: absolute;
  bottom: 30%;
  right: -10%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bf00ff, transparent);
  opacity: 0.3;
  animation: trailMove 5s ease-in-out infinite reverse;
}

@keyframes trailMove {
  0%, 100% { transform: translateX(-20px); opacity: 0.2; }
  50% { transform: translateX(20px); opacity: 0.5; }
}

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

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3), 0 0 30px rgba(0, 245, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.5), 0 0 60px rgba(191, 0, 255, 0.25);
  }
}

/* =============================================
   MARQUEE ANIMATION
============================================= */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

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

/* =============================================
   GAME CARDS
============================================= */
.game-card {
  flex-shrink: 0;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

/* =============================================
   PROMO CARDS
============================================= */
.promo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 245, 255, 0.1);
}

/* =============================================
   STEP CARDS
============================================= */
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-badge {
  animation: float 3s ease-in-out infinite;
}

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

/* =============================================
   WORD CLOUD
============================================= */
.word-cloud {
  line-height: 1.8;
}

.provider-tag {
  display: inline-block;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
  cursor: default;
}

.provider-tag:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

/* =============================================
   FAQ
============================================= */
.faq-trigger {
  cursor: pointer;
}

.faq-item {
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 245, 255, 0.3);
}

/* =============================================
   REVIEW BLOCKS
============================================= */
.review-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =============================================
   PROSE STYLES
============================================= */
.prose-casino {
  color: #d1d5db;
  max-width: 100%;
}

.prose-casino h1 {
  color: #ffffff;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prose-casino h2 {
  color: #00f5ff;
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.prose-casino p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

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

.prose-casino ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #00f5ff;
  font-size: 0.6rem;
  top: 0.3rem;
}

.prose-casino ol {
  counter-reset: list-counter;
  padding-left: 0;
  margin-bottom: 1rem;
}

.prose-casino ol li {
  counter-increment: list-counter;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.prose-casino ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  color: #00f5ff;
  font-weight: 700;
}

.prose-casino a {
  color: #00f5ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

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

.prose-casino table th {
  background-color: rgba(0, 245, 255, 0.1);
  color: #00f5ff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.prose-casino table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(139, 0, 255, 0.1);
  color: #d1d5db;
}

.prose-casino table tr:hover td {
  background-color: rgba(139, 0, 255, 0.05);
}

.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-casino blockquote {
  border-left: 3px solid #00f5ff;
  padding-left: 1rem;
  color: #9ca3af;
  font-style: italic;
  margin: 1.5rem 0;
}

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

::-webkit-scrollbar-track {
  background: #05091a;
}

::-webkit-scrollbar-thumb {
  background: #8b00ff;
  border-radius: 3px;
}

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

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

/* =============================================
   CTA BUTTONS
============================================= */
.cta-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -60%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

.cta-secondary {
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.cta-secondary:hover {
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
}

/* =============================================
   HEADER
============================================= */
#site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#site-header.scrolled {
  background: rgba(5, 9, 26, 0.99) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* =============================================
   RESPONSIVE UTILITIES
============================================= */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .bonus-badge {
    padding: 1.25rem;
  }

  .marquee-track {
    animation-duration: 20s;
  }
}

/* =============================================
   ANIMATION UTILITIES
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   SECTION DIVIDERS
============================================= */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f5ff, transparent);
  opacity: 0.3;
  margin: 0;
}

/* Sticky header scroll effect */
window.addEventListener('scroll', function() {
  var header = document.getElementById('site-header');
  if (window.scrollY > 50) {
    header.classList.add('scrolled');
  } else {
    header.classList.remove('scrolled');
  }
});
