html {
  overflow-x: hidden;
}

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

body {
  overflow-x: hidden;
  background-color: #0a0f0a;
  color: #f3f4f6;
}

/* ================================
   BUTTONS
================================ */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #d4a017 0%, #f0c84a 50%, #a87c10 100%);
  color: #0a0f0a;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #f0c84a;
  border: 2px solid #d4a017;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.2);
}

/* ================================
   HERO
================================ */
.hero-bg {
  background-color: #0a0f0a;
}

/* ================================
   BONUS BADGE
================================ */
.bonus-badge {
  background: linear-gradient(135deg, rgba(13, 92, 46, 0.6) 0%, rgba(22, 34, 22, 0.9) 100%);
  border: 2px solid rgba(212, 160, 23, 0.5);
  backdrop-filter: blur(10px);
  animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 20px rgba(212,160,23,0.3), 0 0 40px rgba(212,160,23,0.1); }
  50% { box-shadow: 0 0 40px rgba(212,160,23,0.5), 0 0 80px rgba(212,160,23,0.2); }
}

/* ================================
   PROMO CARDS
================================ */
.promo-card {
  background: linear-gradient(135deg, #162216, #0f1a0f);
  border: 1px solid #1e3a1e;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 12px 40px rgba(13, 92, 46, 0.3);
}

/* ================================
   GAME CARDS
================================ */
.game-card {
  background: #162216;
  border: 1px solid #1e3a1e;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 8px 30px rgba(16, 183, 89, 0.2);
}

/* ================================
   MARQUEE
================================ */
.marquee-container {
  position: relative;
}

.marquee-track {
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

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

/* ================================
   STEP CARDS
================================ */
.step-card {
  background: linear-gradient(135deg, #162216, #0f1a0f);
  border: 1px solid #1e3a1e;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16, 183, 89, 0.2);
  border-color: rgba(16, 183, 89, 0.3);
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #f0c84a);
  color: #0a0f0a;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.5);
}

/* ================================
   REVIEW BLOCKS
================================ */
.review-block {
  background: linear-gradient(135deg, #162216, #0f1a0f);
  border: 1px solid #1e3a1e;
  transition: all 0.3s ease;
}

.review-block:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 8px 30px rgba(16, 183, 89, 0.15);
}

/* ================================
   PROVIDER CLOUD
================================ */
.provider-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(13, 92, 46, 0.25);
  border: 1px solid rgba(16, 183, 89, 0.3);
  color: #a7f3d0;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: default;
}

.provider-tag:hover {
  background: rgba(13, 92, 46, 0.5);
  border-color: rgba(212, 160, 23, 0.5);
  color: #f0c84a;
}

.provider-tag-lg {
  font-size: 0.875rem;
  padding: 0.45rem 1rem;
}

.provider-tag-sm {
  font-size: 0.65rem;
  padding: 0.25rem 0.65rem;
}

/* ================================
   FAQ
================================ */
.faq-item {
  background: #162216;
  transition: all 0.3s ease;
}

.faq-item.faq-open {
  border-color: rgba(212, 160, 23, 0.4);
}

.faq-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}

.faq-toggle:hover {
  background: rgba(13, 92, 46, 0.2);
}

.faq-answer {
  border-top: 1px solid #1e3a1e;
}

/* ================================
   PROSE CASINO
================================ */
.prose-casino {
  color: #d1d5db;
  max-width: 65ch;
  line-height: 1.75;
}

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

.prose-casino h1 { font-size: 2rem; }
.prose-casino h2 { font-size: 1.5rem; }
.prose-casino h3 { font-size: 1.25rem; }

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

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

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

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

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

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

.prose-casino blockquote {
  border-left: 4px solid #d4a017;
  padding-left: 1em;
  color: #9ca3af;
  font-style: italic;
  margin: 1.5em 0;
}

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

.prose-casino hr {
  border-color: #1e3a1e;
  margin: 2em 0;
}

.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.5em 0;
  background: #162216;
  border-radius: 0.5rem;
  overflow: hidden;
}

.prose-casino th {
  background: #0f1a0f;
  color: #d4a017;
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #1e3a1e;
}

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

.prose-casino tr:last-child td {
  border-bottom: none;
}

.prose-casino tr:hover td {
  background: rgba(13, 92, 46, 0.1);
}

/* Table scroll wrapper for prose content */
.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
================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* ================================
   PARALLAX UTILITY
================================ */
.parallax-slow {
  will-change: transform;
}

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

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

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

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

/* ================================
   SHIMMER ANIMATION
================================ */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(240,200,74,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ================================
   UTILITIES
================================ */
.gold-text {
  background: linear-gradient(135deg, #d4a017, #f0c84a, #a87c10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emerald-glow {
  box-shadow: 0 0 20px rgba(16, 183, 89, 0.4);
}

.gold-glow {
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

/* ================================
   RESPONSIVE IMAGES
================================ */
img {
  max-width: 100%;
  height: auto;
}

/* ================================
   ACCESSIBILITY
================================ */
:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 2px;
}
