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

*, *::before, *::after {
  box-sizing: border-box;
  word-break: break-word;
}

body {
  background-color: #050a1a;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

/* ===== NEON TEXT ===== */
.neon-text-cyan {
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0,229,255,0.7), 0 0 30px rgba(0,229,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);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00e5ff 0%, #7c3aed 100%);
  color: #050a1a;
  font-weight: 800;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  transition: left 0.4s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0,229,255,0.6), 0 0 60px rgba(124,58,237,0.3);
  transform: translateY(-2px);
  color: #050a1a;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #00e5ff;
  font-weight: 700;
  border-radius: 1rem;
  border: 2px solid #00e5ff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(0,229,255,0.1);
  box-shadow: 0 0 20px rgba(0,229,255,0.4);
  transform: translateY(-2px);
  color: #00e5ff;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #050a1a;
  font-weight: 800;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
  transform: translateY(-2px);
  color: #050a1a;
}

/* ===== HERO ===== */
.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== BONUS BADGE ===== */
.bonus-badge {
  background: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(191,0,255,0.15) 100%);
  border: 2px solid rgba(0,229,255,0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0,229,255,0.2), inset 0 0 30px rgba(191,0,255,0.05);
}

/* ===== STARS BACKGROUND ===== */
.stars-bg {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(0,229,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(191,0,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(0,229,255,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 70%, rgba(255,215,0,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 40%, rgba(0,229,255,0.5) 0%, transparent 100%);
  pointer-events: none;
}

/* ===== CONSTELLATION BG ===== */
.constellation-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%2300e5ff' opacity='0.4'/%3E%3Ccircle cx='150' cy='80' r='1' fill='%23bf00ff' opacity='0.3'/%3E%3Ccircle cx='200' cy='200' r='2' fill='%2300e5ff' opacity='0.5'/%3E%3Ccircle cx='300' cy='100' r='1' fill='white' opacity='0.3'/%3E%3Ccircle cx='350' cy='300' r='1.5' fill='%23ffd700' opacity='0.4'/%3E%3Ccircle cx='100' cy='300' r='1' fill='%23bf00ff' opacity='0.3'/%3E%3Ccircle cx='250' cy='350' r='1' fill='%2300e5ff' opacity='0.3'/%3E%3Cline x1='50' y1='50' x2='150' y2='80' stroke='%2300e5ff' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='150' y1='80' x2='200' y2='200' stroke='%2300e5ff' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='200' y1='200' x2='300' y2='100' stroke='%23bf00ff' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='300' y1='100' x2='350' y2='300' stroke='%23ffd700' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='100' y1='300' x2='200' y2='200' stroke='%2300e5ff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===== PROVIDER CLOUD ===== */
.providers-cloud {
  line-height: 2;
}

.provider-tag {
  cursor: default;
  transition: color 0.3s ease;
  padding: 2px 6px;
  border-radius: 4px;
}

.provider-tag:hover {
  color: #00e5ff !important;
  text-shadow: 0 0 8px rgba(0,229,255,0.5);
}

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

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

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

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

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

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

/* ===== REVIEW BLOCK ===== */
.review-block {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-block:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,0.4);
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

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

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

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.4), inset 0 0 30px rgba(191,0,255,0.05); }
  50% { box-shadow: 0 0 40px rgba(0,229,255,0.8), 0 0 80px rgba(191,0,255,0.3), inset 0 0 30px rgba(191,0,255,0.1); }
}

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

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ===== PARALLAX ===== */
@media (min-width: 768px) {
  .parallax-section {
    background-attachment: fixed;
  }
}

/* ===== PROSE / SINGLE PAGE ===== */
.prose-casino {
  color: #e2e8f0;
  max-width: 100%;
}

.prose-casino h1,
.prose-casino h2,
.prose-casino h3,
.prose-casino h4 {
  color: #00e5ff;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

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

.prose-casino p {
  margin-bottom: 1em;
  line-height: 1.7;
  color: #cbd5e1;
}

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

.prose-casino li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

.prose-casino a {
  color: #00e5ff;
  text-decoration: underline;
}

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

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

.prose-casino blockquote {
  border-left: 3px solid #00e5ff;
  padding-left: 1em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5em 0;
}

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

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

.prose-casino td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #1a3a6e;
  color: #cbd5e1;
}

.prose-casino tr:nth-child(even) td {
  background: rgba(13,31,60,0.5);
}

.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 ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00e5ff, #7c3aed);
  border-radius: 3px;
}

/* ===== FAQ ===== */
.faq-answer {
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE TABLES ===== */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===== MOBILE NAV ===== */
#burger-btn {
  cursor: pointer;
  background: #0d1f3c;
  border: 1px solid #1a3a6e;
}

#burger-btn:hover {
  background: #1a3a6e;
}
