/* ============================================================
   BetSider Casino – Custom CSS
   Color Palette:
     --dark:    #0a0f0d
     --darker:  #060b08
     --emerald: #00a86b
     --green:   #00c97a
     --gold:    #d4a017
     --gold-l:  #f0c040
     --surface: #111a14
     --card:    #162019
     --border:  #1e3028
     --text:    #e8f0eb
     --muted:   #8aab94
============================================================ */

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

body {
  overflow-x: hidden;
  word-break: break-word;
}

/* ---- Typography ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Logo ---- */
.casino-logo-text {
  background: linear-gradient(135deg, #f0c040 0%, #00c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary {
  background: linear-gradient(135deg, #d4a017 0%, #f0c040 50%, #00c97a 100%);
  color: #0a0f0d;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #f0c040;
  border: 2px solid #f0c040;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #f0c040;
  color: #0a0f0d;
  transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero-bg {
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
}
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(6,11,8,0.80) 0%,
    rgba(10,15,13,0.65) 50%,
    rgba(6,11,8,0.90) 100%
  );
}

/* ---- Particles ---- */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: float-particle linear infinite;
}
.particle-1 { width:6px; height:6px; background:#f0c040; left:10%; top:20%; animation-duration:8s; animation-delay:0s; }
.particle-2 { width:4px; height:4px; background:#00c97a; left:30%; top:60%; animation-duration:12s; animation-delay:2s; }
.particle-3 { width:8px; height:8px; background:#f0c040; left:70%; top:30%; animation-duration:10s; animation-delay:1s; }
.particle-4 { width:5px; height:5px; background:#00a86b; left:85%; top:70%; animation-duration:9s; animation-delay:3s; }
.particle-5 { width:7px; height:7px; background:#d4a017; left:50%; top:50%; animation-duration:14s; animation-delay:0.5s; }

@keyframes float-particle {
  0%   { transform: translateY(0) scale(1); opacity: 0.18; }
  50%  { transform: translateY(-40px) scale(1.2); opacity: 0.32; }
  100% { transform: translateY(0) scale(1); opacity: 0.18; }
}

/* ---- Bonus Badge ---- */
.bonus-badge-inner {
  background: linear-gradient(135deg, rgba(212,160,23,0.18) 0%, rgba(0,168,107,0.14) 100%);
  border: 2px solid rgba(240,192,64,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(212,160,23,0.25), 0 0 80px rgba(0,201,122,0.10);
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 40px rgba(212,160,23,0.25), 0 0 80px rgba(0,201,122,0.10); }
  50%       { box-shadow: 0 0 60px rgba(212,160,23,0.45), 0 0 120px rgba(0,201,122,0.22); }
}

/* ---- Review Cards ---- */
.review-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,201,122,0.12);
}

/* ---- Promo Cards ---- */
.promo-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.15);
}

/* ---- Step Cards ---- */
.step-badge {
  background: linear-gradient(135deg, #d4a017 0%, #f0c040 100%);
  color: #0a0f0d;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(212,160,23,0.4);
}
.step-card:hover .step-badge {
  box-shadow: 0 0 32px rgba(212,160,23,0.65);
}

/* ---- Marquee / Game Strip ---- */
.marquee-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.game-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,201,122,0.18);
}

/* ---- Provider Word Cloud ---- */
.provider-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,168,107,0.12);
  border: 1px solid rgba(0,201,122,0.25);
  color: #8aab94;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
  cursor: default;
  line-height: 1.4;
}
.provider-tag:hover {
  color: #f0c040;
  background: rgba(212,160,23,0.15);
}

/* ---- FAQ ---- */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] {
  border-color: rgba(0,201,122,0.4);
}
.faq-item[open] summary {
  color: #00c97a;
}

/* ---- Tables ---- */
.prose-casino .prose-table-scroll,
.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,
.prose-table-scroll table {
  margin-top: 0;
  margin-bottom: 0;
}

/* ---- Prose Styling ---- */
.prose-casino {
  color: #e8f0eb;
  line-height: 1.75;
  font-size: 1rem;
  word-break: break-word;
}
.prose-casino h1,
.prose-casino h2,
.prose-casino h3,
.prose-casino h4 {
  color: #f0c040;
  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; border-bottom: 1px solid #1e3028; padding-bottom: 0.3em; }
.prose-casino h3 { font-size: 1.2rem; }
.prose-casino p  { margin-bottom: 1em; }
.prose-casino a  { color: #00c97a; text-decoration: underline; transition: color 0.2s; }
.prose-casino a:hover { color: #f0c040; }
.prose-casino ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.prose-casino ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1em; }
.prose-casino li { margin-bottom: 0.4em; }
.prose-casino blockquote {
  border-left: 4px solid #00a86b;
  padding-left: 1em;
  color: #8aab94;
  font-style: italic;
  margin: 1.5em 0;
}
.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.prose-casino thead tr {
  background: #162019;
  color: #f0c040;
}
.prose-casino th,
.prose-casino td {
  border: 1px solid #1e3028;
  padding: 0.6em 0.9em;
  text-align: left;
}
.prose-casino tbody tr:hover {
  background: rgba(0,168,107,0.08);
}
.prose-casino code {
  background: #162019;
  color: #f0c040;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}
.prose-casino pre {
  background: #162019;
  padding: 1em;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1em;
}
.prose-casino strong { color: #f0c040; font-weight: 700; }
.prose-casino em { color: #8aab94; }
.prose-casino hr { border-color: #1e3028; margin: 2em 0; }

/* ---- Scrollbar styling ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0f0d; }
::-webkit-scrollbar-thumb { background: #1e3028; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #00a86b; }

/* ---- Parallax wrapper ---- */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* ---- Focus ring ---- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #00c97a;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Utility ---- */
.text-shadow-gold {
  text-shadow: 0 0 20px rgba(212,160,23,0.6);
}
