/* =============================================================
   BearoCasino – Custom CSS
   Theme: Deep Emerald & Gold — Premium Wilderness Casino
   ============================================================= */

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

/* ---- CSS Custom Properties ---- */
:root {
  --color-dark-950: #050d0a;
  --color-dark-900: #0a1a14;
  --color-dark-800: #0f261c;
  --color-dark-700: #153322;
  --color-dark-600: #1c4230;
  --color-emerald-900: #064e3b;
  --color-emerald-800: #065f46;
  --color-emerald-700: #047857;
  --color-emerald-600: #059669;
  --color-emerald-500: #10b981;
  --color-emerald-400: #34d399;
  --color-gold-500: #f59e0b;
  --color-gold-400: #fbbf24;
  --color-gold-300: #fcd34d;
  --radius-card: 1rem;
  --shadow-gold: 0 0 20px rgba(251, 191, 36, 0.25);
  --shadow-emerald: 0 0 20px rgba(52, 211, 153, 0.2);
  --transition-base: 0.25s ease;
}

/* ---- Base Reset Enhancements ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-dark-950);
  color: #f1f5f9;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- Wilderness Texture Pattern ---- */
.wilderness-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(5, 13, 10, 0.88) 0%,
    rgba(6, 78, 59, 0.75) 40%,
    rgba(5, 13, 10, 0.90) 100%
  );
}

/* ---- Parallax base (JS-enhanced via class) ---- */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ---- Bonus Badge ---- */
.bonus-badge {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(5, 13, 10, 0.95) 100%);
  border: 2px solid var(--color-gold-400);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(251, 191, 36, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.bonus-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(251, 191, 36, 0.05) 60deg,
    transparent 120deg
  );
  animation: rotate-glow 8s linear infinite;
  pointer-events: none;
}

@keyframes rotate-glow {
  to { transform: rotate(360deg); }
}

/* ---- CTA Buttons ---- */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--color-gold-500) 0%, #d97706 100%);
  color: #0a1a14;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-400) 0%, var(--color-gold-500) 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transform: translateY(-1px);
  color: #0a1a14;
}

.cta-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-gold-500) 0%, #d97706 100%);
  color: #050d0a;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
  letter-spacing: 0.025em;
}

.cta-btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
  color: #050d0a;
}

.cta-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-emerald-400);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 2px solid var(--color-emerald-600);
  transition: all var(--transition-base);
}

.cta-btn-hero-secondary:hover {
  background: var(--color-emerald-900);
  border-color: var(--color-emerald-400);
  transform: translateY(-2px);
  color: var(--color-emerald-400);
}

/* ---- Navigation Links ---- */
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  color: #d1fae5;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold-400);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-gold-300);
  background: rgba(5, 150, 105, 0.1);
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #d1fae5;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--color-gold-300);
  background: rgba(5, 150, 105, 0.12);
  border-left-color: var(--color-gold-400);
}

/* ---- Footer Links ---- */
.footer-link {
  color: #6ee7b7;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-gold-300);
  text-decoration: underline;
}

/* ---- Payment Badge ---- */
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  background: rgba(6, 78, 59, 0.3);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 0.5rem;
  color: #d1fae5;
  transition: all var(--transition-base);
}

.payment-badge:hover {
  background: rgba(6, 78, 59, 0.5);
  border-color: var(--color-gold-400);
  box-shadow: var(--shadow-gold);
}

/* ---- Section Heading ---- */
.section-heading-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald-400);
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-title span {
  color: var(--color-gold-400);
}

.section-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Review Cards ---- */
.review-card {
  background: linear-gradient(135deg, rgba(15, 38, 28, 0.8) 0%, rgba(10, 26, 20, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(6, 78, 59, 0.5) 0%, rgba(5, 13, 10, 0.3) 100%);
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
}

.review-card-body {
  padding: 1.5rem;
}

/* ---- Prose Styles for Review Cards ---- */
.prose-casino-sm p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.prose-casino-sm p:last-child {
  margin-bottom: 0;
}

.prose-casino-sm ul {
  margin-bottom: 1rem;
}

.prose-casino-sm table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.prose-casino-sm table thead tr {
  background: rgba(6, 78, 59, 0.6);
}

.prose-casino-sm table th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  color: var(--color-gold-300);
  font-weight: 600;
  font-size: 0.8rem;
}

.prose-casino-sm table td {
  padding: 0.5rem 0.75rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}

/* ---- Provider Word Cloud ---- */
.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}

.provider-tag {
  display: inline-block;
  color: var(--color-emerald-400);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color var(--transition-base), text-shadow var(--transition-base);
  cursor: default;
  line-height: 1.3;
}

.provider-tag:nth-child(3n+1) { color: var(--color-emerald-400); }
.provider-tag:nth-child(3n+2) { color: var(--color-gold-400); }
.provider-tag:nth-child(3n+3) { color: #93c5fd; }

.provider-tag:hover {
  text-shadow: 0 0 12px currentColor;
  transform: scale(1.05);
}

/* ---- Promo Cards ---- */
.promo-card {
  background: linear-gradient(145deg, rgba(15, 38, 28, 0.9) 0%, rgba(5, 13, 10, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-emerald-600), var(--color-gold-400), var(--color-emerald-600));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 16px 40px rgba(5, 13, 10, 0.5), var(--shadow-gold);
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(6, 78, 59, 0.4);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 0.875rem;
  transition: all var(--transition-base);
}

.promo-card:hover .promo-card-icon {
  background: rgba(6, 78, 59, 0.7);
  box-shadow: var(--shadow-emerald);
}

.promo-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.promo-card-copy {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.65;
  flex-grow: 1;
}

.promo-card-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--color-emerald-700) 0%, var(--color-emerald-900) 100%);
  color: #d1fae5;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(52, 211, 153, 0.3);
  transition: all var(--transition-base);
}

.promo-card-cta:hover {
  background: linear-gradient(135deg, var(--color-emerald-600) 0%, var(--color-emerald-800) 100%);
  box-shadow: var(--shadow-emerald);
  color: #ffffff;
  transform: translateX(3px);
}

/* ---- Game Cards (Marquee) ---- */
.marquee-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--color-dark-800), transparent);
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--color-dark-800), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  padding: 1rem 0;
}

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

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

.game-card {
  flex-shrink: 0;
  width: 200px;
  background: rgba(15, 38, 28, 0.8);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-gold-400);
  box-shadow: 0 12px 30px rgba(5, 13, 10, 0.6), var(--shadow-gold);
}

.game-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--color-gold-500), #d97706);
  color: #050d0a;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
  transform: translateY(8px);
}

.game-card:hover .game-card-btn {
  transform: translateY(0);
}

.game-card-btn:hover {
  background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.game-card-name {
  padding: 0.625rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Step Cards ---- */
.step-card {
  background: linear-gradient(145deg, rgba(15, 38, 28, 0.8) 0%, rgba(5, 13, 10, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(5, 13, 10, 0.5);
  border-color: rgba(251, 191, 36, 0.2);
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-gold-500) 0%, #d97706 100%);
  color: #050d0a;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  flex-shrink: 0;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(6, 78, 59, 0.4);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 0.875rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.step-copy {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.65;
  flex-grow: 1;
}

.step-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-emerald-700), var(--color-emerald-900));
  color: #d1fae5;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(52, 211, 153, 0.25);
  transition: all var(--transition-base);
}

.step-cta:hover {
  background: linear-gradient(135deg, var(--color-emerald-600), var(--color-emerald-800));
  box-shadow: var(--shadow-emerald);
  color: #ffffff;
}

/* ---- FAQ ---- */
.faq-item {
  background: rgba(15, 38, 28, 0.6);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(251, 191, 36, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 600;
  gap: 1rem;
  transition: color var(--transition-base), background var(--transition-base);
}

.faq-question:hover {
  color: var(--color-gold-300);
  background: rgba(5, 150, 105, 0.07);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-gold-400);
  background: rgba(5, 150, 105, 0.1);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-emerald-500);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-gold-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Prose styling for single pages ---- */
.prose-casino {
  color: #cbd5e1;
  max-width: 72ch;
}

.prose-casino h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-gold-400);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.prose-casino h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

.prose-casino h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-emerald-400);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose-casino p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.prose-casino a {
  color: var(--color-emerald-400);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.prose-casino a:hover {
  color: var(--color-gold-400);
}

.prose-casino ul, .prose-casino ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose-casino li {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.prose-casino ul li::marker {
  color: var(--color-emerald-500);
}

.prose-casino ol li::marker {
  color: var(--color-gold-400);
  font-weight: 700;
}

.prose-casino blockquote {
  border-left: 3px solid var(--color-gold-400);
  padding: 0.75rem 1.25rem;
  background: rgba(6, 78, 59, 0.15);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  color: #e2e8f0;
  font-style: italic;
}

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

.prose-casino em {
  color: var(--color-gold-300);
}

.prose-casino code {
  background: rgba(6, 78, 59, 0.3);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 0.25rem;
  padding: 0.1em 0.4em;
  font-size: 0.875em;
  color: var(--color-emerald-400);
}

.prose-casino pre {
  background: rgba(5, 13, 10, 0.8);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose-casino pre code {
  background: transparent;
  border: none;
  padding: 0;
}

/* Wide markdown tables: horizontal scroll on narrow viewports */
.prose-casino .prose-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(52, 211, 153, 0.12);
}

.prose-casino .prose-table-scroll table {
  width: max-content;
  min-width: 100%;
  margin-bottom: 0;
}

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

.prose-casino table thead tr {
  background: rgba(6, 78, 59, 0.5);
}

.prose-casino table th {
  padding: 0.625rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-gold-300);
  border-bottom: 1px solid rgba(52, 211, 153, 0.25);
}

.prose-casino table td {
  padding: 0.625rem 1rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}

.prose-casino table tr:hover td {
  background: rgba(5, 150, 105, 0.05);
}

.prose-casino hr {
  border: none;
  border-top: 1px solid rgba(52, 211, 153, 0.2);
  margin: 2rem 0;
}

/* ---- Scroll animations ---- */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.6s ease forwards;
}

/* ---- Parallax JS helper ---- */
.parallax-hero {
  transition: transform 0.05s linear;
}

/* ---- Glow Pulse ---- */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.65), 0 0 50px rgba(251, 191, 36, 0.2); }
}

.glow-gold {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse-emerald {
  0%, 100% { box-shadow: 0 0 10px rgba(52, 211, 153, 0.2); }
  50% { box-shadow: 0 0 25px rgba(52, 211, 153, 0.5), 0 0 50px rgba(52, 211, 153, 0.15); }
}

.glow-emerald {
  animation: glow-pulse-emerald 2.5s ease-in-out infinite;
}

/* ---- Shimmer loading animation ---- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 25%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.02) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark-900);
}

::-webkit-scrollbar-thumb {
  background: var(--color-emerald-800);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-emerald-700);
}

/* ---- Selection ---- */
::selection {
  background: rgba(5, 150, 105, 0.35);
  color: #ffffff;
}

/* ---- Focus outline ---- */
:focus-visible {
  outline: 2px solid var(--color-gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Responsive Helpers ---- */
@media (max-width: 640px) {
  .section-title {
    font-size: 1.65rem;
  }

  .hero-section {
    min-height: 100svh;
  }

  .game-card {
    width: 160px;
  }

  .marquee-track {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
