html {
  overflow-x: hidden;
}

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

body {
  background-color: #0a0a1a;
  color: #f3f4f6;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* =========================================
   NEON COLORS & CSS VARIABLES
   ========================================= */
:root {
  --neon-cyan: #00f5ff;
  --neon-violet: #bf00ff;
  --neon-dark: #0a0a1a;
  --neon-darker: #050510;
  --neon-card: #0f0f2a;
  --neon-border: #1a1a3e;
  --cyan-400: #22d3ee;
  --violet-400: #a78bfa;
}

/* =========================================
   NEON LIGHT TRAILS (Hero BG)
   ========================================= */
.neon-trail-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.4;
  animation: trailMove1 6s ease-in-out infinite;
  border-radius: 100%;
  filter: blur(1px);
}

.neon-trail-2 {
  position: absolute;
  bottom: 30%;
  right: -10%;
  width: 50%;
  height: 2px;
  background: linear-gradient(270deg, transparent, var(--neon-violet), transparent);
  opacity: 0.4;
  animation: trailMove2 8s ease-in-out infinite;
  border-radius: 100%;
  filter: blur(1px);
}

@keyframes trailMove1 {
  0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.4; }
  50% { transform: translateX(20%) scaleX(1.2); opacity: 0.7; }
}

@keyframes trailMove2 {
  0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.4; }
  50% { transform: translateX(-20%) scaleX(1.1); opacity: 0.6; }
}

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

@keyframes bonusGlow {
  0% { box-shadow: 0 0 15px rgba(0,245,255,0.3), 0 0 30px rgba(0,245,255,0.1); }
  100% { box-shadow: 0 0 25px rgba(191,0,255,0.4), 0 0 50px rgba(191,0,255,0.15); }
}

/* =========================================
   CTA PRIMARY GLOW
   ========================================= */
.cta-primary {
  animation: ctaGlow 2s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { box-shadow: 0 0 10px rgba(6,182,212,0.5), 0 0 20px rgba(6,182,212,0.2); }
  100% { box-shadow: 0 0 20px rgba(139,92,246,0.5), 0 0 40px rgba(139,92,246,0.2); }
}

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

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px 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 10px 30px rgba(0,245,255,0.1);
}

/* =========================================
   STEP CARDS
   ========================================= */
.step-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--neon-border);
  background: var(--neon-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  border-color: var(--cyan-400);
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
}

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

.review-block:hover {
  box-shadow: 0 0 25px rgba(0,245,255,0.08);
}

/* =========================================
   PROVIDER WORD CLOUD
   ========================================= */
.provider-cloud {
  align-items: baseline;
  line-height: 1.8;
}

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

.provider-tag:hover {
  text-shadow: 0 0 10px currentColor;
}

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

.faq-item:hover {
  border-color: rgba(34,211,238,0.4);
}

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

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

/* =========================================
   SCROLLBAR HIDE (game strip)
   ========================================= */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

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

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

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

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

/* =========================================
   PROSE / SINGLE PAGE STYLES
   ========================================= */
.prose-casino {
  color: #d1d5db;
  line-height: 1.75;
  font-size: 1rem;
}

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

.prose-casino h2 {
  color: #22d3ee;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  border-bottom: 1px solid #1a1a3e;
  padding-bottom: 0.5rem;
}

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

.prose-casino h4 {
  color: #22d3ee;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

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

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

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

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

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

.prose-casino li {
  margin-bottom: 0.4rem;
  color: #d1d5db;
}

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

.prose-casino em {
  color: #a78bfa;
}

.prose-casino blockquote {
  border-left: 4px solid #22d3ee;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-style: italic;
  background: #0f0f2a;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1rem;
}

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

.prose-casino table thead th {
  background: #0f0f2a;
  color: #22d3ee;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 1px solid #1a1a3e;
  text-align: left;
}

.prose-casino table tbody td {
  padding: 0.65rem 1rem;
  border: 1px solid #1a1a3e;
  color: #d1d5db;
}

.prose-casino table tbody tr:nth-child(even) {
  background: #0f0f2a;
}

.prose-casino table tbody tr:hover {
  background: #1a1a3e;
}

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

.prose-casino code {
  background: #0f0f2a;
  color: #22d3ee;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.prose-casino pre {
  background: #050510;
  border: 1px solid #1a1a3e;
  border-radius: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose-casino pre code {
  background: none;
  color: #d1d5db;
  padding: 0;
}

/* =========================================
   MANDATORY PROSE TABLE SCROLL CLASSES
   ========================================= */
.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;
}

/* =========================================
   HEADER / NAV
   ========================================= */
#main-header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

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

/* =========================================
   GENERAL UTILITY
   ========================================= */
.max-w-8xl {
  max-width: 1440px;
}

/* =========================================
   FOOTER
   ========================================= */
footer a {
  transition: color 0.2s ease;
}

/* =========================================
   RESPONSIVE TABLES IN HOMEPAGE
   ========================================= */
.overflow-x-auto {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
