/* ============================================================
   NightLuck Casino — Custom CSS
   NightLuck Neon Midnight Theme
============================================================ */

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

body {
  overflow-x: hidden;
  word-break: break-word;
  background-color: #050A18;
  color: #f1f5f9;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ============================================================
   NEON TEXT UTILITIES
============================================================ */
.neon-text-cyan {
  color: #00F0FF;
  text-shadow: 0 0 20px rgba(0,240,255,0.5), 0 0 40px rgba(0,240,255,0.2);
}

.neon-text-violet {
  color: #9B30FF;
  text-shadow: 0 0 20px rgba(155,48,255,0.5), 0 0 40px rgba(155,48,255,0.2);
}

.neon-text-pink {
  color: #FF2D78;
  text-shadow: 0 0 20px rgba(255,45,120,0.5);
}

/* ============================================================
   NEON TRAILS (Hero Background Animation)
============================================================ */
.neon-trail {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: 0.15;
  animation: trailFloat 8s ease-in-out infinite;
}

.neon-trail-1 {
  width: 600px;
  height: 200px;
  background: linear-gradient(90deg, #00F0FF, transparent);
  top: 20%;
  left: -100px;
  animation-delay: 0s;
}

.neon-trail-2 {
  width: 500px;
  height: 150px;
  background: linear-gradient(90deg, #9B30FF, transparent);
  top: 60%;
  right: -80px;
  animation-delay: 3s;
}

.neon-trail-3 {
  width: 400px;
  height: 120px;
  background: linear-gradient(90deg, #FF2D78, transparent);
  bottom: 10%;
  left: 30%;
  animation-delay: 5s;
}

@keyframes trailFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.15; }
  25% { transform: translateY(-30px) translateX(20px); opacity: 0.25; }
  50% { transform: translateY(-15px) translateX(40px); opacity: 0.2; }
  75% { transform: translateY(-40px) translateX(10px); opacity: 0.3; }
}

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

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,240,255,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(0,240,255,0.6), 0 0 80px rgba(0,240,255,0.2); transform: scale(1.02); }
}

/* ============================================================
   CTA BUTTONS
============================================================ */
.cta-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

/* ============================================================
   STEP BADGE
============================================================ */
.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00F0FF, #00D4E8);
  color: #050A18;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,240,255,0.5);
  z-index: 10;
}

.step-badge-violet {
  background: linear-gradient(135deg, #9B30FF, #7B20DF);
  box-shadow: 0 0 20px rgba(155,48,255,0.5);
}

.step-badge-pink {
  background: linear-gradient(135deg, #FF2D78, #E02060);
  box-shadow: 0 0 20px rgba(255,45,120,0.5);
}

.step-card {
  padding-top: 2.5rem;
}

/* ============================================================
   GAME CARD
============================================================ */
.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(155,48,255,0.15);
}

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

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

/* ============================================================
   PROVIDER WORD CLOUD
============================================================ */
.provider-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0,240,255,0.08);
  border: 1px solid rgba(0,240,255,0.2);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.provider-tag:hover {
  background: rgba(0,240,255,0.15);
  color: #00F0FF;
  border-color: rgba(0,240,255,0.5);
}

.provider-tag-lg {
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  background: rgba(155,48,255,0.08);
  border-color: rgba(155,48,255,0.2);
  color: #a78bfa;
}

.provider-tag-lg:hover {
  background: rgba(155,48,255,0.15);
  color: #9B30FF;
  border-color: rgba(155,48,255,0.5);
}

.provider-tag-sm {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-item {
  transition: border-color 0.3s ease;
}

.faq-item:has(.faq-answer:not(.hidden)) {
  border-color: rgba(0,240,255,0.4);
}

.faq-question {
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover span {
  color: #00F0FF;
}

.faq-answer {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

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

/* ============================================================
   PARALLAX
============================================================ */
.parallax-bg {
  will-change: transform;
  transform: translateZ(0);
}

/* ============================================================
   PROSE CASINO STYLING
============================================================ */
.prose-casino {
  color: #cbd5e1;
  line-height: 1.75;
  max-width: none;
  word-break: break-word;
}

.prose-casino h1,
.prose-casino h2,
.prose-casino h3,
.prose-casino h4 {
  color: #f1f5f9;
  font-weight: 800;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.prose-casino h1 { font-size: 2rem; color: #00F0FF; }
.prose-casino h2 { font-size: 1.5rem; color: #9B30FF; }
.prose-casino h3 { font-size: 1.25rem; color: #00F0FF; }

.prose-casino p {
  margin-bottom: 1.25em;
  color: #94a3b8;
}

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

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

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

.prose-casino ul,
.prose-casino ol {
  margin: 1em 0 1.25em 1.5em;
  color: #94a3b8;
}

.prose-casino li {
  margin-bottom: 0.5em;
}

.prose-casino ul { list-style-type: disc; }
.prose-casino ol { list-style-type: decimal; }

.prose-casino blockquote {
  border-left: 4px solid #00F0FF;
  padding-left: 1rem;
  color: #64748b;
  font-style: italic;
  margin: 1.5em 0;
}

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

.prose-casino th {
  background: #0D1530;
  color: #00F0FF;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #00F0FF;
}

.prose-casino td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1A2545;
}

.prose-casino tr:hover td {
  background: rgba(0,240,255,0.03);
}

.prose-casino hr {
  border: none;
  border-top: 1px solid #1A2545;
  margin: 2em 0;
}

.prose-casino code {
  background: #0D1530;
  color: #00F0FF;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

/* Prose table scroll wrapper */
.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: #080E22;
}

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

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

/* ============================================================
   HEADER NAV LINK ACTIVE STATE
============================================================ */
.nav-link.active {
  color: #00F0FF;
}

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

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

  .bonus-badge > div {
    padding: 1.5rem 2rem;
  }

  .provider-cloud {
    gap: 0.375rem;
  }
}

/* ============================================================
   UTILITY: ASPECT SQUARE
============================================================ */
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* ============================================================
   GLOW PULSE ON INTERACTIVE ELEMENTS
============================================================ */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,240,255,0.3); }
  50% { box-shadow: 0 0 20px rgba(0,240,255,0.7), 0 0 40px rgba(0,240,255,0.3); }
}

.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}