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

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

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

/* =====================
   FIRE TEXT GRADIENT
======================== */
.fire-text {
  background: linear-gradient(135deg, #e85d04 0%, #ffd60a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================
   HERO SECTION
======================== */
.hero-section {
  position: relative;
  min-height: 100vh;
}

/* =====================
   EMBER PARTICLES
======================== */
.ember-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd60a, #e85d04);
  animation: emberSpark 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(232,93,4,0.8), 0 0 20px rgba(255,214,10,0.4);
}

.ember-particle:nth-child(2) { animation-delay: 0.5s; }
.ember-particle:nth-child(3) { animation-delay: 1s; }
.ember-particle:nth-child(4) { animation-delay: 1.5s; }
.ember-particle:nth-child(5) { animation-delay: 2s; }
.ember-particle:nth-child(6) { animation-delay: 2.5s; }

@keyframes emberSpark {
  0%, 100% { opacity: 0.3; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.4) translateY(-8px); }
}

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

/* =====================
   BONUS BADGE
======================== */
.bonus-badge-inner {
  background: linear-gradient(135deg, rgba(18,18,31,0.95), rgba(26,26,46,0.95));
  border: 2px solid #ffd60a;
  box-shadow: 0 0 30px rgba(255,214,10,0.3), inset 0 0 20px rgba(232,93,4,0.1);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(232,93,4,0.4), 0 0 20px rgba(255,214,10,0.2); }
  50% { box-shadow: 0 0 30px rgba(232,93,4,0.9), 0 0 60px rgba(255,214,10,0.5), inset 0 0 20px rgba(255,186,8,0.1); }
}

/* =====================
   CTA BUTTONS
======================== */
.cta-primary {
  background: linear-gradient(135deg, #ffd60a 0%, #f48c06 100%);
  color: #0a0a14;
  box-shadow: 0 4px 20px rgba(255,214,10,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255,214,10,0.6);
}

.cta-secondary {
  border: 2px solid #e85d04;
  color: #e85d04;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
  background: #e85d04;
  color: #ffffff;
}

/* =====================
   STEP CARDS
======================== */
.step-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e85d04 0%, #ffd60a 100%);
  color: #0a0a14;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232,93,4,0.5);
  z-index: 10;
}

.step-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

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

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,93,4,0.2);
}

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

.game-card:hover {
  box-shadow: 0 8px 30px rgba(232,93,4,0.4);
}

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

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

/* =====================
   PROVIDERS WORD CLOUD
======================== */
.provider-tag {
  color: #90e0ef;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.2s ease;
  cursor: default;
  display: inline-block;
}

.provider-tag:hover {
  color: #ffd60a;
}

/* =====================
   PAYMENT TABLE
======================== */
.payment-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
}

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

.faq-item.open {
  border-color: #ffd60a;
}

.faq-item.open .faq-icon {
  color: #ffd60a;
}

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

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

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

/* =====================
   EMBER PATTERN BG
======================== */
.ember-pattern-bg {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232,93,4,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,214,10,0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(2,62,138,0.1) 0%, transparent 50%);
}

/* =====================
   FOOTER
======================== */
.age-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e85d04;
  color: white;
  font-weight: 900;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-icon-badge {
  width: 2.5rem;
  height: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.payment-icon-badge:hover {
  border-color: rgba(255,214,10,0.5);
}

/* =====================
   NAV
======================== */
.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e85d04, #ffd60a);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* =====================
   PROSE CASINO
======================== */
.prose-casino {
  color: #cbd5e1;
  max-width: none;
}

.prose-casino h1,
.prose-casino h2,
.prose-casino h3,
.prose-casino h4 {
  background: linear-gradient(135deg, #e85d04 0%, #ffd60a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

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

.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.5rem;
  line-height: 1.65;
}

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

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

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

.prose-casino blockquote {
  border-left: 4px solid #e85d04;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
}

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

.prose-casino th {
  background: #1a1a2e;
  color: #ffd60a;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #e85d04;
}

.prose-casino td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #cbd5e1;
}

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

/* Mandatory prose table scroll class */
.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;
  min-width: 480px;
}

.prose-casino th,
.prose-casino td {
  white-space: nowrap;
}

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

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

/* =====================
   LANGUAGE DROPDOWN
======================== */
.lang-dropdown {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #ffd60a;
}

/* =====================
   RESPONSIVE HELPERS
======================== */
@media (max-width: 640px) {
  .hero-section {
    min-height: 100dvh;
  }

  .bonus-badge-inner {
    padding: 1.25rem;
  }
}

/* =====================
   SELECTION
======================== */
::selection {
  background: rgba(232,93,4,0.3);
  color: #ffd60a;
}
