/* ============================================
   JASMIN SLOTS — Global Stylesheet v2
   jasminslots.nl — Dutch Casino
   ============================================ */

/* --- Design Tokens --- */
:root {
  --js-bg: #1A0F3D;
  --js-surface-1: #0D0720;
  --js-surface-2: #1E0E3A;
  --js-surface-3: #251550;
  --js-brand-purple: #7D53E4;
  --js-brand-navy: #0D0720;
  --js-brand-gold: #FFD700;
  --js-brand-amber: #FFC107;
  --js-text: #FFFFFF;
  --js-text-2: #CFC7E6;
  --js-muted: #9CA3AF;
  --js-on-gold: #1A0F3D;
  --js-stroke: rgba(255,255,255,0.08);
  --js-stroke-gold: rgba(255,215,0,0.35);
  --js-ring: rgba(255,215,0,0.55);
  --js-success: #4ADE80;
  --js-danger: #FF453A;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-1: 0 12px 34px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 0 1px rgba(255,215,0,0.18), 0 12px 36px rgba(0,0,0,0.55);
  --glow-gold: 0 0 0 1px rgba(255,215,0,0.32), 0 0 26px rgba(255,215,0,0.20);
  --glow-purple: 0 0 0 1px rgba(125,83,228,0.28), 0 0 34px rgba(125,83,228,0.35);
  --container: 1120px;
  --pad-x: 16px;
  --font-display: 'Nunito', 'Poppins', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-mono: 'Azeret Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--js-bg);
  color: var(--js-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--js-brand-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--js-brand-amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}

ul, ol { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,215,0,0.20), 0 0 18px rgba(255,215,0,0.16); }
  50% { box-shadow: 0 0 0 1px rgba(255,215,0,0.50), 0 0 40px rgba(255,215,0,0.30); }
}

@keyframes streakSprint {
  0% { transform: translate3d(-120%, 0, 0) rotate(-15deg); opacity: 0; }
  15% { opacity: 0.7; }
  60% { opacity: 0.5; }
  100% { transform: translate3d(120%, 0, 0) rotate(-15deg); opacity: 0; }
}

@keyframes badgeBounce {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  25% { transform: translate3d(0, -10px, 0) rotate(1deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(-0.5deg); }
  75% { transform: translate3d(0, -8px, 0) rotate(0.5deg); }
}

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

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes numberPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes sheenSweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes bonusSlide {
  0% { transform: translateX(100%) scale(0.8); opacity: 0; }
  10% { opacity: 1; }
  45% { transform: translateX(0) scale(1); }
  55% { transform: translateX(0) scale(1); }
  90% { opacity: 1; }
  100% { transform: translateX(-100%) scale(0.8); opacity: 0; }
}

@keyframes coinFloat {
  0% { transform: translateY(0) rotateY(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotateY(180deg); opacity: 1; }
  100% { transform: translateY(0) rotateY(360deg); opacity: 0.8; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,215,0,0.3); box-shadow: 0 0 20px rgba(255,215,0,0.1); }
  50% { border-color: rgba(255,215,0,0.8); box-shadow: 0 0 40px rgba(255,215,0,0.3), 0 0 80px rgba(255,215,0,0.1); }
}

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

/* --- Scroll Reveal System --- */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-animate].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }

/* --- Sticky Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 7, 32, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--js-stroke);
  transition: background-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 7, 32, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: none;
  gap: 24px;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.875rem;
  color: var(--js-text-2);
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--js-brand-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--js-brand-gold);
  color: var(--js-on-gold);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.50), 0 0 38px rgba(255,215,0,0.26);
  color: var(--js-on-gold);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--js-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.open span:first-child { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 7, 32, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 20px;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--js-text-2);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--js-surface-2);
  color: #fff;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero { padding: 120px 0 80px; min-height: 90vh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1200px 500px at 15% 15%, rgba(125,83,228,0.45) 0%, rgba(26,15,61,0.05) 55%, rgba(26,15,61,1) 100%),
    radial-gradient(900px 380px at 85% 25%, rgba(255,215,0,0.15) 0%, rgba(26,15,61,0) 60%),
    linear-gradient(to bottom, rgba(26,15,61,0.2) 0%, rgba(26,15,61,0.65) 55%, var(--js-bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Sprint Streak Effects */
.streak-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.streak {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
  filter: blur(1px);
  animation: streakSprint 4s linear infinite;
}

.streak:nth-child(1) { top: 20%; animation-delay: 0s; animation-duration: 3.5s; }
.streak:nth-child(2) { top: 45%; animation-delay: 1.2s; animation-duration: 4.2s; width: 200px; }
.streak:nth-child(3) { top: 70%; animation-delay: 2.5s; animation-duration: 3.8s; width: 250px; }
.streak:nth-child(4) { top: 85%; animation-delay: 0.8s; animation-duration: 5s; width: 180px; 
  background: linear-gradient(90deg, transparent, rgba(125,83,228,0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s cubic-bezier(0.2,0.7,0.2,1) both;
}

.hero h1 span {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  color: var(--js-text-2);
  margin-top: 8px;
}

@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }

/* ============ ANIMATED BONUS BANNER (go4casino style) ============ */
.bonus-banner-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.bonus-banner-link:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}
.bonus-banner-link:hover .bonus-banner {
  box-shadow: var(--glow-gold);
}
.bonus-banner {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.2,0.7,0.2,1) both;
}

.bonus-banner-inner {
  position: relative;
  padding: 24px 40px 24px 40px;
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(125,83,228,0.08) 50%, rgba(255,215,0,0.06) 100%);
  backdrop-filter: blur(8px);
  animation: badgeBounce 4s ease-in-out infinite, borderGlow 3s ease-in-out infinite;
  overflow: hidden;
}

/* Sparkle dots around the banner */
.bonus-banner-inner::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent, rgba(125,83,228,0.2), transparent);
  background-size: 200% 100%;
  animation: textShimmer 3s linear infinite;
  z-index: -1;
}

/* Inner shimmer sweep */
.bonus-banner-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: sheenSweep 4s ease-in-out infinite;
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--js-brand-gold);
  margin-bottom: 6px;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.bonus-amount .highlight {
  background: linear-gradient(90deg, var(--js-brand-gold), #fff, var(--js-brand-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite;
}

.bonus-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--js-brand-gold);
}

.bonus-sub2 {
  font-size: 0.8rem;
  color: var(--js-text-2);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .bonus-amount { font-size: 2.8rem; }
  .bonus-banner-inner { padding: 28px 56px; }
}

/* Floating sparkle particles */
.sparkle-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--js-brand-gold);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-particle:nth-child(2) { top: 80%; right: 8%; animation-delay: 0.4s; width: 4px; height: 4px; }
.sparkle-particle:nth-child(3) { top: 20%; right: 15%; animation-delay: 0.8s; width: 5px; height: 5px; }
.sparkle-particle:nth-child(4) { bottom: 15%; left: 12%; animation-delay: 1.2s; width: 3px; height: 3px; }
.sparkle-particle:nth-child(5) { top: 50%; left: 2%; animation-delay: 1.6s; width: 4px; height: 4px; background: rgba(125,83,228,0.8); }

/* ============ END ANIMATED BONUS BANNER ============ */

/* CTA Buttons */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.4s cubic-bezier(0.2,0.7,0.2,1) both;
}

@media (min-width: 480px) {
  .cta-row { flex-direction: row; justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--js-brand-gold);
  color: var(--js-on-gold);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  animation: pulseGlow 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
}

.btn-primary:hover::after { animation: sheenSweep 0.6s ease-out; }
.btn-primary:hover { transform: translateY(-2px); color: var(--js-on-gold); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--js-brand-gold);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid var(--js-stroke-gold);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,215,0,0.08);
  transform: translateY(-1px);
  color: var(--js-brand-gold);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--js-muted);
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.6s cubic-bezier(0.2,0.7,0.2,1) both;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounceDown 1.5s ease-in-out infinite;
  color: var(--js-brand-gold);
  font-size: 1.25rem;
}

/* --- Section Styling --- */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section-alt { background: var(--js-surface-1); }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

@media (min-width: 768px) { .section-title h2 { font-size: 2.2rem; } }

.section-title p {
  color: var(--js-text-2);
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto;
}

/* --- Game Cards Grid --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(6, 1fr); } }

.games-grid.large { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .games-grid.large { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .games-grid.large { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .games-grid.large { grid-template-columns: repeat(5, 1fr); } }

.game-card {
  border-radius: var(--radius-lg);
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--js-stroke-gold);
  box-shadow: var(--shadow-gold);
}

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

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

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

.game-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,7,32,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

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

.game-card-body { padding: 12px 14px 14px; }

.game-card-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.game-card-body .provider {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--js-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.game-card-body .play-btn {
  display: block;
  width: 100%;
  padding: 8px;
  text-align: center;
  background: rgba(255,215,0,0.12);
  color: var(--js-brand-gold);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.game-card-body .play-btn:hover {
  background: var(--js-brand-gold);
  color: var(--js-on-gold);
}

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--js-brand-gold), #FFA000);
  color: var(--js-on-gold);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: numberPop 0.6s ease-out both;
}

.step-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--js-surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.step-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--js-text-2); font-size: 0.9rem; }

/* --- Promotions --- */
.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .promos-grid { grid-template-columns: repeat(3, 1fr); } }

.promo-card {
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.promo-card:hover { border-color: var(--js-stroke-gold); }

.promo-card .promo-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.promo-card .promo-icon.gold { background: rgba(255,215,0,0.12); color: var(--js-brand-gold); }
.promo-card .promo-icon.purple { background: rgba(125,83,228,0.20); color: var(--js-brand-purple); }
.promo-card .promo-icon.green { background: rgba(74,222,128,0.12); color: var(--js-success); }

.promo-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.promo-card p { color: var(--js-text-2); font-size: 0.9rem; margin-bottom: 16px; }

.promo-card .promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.promo-card:hover .promo-link { gap: 10px; }

.promo-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,215,0,0.05);
  transition: transform 0.5s ease;
}

.promo-card:hover::before { transform: scale(1.5); }

/* --- Provider Tags --- */
.providers-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.provider-tag {
  display: inline-flex;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--js-muted);
  border: 1px solid var(--js-stroke);
  border-radius: 20px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.provider-tag:hover { border-color: var(--js-stroke-gold); color: var(--js-brand-gold); }

/* --- Payments Table --- */
.payments-table-wrapper {
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.payments-table { width: 100%; border-collapse: collapse; }
.payments-table thead { background: var(--js-surface-3); }

.payments-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.payments-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--js-text-2);
  border-bottom: 1px solid var(--js-stroke);
}

.payments-table tr:last-child td { border-bottom: none; }

.payments-table .method-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payments-table .method-cell i { font-size: 1.3rem; }

.instant-badge { color: var(--js-success); font-weight: 700; }

@media (max-width: 640px) {
  .payments-table-wrapper { overflow-x: auto; }
  .payments-table { min-width: 520px; }
}

/* --- Content Cards --- */
.content-card {
  background: var(--js-surface-1);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

@media (min-width: 768px) { .content-card { padding: 36px 32px; } }

.content-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.content-card .card-header .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.content-card .card-header .icon-box.gold { background: linear-gradient(135deg, var(--js-brand-gold), #e89400); }
.content-card .card-header .icon-box.purple { background: linear-gradient(135deg, var(--js-brand-purple), #5a35c0); }

.content-card h3 { font-size: 1.15rem; font-weight: 800; }

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--js-surface-1);
  border: 1px solid var(--js-stroke);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[data-open="true"] { border-color: var(--js-stroke-gold); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-trigger:hover { color: var(--js-brand-gold); }

.faq-trigger .faq-icon {
  font-size: 0.8rem;
  color: var(--js-muted);
  transition: transform 0.3s ease;
}

.faq-item[data-open="true"] .faq-trigger .faq-icon { transform: rotate(180deg); }

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-panel-inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--js-text-2);
  line-height: 1.7;
}

/* --- SEO Content Block --- */
.seo-content {
  background: var(--js-surface-1);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

@media (min-width: 768px) { .seo-content { padding: 48px 40px; } }

.seo-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; margin-top: 32px; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; margin-top: 24px; }

.seo-content p {
  color: var(--js-text-2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 70ch;
}

.seo-content ul { margin-bottom: 16px; }

.seo-content ul li {
  color: var(--js-text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 4px 0 4px 24px;
  position: relative;
}

.seo-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--js-brand-gold);
}

.seo-content a { font-weight: 700; }

/* --- Footer --- */
.site-footer {
  background: var(--js-surface-1);
  border-top: 1px solid var(--js-stroke);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
  color: var(--js-text-2);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--js-brand-gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--js-text-2);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--js-stroke);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 0.75rem; color: var(--js-muted); line-height: 1.7; }

.footer-bottom .responsible-gaming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-bottom .responsible-gaming span {
  font-size: 0.75rem;
  color: var(--js-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  position: relative;
  padding: 100px 0 48px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px 300px at 50% 30%, rgba(125,83,228,0.35) 0%, transparent 70%),
    radial-gradient(400px 200px at 50% 60%, rgba(255,215,0,0.08) 0%, transparent 60%);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s cubic-bezier(0.2,0.7,0.2,1) both;
}

@media (min-width: 768px) { .page-hero h1 { font-size: 2.8rem; } }

.page-hero p {
  color: var(--js-text-2);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.15s cubic-bezier(0.2,0.7,0.2,1) both;
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-tab {
  padding: 8px 20px;
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: 50px;
  color: var(--js-text-2);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--js-brand-gold);
  color: var(--js-brand-gold);
  background: rgba(255,215,0,0.08);
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover { border-color: var(--js-stroke-gold); transform: translateY(-4px); }

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: rgba(255,215,0,0.12);
  color: var(--js-brand-gold);
}

.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--js-text-2); font-size: 0.9rem; }

/* --- Sports Tags --- */
.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.sport-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-md);
  color: var(--js-text-2);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.sport-tag:hover { border-color: var(--js-stroke-gold); color: #fff; }
.sport-tag i { color: var(--js-brand-gold); }

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); } }

/* --- Security Cards --- */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }

.security-card {
  background: var(--js-surface-2);
  border: 1px solid var(--js-stroke);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
}

.security-card .sec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  background: rgba(255,215,0,0.12);
  color: var(--js-brand-gold);
}

.security-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.security-card p { color: var(--js-text-2); font-size: 0.85rem; }

/* --- Bonus Terms List --- */
.terms-list { margin: 16px 0; }

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--js-text-2);
  font-size: 0.9rem;
}

.terms-list li i { color: var(--js-success); margin-top: 3px; flex-shrink: 0; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

/* --- Focus Styles --- */
:focus-visible { outline: 2px solid var(--js-ring); outline-offset: 2px; }

/* --- Selection --- */
::selection { background: rgba(255,215,0,0.3); color: #fff; }

/* --- Utility Classes --- */
.text-gold { color: var(--js-brand-gold); }
.text-muted { color: var(--js-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* --- Noise Texture --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
