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

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

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

/* ============ BUTTONS ============ */
.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #e5e4e2;
  font-weight: 700;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #d4af37;
  color: #0a0f0d;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.btn-primary-sm {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-sm:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

/* ============ HERO ============ */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(6, 11, 8, 0.75) 0%,
    rgba(6, 11, 8, 0.55) 50%,
    rgba(6, 11, 8, 0.85) 100%
  );
}

.bonus-badge {
  animation: float 4s ease-in-out infinite;
}

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

/* ============ SECTION LABEL ============ */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(212,175,55,0.1));
  border: 1px solid rgba(16,185,129,0.3);
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

/* ============ STEP BADGE ============ */
.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(16,185,129,0.4);
}
.step-badge-gold {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0a0f0d;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* ============ PROVIDER CLOUD ============ */
.provider-tag {
  display: inline-block;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: #8a9e8d;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: default;
}
.provider-tag:hover {
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border-color: rgba(16,185,129,0.5);
}
.provider-tag-gold {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.2);
  color: #b08820;
}
.provider-tag-gold:hover {
  background: rgba(212,175,55,0.15);
  color: #d4af37;
  border-color: rgba(212,175,55,0.5);
}
.provider-tag-lg {
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
}
.provider-tag-sm {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
}

/* ============ 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(16,185,129,0.2);
}

/* ============ PROMO CARD ============ */
.promo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

/* ============ REVIEW CARD ============ */
.review-card {
  transition: transform 0.2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
}

/* ============ FAQ ============ */
.faq-item {
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(16,185,129,0.4);
}
.faq-answer {
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  position: relative;
}
.marquee-inner {
  animation: marquee 30s linear infinite;
  display: inline-flex;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

/* ============ NAV ============ */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 70%;
}

/* ============ AGE BADGE ============ */
.age-badge {
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}

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

/* ============ PROSE STYLING ============ */
.prose-casino {
  color: #c8d8ca;
  line-height: 1.8;
  font-size: 1rem;
}
.prose-casino h1 {
  color: #e5e4e2;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  font-family: Georgia, serif;
}
.prose-casino h2 {
  color: #e5e4e2;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  border-bottom: 1px solid #1f2e22;
  padding-bottom: 0.4rem;
}
.prose-casino h3 {
  color: #d4af37;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-casino p {
  margin-bottom: 1rem;
  color: #a8bfaa;
}
.prose-casino ul, .prose-casino ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #a8bfaa;
}
.prose-casino li {
  margin-bottom: 0.4rem;
}
.prose-casino a {
  color: #10b981;
  text-decoration: underline;
}
.prose-casino a:hover {
  color: #34d399;
}
.prose-casino strong {
  color: #e5e4e2;
  font-weight: 700;
}
.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.prose-casino th {
  background: #111a14;
  color: #10b981;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid #1f2e22;
  font-weight: 600;
}
.prose-casino td {
  padding: 0.6rem 1rem;
  border: 1px solid #1f2e22;
  color: #8a9e8d;
}
.prose-casino tr:nth-child(even) td {
  background: #111a14;
}
.prose-casino blockquote {
  border-left: 3px solid #10b981;
  padding-left: 1rem;
  color: #8a9e8d;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose-casino code {
  background: #162019;
  color: #34d399;
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

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

/* ============ GLOW UTILITY ============ */
.shadow-emerald-glow {
  box-shadow: 0 0 30px rgba(16,185,129,0.4);
}

/* ============ SCROLLBAR STYLING ============ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0f0d;
}
::-webkit-scrollbar-thumb {
  background: #1f2e22;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}
