/* ============================================================
   JASMIN SLOTS — Master Design System
   Palette: deep navy #1A0E3D · royal purple #2D1B69 · gold #FFB800
   Font: Poppins (Google)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Nunito', sans-serif;
  background: #1A0E3D;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: #FFB800; text-decoration: none; transition: color 0.3s; }
a:hover { color: #FFD700; }

/* ---------- CSS Custom Properties ---------- */
:root {
  --c-primary:    #1A0E3D;
  --c-secondary:  #2D1B69;
  --c-accent:     #3B2A8A;
  --c-purple-mid: #4C3AA0;
  --c-gold:       #FFB800;
  --c-gold-light: #FFD700;
  --c-gold-dark:  #D4960A;
  --c-white:      #FFFFFF;
  --c-text-muted: #C5AEF0;
  --c-card:       rgba(255,255,255,0.07);
  --c-card-hover: rgba(255,255,255,0.12);
  --c-border:     rgba(255,184,0,0.25);
  --gradient-bg:    linear-gradient(160deg, #1A0E3D 0%, #2D1B69 55%, #1A0E3D 100%);
  --gradient-gold:  linear-gradient(135deg, #FFB800 0%, #FFD700 50%, #D4960A 100%);
  --gradient-card:  linear-gradient(145deg, rgba(59,42,138,0.6) 0%, rgba(26,14,61,0.9) 100%);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-gold:  0 0 24px rgba(255,184,0,0.45);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.35);
  --transition:   0.3s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
.text-gold    { color: var(--c-gold); }
.text-muted   { color: var(--c-text-muted); }
.text-center  { text-align: center; }
.text-white   { color: #fff; }

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section--sm {
  padding: 3rem 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 14, 61, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  padding: 0.85rem 0;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 48px;
  width: auto;
}
.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.main-nav a {
  color: #D4C6F0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--c-gold);
  background: rgba(255,184,0,0.1);
}
.main-nav a.active {
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.btn-header-login {
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-header-login:hover {
  background: rgba(255,184,0,0.15);
  color: var(--c-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,184,0,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,14,61,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  transition: all 0.25s;
}
.mobile-nav a:hover { color: var(--c-gold); background: rgba(255,184,0,0.12); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: var(--gradient-gold);
  color: #1A0E3D;
  box-shadow: 0 4px 18px rgba(255,184,0,0.5);
  animation: glowPulse 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,0.7);
  color: #1A0E3D;
}

.btn-secondary {
  background: transparent;
  color: var(--c-gold);
  border: 2px solid var(--c-gold);
}
.btn-secondary:hover {
  background: rgba(255,184,0,0.15);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* Shimmer overlay on CTA */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shimmerSweep 3s ease-in-out infinite;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://customer-assets.emergentagent.com/job_7fcdd80d-3e31-4907-b816-5d12617811eb/artifacts/f5us9uws_jasmin-hero-bg-2.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,14,61,0.88) 0%,
    rgba(26,14,61,0.6) 50%,
    rgba(26,14,61,0.82) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,184,0,0.18);
  border: 1px solid rgba(255,184,0,0.45);
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-bonus-box {
  background: rgba(255,184,0,0.12);
  border: 1.5px solid rgba(255,184,0,0.5);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: inline-block;
  animation: fadeInUp 0.7s 0.3s ease both;
  backdrop-filter: blur(8px);
}
.hero-bonus-amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}
.hero-bonus-spins {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}
.hero-bonus-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 0.25rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounceDown 2s ease-in-out infinite;
  cursor: pointer;
  color: var(--c-gold);
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Floating coins canvas animation (CSS-drawn) */
.coin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 35% 35%, #FFD700 0%, #FFB800 50%, #D4960A 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,184,0,0.6);
  animation: floatCoin var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
  opacity: 0.75;
  pointer-events: none;
  z-index: 2;
}

/* ---------- USP STRIP ---------- */
.usp-strip {
  background: rgba(255,184,0,0.07);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 1.25rem 0;
}
.usp-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.usp-item .usp-icon {
  font-size: 1.3rem;
}
.usp-item span:last-child {
  color: var(--c-gold);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  display: inline-block;
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title {
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-title .gold { color: var(--c-gold); }
.section-desc {
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ---------- GAMES GRID ---------- */
.games-section { background: var(--c-primary); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
a.game-card,
.game-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-secondary);
  border: 1px solid var(--c-border);
  transition: transform 0.3s, box-shadow 0.3s;
  group: true;
}
a.game-card:hover,
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,184,0,0.3);
  border-color: var(--c-gold);
  z-index: 2;
}
.game-card-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover .game-card-img { transform: scale(1.08); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,14,61,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-play-btn {
  display: block;
  background: var(--gradient-gold);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.game-card-info {
  padding: 0.6rem 0.75rem 0.75rem;
}
.game-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 0.7rem;
  color: var(--c-gold);
  font-weight: 500;
}

/* Hot badge */
.game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--gradient-gold);
  color: var(--c-primary);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.games-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- FEATURE CARDS ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-gold);
}
.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin: 0;
}

/* ---------- BONUS CARDS ---------- */
.bonus-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255,184,0,0.2);
}
.bonus-card.featured {
  border-color: var(--c-gold);
  box-shadow: 0 0 40px rgba(255,184,0,0.15);
}
.bonus-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}
.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.bonus-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.bonus-tag {
  display: inline-block;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.35);
  color: var(--c-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* ---------- PROVIDERS STRIP ---------- */
.providers-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.provider-pill {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: all 0.25s;
}
.provider-pill:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(255,184,0,0.1);
}

/* ---------- INFO / ARTICLE SECTIONS ---------- */
.content-section { max-width: 900px; margin: 0 auto; }
.content-section h2 { color: var(--c-gold); margin-top: 2.5rem; margin-bottom: 1rem; }
.content-section h3 { color: #fff; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.content-section p  { color: var(--c-text-muted); margin-bottom: 1rem; }
.content-section ul { color: var(--c-text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.content-section ul li { margin-bottom: 0.4rem; }
.content-section strong { color: #fff; }

/* ---------- TABLE ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.styled-table thead {
  background: var(--c-accent);
}
.styled-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--c-gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.styled-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--c-text-muted);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(255,255,255,0.04); }
.styled-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  transition: color 0.25s;
  user-select: none;
}
.faq-question:hover { color: var(--c-gold); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1.25rem;
}

/* ---------- PAYMENT METHODS GRID ---------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.payment-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s;
}
.payment-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,184,0,0.2);
}
.payment-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.payment-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.payment-time {
  font-size: 0.7rem;
  color: var(--c-gold);
}

/* ---------- SPORTS SECTION ---------- */
.sports-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.sports-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.sports-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ---------- INFO BOXES ---------- */
.info-box {
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box.info-blue {
  background: rgba(59,42,138,0.5);
  border-color: rgba(100,80,200,0.4);
}
.info-box p { margin: 0; color: var(--c-text-muted); font-size: 0.9rem; }
.info-box strong { color: var(--c-gold); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-accent) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,184,0,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p  { color: var(--c-text-muted); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- LIVE CASINO CARDS ---------- */
.live-table-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.live-table-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255,184,0,0.2);
}
.live-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #E42B2B;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.live-table-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.live-table-info { padding: 1rem 1.25rem; }
.live-table-name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.live-table-provider { font-size: 0.75rem; color: var(--c-gold); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0D0722;
  border-top: 1px solid var(--c-border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-col .site-logo { margin-bottom: 1rem; }
.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--c-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 860px;
  line-height: 1.6;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-responsible {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.rg-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1A0E3D 0%, #2D1B69 60%, #3B2A8A 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.page-hero .hero-badge { animation: none; }
.page-hero h1 { animation: none; color: #fff; }
.page-hero p {
  color: var(--c-text-muted);
  max-width: 640px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  animation: none;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb span { opacity: 0.5; }

/* ---------- STAT PILLS ---------- */
.stats-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.stat-pill {
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- KEYFRAME ANIMATIONS ---------- */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,184,0,0.5); }
  50%       { box-shadow: 0 4px 36px rgba(255,184,0,0.85); }
}
@keyframes shimmerSweep {
  0%   { left: -100%; }
  60%, 100% { left: 150%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatCoin {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0.7; }
  50%  { transform: translateY(-40px) rotate(180deg); opacity: 1; }
  100% { transform: translateY(0)   rotate(360deg); opacity: 0.7; }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  33%  { transform: translateY(-80px) translateX(20px) scale(1.1); opacity: 0.8; }
  66%  { transform: translateY(-40px) translateX(-15px) scale(0.9); opacity: 0.6; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- MISC UTILITIES ---------- */
.d-flex { display: flex; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem; }
.mt-1   { margin-top: 0.5rem; }
.mt-2   { margin-top: 1rem; }
.mt-3   { margin-top: 1.5rem; }
.mb-0   { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ---- Two-col layout for article pages ---- */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sidebar-card {
  background: var(--gradient-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-card .bonus-amount { font-size: 2rem; }
.sidebar-cta { margin-top: 1.25rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-header-login { display: none; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-strip-inner { gap: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .stats-row { gap: 0.75rem; }
  .stat-pill { padding: 0.5rem 1rem; }
}
@media (max-width: 400px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   STICKY BOTTOM BANNER (static HTML pages)
   ============================================================ */
.sticky-bonus-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: linear-gradient(90deg, #0D0722 0%, #1A0E3D 25%, #2D1B69 50%, #1A0E3D 75%, #0D0722 100%);
  border-top: 2px solid #FFB800;
  box-shadow: 0 -6px 40px rgba(255,184,0,0.35);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  padding: 0.75rem 1rem;
}
.sticky-bonus-bar.visible { transform: translateY(0); }
.sbb-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.sbb-left { display: flex; flex-direction: column; gap: 0.15rem; }
.sbb-tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #FFB800; opacity: 0.9; }
.sbb-offer { display: flex; align-items: baseline; gap: 0.5rem; }
.sbb-pct { font-size: 1.6rem; font-weight: 900; background: linear-gradient(135deg,#FFB800,#FFD700,#D4960A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.sbb-details { font-size: 0.95rem; color: #fff; font-weight: 600; }
.sbb-details strong { color: #FFB800; }
.sbb-cta { flex-shrink: 0; white-space: nowrap; font-size: 0.9rem !important; padding: 0.65rem 1.5rem !important; }
.sbb-close { flex-shrink: 0; background: none; border: none; color: rgba(255,255,255,0.45); font-size: 1.1rem; cursor: pointer; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; }
.sbb-close:hover { color: #fff; }

@media (max-width: 640px) {
  .sbb-inner { flex-wrap: wrap; justify-content: center; }
  .sbb-pct { font-size: 1.2rem; }
  .sbb-cta { width: 100%; justify-content: center; text-align: center; }
}
/* Extra padding on body so sticky bar doesn't cover content */
body { padding-bottom: 80px; }

/* ============================================================
   HERO ENHANCEMENT (standalone index.html)
   ============================================================ */
.hero-container { position: relative; z-index: 3; padding-top: 3rem; padding-bottom: 3.5rem; }

.hero-exclusive-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255,184,0,0.25), rgba(255,215,0,0.15), rgba(255,184,0,0.25));
  border: 1.5px solid #FFB800;
  color: #FFB800;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 1.25rem; border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: flashBadge 2.5s ease-in-out infinite, fadeInUp 0.6s ease both;
}
@keyframes flashBadge {
  0%, 100% { box-shadow: 0 0 8px rgba(255,184,0,0.4); }
  50%       { box-shadow: 0 0 22px rgba(255,184,0,0.9), 0 0 40px rgba(255,184,0,0.3); }
}
.hero-bonus-showcase {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255,184,0,0.15) 0%, rgba(255,215,0,0.08) 50%, rgba(255,140,0,0.12) 100%);
  border: 2px solid #FFB800;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.7s 0.3s ease both, glowPulseStrong 3s ease-in-out infinite;
  overflow: hidden;
}
.hero-bonus-showcase::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-20deg);
  animation: showcaseShimmer 3s 1s ease-in-out infinite;
}
@keyframes showcaseShimmer {
  0%        { transform: translateX(-100%) skewX(-20deg); }
  60%, 100% { transform: translateX(300%) skewX(-20deg); }
}
@keyframes glowPulseStrong {
  0%, 100% { box-shadow: 0 0 30px rgba(255,184,0,0.35), 0 8px 40px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 60px rgba(255,184,0,0.7), 0 8px 60px rgba(255,184,0,0.2); }
}
.hbs-lamp { font-size: 3.5rem; animation: lampFloat 3s ease-in-out infinite; flex-shrink: 0; filter: drop-shadow(0 0 12px rgba(255,184,0,0.8)); }
@keyframes lampFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-8px) rotate(5deg); }
}
.hbs-body { position: relative; z-index: 2; }
.hbs-top-line { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #FFB800; margin-bottom: 0.3rem; }
.hbs-amount { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; background: linear-gradient(135deg, #FFD700 0%, #FFB800 40%, #FF8C00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.05; animation: goldPulse 2s ease-in-out infinite; }
@keyframes goldPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.25); } }
.hbs-amount .hbs-up { font-size: 0.55em; font-weight: 600; opacity: 0.85; }
.hbs-spins { font-size: 1.35rem; font-weight: 800; color: #fff; margin-top: 0.25rem; }
.hbs-spins span { color: #FFB800; }
.hbs-tag { font-size: 0.7rem; color: rgba(197,174,240,0.85); margin-top: 0.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; font-size: 0.8rem; color: rgba(197,174,240,0.8); font-weight: 600; animation: fadeInUp 0.7s 0.6s ease both; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.3rem; }
@media (max-width: 640px) {
  .hero-bonus-showcase { flex-direction: column; text-align: center; gap: 0.75rem; }
  .hbs-lamp { font-size: 2.5rem; }
}
