/* YokoCasino Custom CSS */
:root {
  --navy: #0b1a2e;
  --navy-mid: #122040;
  --navy-light: #1a2f55;
  --gold: #c9a84c;
  --gold-light: #f0cc6a;
  --gold-pale: #f5e4a0;
  --cream: #f8f4ec;
  --white: #ffffff;
  --text-on-navy: #f0e8d0;
  --text-muted: #a8b8d0;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0.5rem var(--gold), 0 0 1rem var(--gold); }
  50% { box-shadow: 0 0 1.5rem var(--gold-light), 0 0 3rem var(--gold-light); }
}

@keyframes parallaxShift {
  from { background-position: center 0%; }
  to { background-position: center 20%; }
}

.animate-fadeinup { animation: fadeInUp 0.7s ease both; }
.animate-glow { animation: glowPulse 2.5s ease-in-out infinite; }

.marquee-wrapper { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* Prose styles */
.prose { color: var(--text-on-navy); line-height: 1.8; font-size: 1rem; }
.prose h2 {
  color: var(--gold-light);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
}
.prose h3 {
  color: var(--gold-pale);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p { margin-bottom: 1.1rem; }
.prose a { color: var(--gold-light); text-decoration: underline; }
.prose a:hover { color: var(--gold-pale); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img { max-width: 100%; height: auto; border-radius: 0.5rem; margin: 1.5rem 0; }

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.prose table th {
  background: var(--navy-light);
  color: var(--gold-light);
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid var(--gold);
}
.prose table td {
  padding: 0.55rem 1rem;
  border: 1px solid var(--navy-light);
  color: var(--text-on-navy);
  background: var(--navy-mid);
}
.prose table tr:hover td { background: var(--navy-light); }

/* Nav */
.nav-link {
  color: var(--text-on-navy);
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 0.3rem;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold-light); background: rgba(201,168,76,0.1); }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.45); }

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gold);
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* Cards */
.casino-card {
  background: var(--navy-mid);
  border: 1px solid var(--gold);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }

/* Section divider */
.section-divider { border: none; border-top: 1px solid var(--gold); opacity: 0.3; margin: 2rem 0; }

/* Step badge */
.step-badge {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Game card */
.game-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  width: 200px;
  transition: transform 0.2s;
}
.game-card:hover { transform: translateY(-3px); }
.game-card img { width: 100%; height: 120px; object-fit: cover; }

/* Mobile menu */
#mobile-menu {
  background: var(--navy);
  border-top: 1px solid var(--gold);
}

/* Provider cloud */
.provider-tag {
  background: var(--navy-light);
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  display: inline-block;
}

/* Overflow wrapper for tables in layouts */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
