/* =========================================================
   KheloStar — Global Stylesheet v2
   Palette: royal purple + gold + WhatsApp green + hot pink
   Font: Poppins
   Aesthetic: casino royale × Indian palace × modern glass
   ========================================================= */

:root {
  --bg: #12081f;
  --bg-2: #1e0f36;
  --bg-3: #2d1758;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 201, 74, 0.35);
  --text: #ffffff;
  --text-70: rgba(255, 255, 255, 0.78);
  --text-60: rgba(255, 255, 255, 0.62);
  --muted: #a08fb8;
  --gold: #f5c94a;
  --gold-2: #ffb300;
  --gold-3: #ffe08a;
  --gold-glow: rgba(245, 201, 74, 0.35);
  --whatsapp: #25d366;
  --whatsapp-2: #1ea855;
  --pink: #e91e63;
  --pink-2: #ff4785;
  --cyan: #4fd1ff;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-1: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 40px rgba(245, 201, 74, 0.28);
  --max-width: 1200px;
  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background layers — full-page casino atmosphere */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 700px at 15% 0%, rgba(233, 30, 99, 0.18) 0%, transparent 55%),
    radial-gradient(1100px 800px at 90% 10%, rgba(245, 201, 74, 0.10) 0%, transparent 55%),
    radial-gradient(800px 700px at 50% 100%, rgba(79, 209, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #12081f 0%, #1a0d2e 40%, #12081f 100%);
  pointer-events: none;
}

/* Subtle noise / grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-3); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 22px; position: relative; }

/* =========================================================
   HEADER
   ========================================================= */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(18, 8, 31, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-name {
  font-weight: 800; font-size: 22px; letter-spacing: 0.3px;
  background: linear-gradient(90deg, #fff 0%, var(--gold) 60%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.brand-name::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
nav.primary ul {
  list-style: none; padding: 0; margin: 0; display: flex; gap: 26px;
}
nav.primary a {
  color: var(--text-70); font-size: 14.5px; font-weight: 500;
  padding: 6px 0; position: relative;
}
nav.primary a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--pink));
  transition: right .2s;
}
nav.primary a:hover, nav.primary a[aria-current="page"] { color: var(--gold); }
nav.primary a:hover::after, nav.primary a[aria-current="page"]::after { right: 0; }

.header-cta {
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-2));
  color: #fff; padding: 11px 20px;
  border-radius: 12px; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform .15s, box-shadow .15s;
}
.header-cta:hover { color:#fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5); }
.hamburger { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

/* =========================================================
   HERO — split layout with star field, glowing star, deco frame
   ========================================================= */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 201, 74, 0.15), rgba(233, 30, 99, 0.15));
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.eyebrow .spark { color: var(--gold-3); }

h1 {
  font-size: clamp(46px, 7.5vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -1.5px;
  position: relative;
  background: linear-gradient(120deg, #fff 0%, #fff 25%, var(--gold) 55%, var(--gold-3) 75%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
  filter: drop-shadow(0 0 30px rgba(245, 201, 74, 0.25));
}
@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero p.lead {
  font-size: clamp(16.5px, 1.6vw, 19.5px);
  color: var(--text-70);
  max-width: 560px; margin: 0 0 32px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }

.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-2));
  color: #fff; font-weight: 700;
  padding: 16px 30px; border-radius: 14px; font-size: 16px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.cta-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left .6s;
}
.cta-primary:hover::before { left: 130%; }
.cta-primary:hover {
  background: linear-gradient(180deg, #2be07a, var(--whatsapp));
  color:#fff; transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}
.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
  padding: 14px 22px;
  border-radius: 14px; font-weight: 600; font-size: 15px;
  backdrop-filter: blur(8px);
  transition: all .15s;
}
.cta-secondary:hover {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold); transform: translateY(-2px);
}

.trust-bar {
  display: flex; gap: 26px; flex-wrap: wrap;
  color: var(--text-60); font-size: 13.5px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.trust-bar span {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-bar svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Hero right — decorative panel */
.hero-right {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.hero-frame {
  position: absolute; inset: 0;
  border-radius: 28px;
  padding: 3px;
  box-shadow: 0 30px 80px rgba(245, 201, 74, 0.22),
              0 10px 40px rgba(233, 30, 99, 0.18);
  overflow: hidden;
}
.hero-frame::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg,
      rgba(245, 201, 74, 0.65) 0deg,
      rgba(233, 30, 99, 0.55) 90deg,
      rgba(79, 209, 255, 0.45) 180deg,
      rgba(245, 201, 74, 0.65) 270deg,
      rgba(245, 201, 74, 0.65) 360deg);
  animation: rotate-frame 12s linear infinite;
  z-index: 0;
}
@keyframes rotate-frame {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-frame-inner {
  border-radius: 25px;
  background: linear-gradient(160deg, #1a0e35 0%, #2a1259 100%);
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-frame-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
/* When image is missing, decorative placeholder */
.hero-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 201, 74, 0.25), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(233, 30, 99, 0.2), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(79, 209, 255, 0.12), transparent 55%);
}
.hero-placeholder .big-star {
  width: 60%; height: auto;
  animation: pulse-star 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(245, 201, 74, 0.55));
}
@keyframes pulse-star {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

/* Floating decorative orbs around hero */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(30px);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.orb.o1 { width: 120px; height: 120px; background: rgba(245, 201, 74, 0.4); top: -20px; left: -30px; animation-delay: 0s; }
.orb.o2 { width: 90px; height: 90px; background: rgba(233, 30, 99, 0.4); bottom: -20px; right: -20px; animation-delay: 2s; }
.orb.o3 { width: 70px; height: 70px; background: rgba(79, 209, 255, 0.3); top: 40%; right: -30px; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-16px) translateX(6px); }
  66% { transform: translateY(6px) translateX(-8px); }
}

/* Star field — CSS twinkles */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.stars i {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 6px rgba(255,255,255,0.9);
  animation: twinkle 3s ease-in-out infinite;
}
.stars i:nth-child(odd) { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.stars i:nth-child(3n)  { width: 3px; height: 3px; animation-duration: 4.5s; }
.stars i:nth-child(5n)  { width: 1px; height: 1px; opacity: 0.5; animation-duration: 5.5s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* Section wrapper — general */
section { padding: 80px 0; position: relative; }
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.6px;
}
h2 .accent, h1 .accent {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h3 { font-size: 20px; font-weight: 600; margin: 20px 0 10px; color: #fff; }
p { margin: 0 0 14px; color: var(--text-70); }
.section-intro { max-width: 780px; margin-bottom: 40px; color: var(--text-70); font-size: 16.5px; }

/* Section eyebrow chip */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gold); display: inline-block;
}

/* =========================================================
   STATS BAR (marquee-like value props)
   ========================================================= */
.stats-bar {
  background: linear-gradient(90deg, rgba(245, 201, 74, 0.08), rgba(233, 30, 99, 0.08), rgba(245, 201, 74, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num {
  font-size: clamp(28px, 3.5vw, 36px); font-weight: 800;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat .label { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* =========================================================
   PAYMENT STRIP
   ========================================================= */
.payment-strip {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.20);
}
.payment-strip .container { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.payment-strip .label { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.8px; }
.payment-strip img { height: 30px; opacity: 0.88; filter: brightness(1.05); transition: opacity .15s; }
.payment-strip img:hover { opacity: 1; }

/* =========================================================
   AUTHOR CARD
   ========================================================= */
.author-wrap { padding: 44px 0; }
.author-card {
  display: flex; gap: 20px; align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 26px;
  max-width: 760px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.author-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--gold));
}
.author-card img {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(245, 201, 74, 0.35);
  flex-shrink: 0;
}
.author-card .role {
  color: var(--gold); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 4px;
}
.author-card .name { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.author-card p { margin: 0; font-size: 14px; color: var(--text-60); line-height: 1.6; }
.byline-line {
  text-align: center; color: var(--text-60); font-size: 13px;
  margin-top: 18px;
}
.byline-line .dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 10px 3px; vertical-align: middle; }

/* =========================================================
   STEPS (HowTo)
   ========================================================= */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--pink), var(--gold), transparent);
  opacity: 0.35;
  z-index: 0;
}
.step {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.step .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--bg); font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(245, 201, 74, 0.35);
  border: 3px solid var(--bg);
}
.step h3 { margin-top: 0; font-size: 19px; }
.step p { font-size: 14.5px; color: var(--text-70); margin: 0; }

/* =========================================================
   GENERIC CARDS
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, background .2s;
  backdrop-filter: blur(8px);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-gold); background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(245,201,74,0.03)); }
.card:hover::before { opacity: 1; }
.card .icon-box {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 201, 74, 0.18), rgba(233, 30, 99, 0.15));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card .icon-box svg { width: 26px; height: 26px; }
.card h3 { margin-top: 0; font-size: 18.5px; }
.card p { font-size: 14.5px; margin: 0; line-height: 1.6; }
.card a { color: var(--gold); font-weight: 600; }

/* Card variant for casino games with decorative gradient bg */
.card.game {
  padding-top: 88px;
}
.card.game .game-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(245, 201, 74, 0.15); color: var(--gold);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px;
  border: 1px solid var(--border-gold);
}
.card.game .game-visual {
  position: absolute; top: 0; left: 0; right: 0; height: 70px;
  background: radial-gradient(circle at 30% 50%, rgba(245, 201, 74, 0.25), transparent 70%);
  opacity: 0.9;
}
.card.game .game-visual svg { position: absolute; top: 50%; left: 30px; transform: translateY(-50%); width: 40px; height: 40px; color: var(--gold-3); }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent); }
table.compare { width: 100%; border-collapse: collapse; }
table.compare th, table.compare td {
  padding: 16px 22px; text-align: left; font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
table.compare thead th {
  background: rgba(0, 0, 0, 0.35); color: #fff; font-weight: 700;
  font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase;
}
table.compare thead th.brand-col { color: var(--gold); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: rgba(255,255,255,0.02); }
table.compare td.brand-col {
  color: #fff; font-weight: 600;
  background: linear-gradient(90deg, rgba(245,201,74,0.06), rgba(245,201,74,0.02));
  border-left: 2px solid var(--border-gold);
}
table.compare td.brand-col::before {
  content: '✓'; display: inline-block; margin-right: 8px;
  color: var(--gold); font-weight: 800;
}
table.compare td.other-col::before {
  content: '✕'; display: inline-block; margin-right: 8px;
  color: var(--pink); font-weight: 700;
}

/* =========================================================
   SPORTS GRID — hexagon-ish tiles with SVG icons
   ========================================================= */
.sports-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.sport-tile {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 12px; text-align: center;
  transition: all .18s;
  position: relative; overflow: hidden;
}
.sport-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(245,201,74,0.15), transparent 60%);
  opacity: 0; transition: opacity .18s;
}
.sport-tile:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.sport-tile:hover::before { opacity: 1; }
.sport-tile svg { width: 32px; height: 32px; color: var(--gold-3); margin-bottom: 10px; display: block; margin-left: auto; margin-right: auto; position: relative; }
.sport-tile .name { font-size: 13px; color: var(--text-70); position: relative; font-weight: 500; }

/* =========================================================
   VIP SECTION — ornate treatment
   ========================================================= */
.vip-section { position: relative; }
.vip-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 201, 74, 0.10), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(233, 30, 99, 0.08), transparent 40%);
  pointer-events: none;
}
.crown-decoration {
  position: absolute; top: 30px; right: 30px;
  width: 100px; height: 100px; opacity: 0.15; z-index: 0;
  color: var(--gold);
}
.crown-decoration svg { width: 100%; height: 100%; }

/* =========================================================
   BONUS BANNER — ribbon-style
   ========================================================= */
.bonus-banner {
  background: linear-gradient(135deg, rgba(245, 201, 74, 0.18), rgba(233, 30, 99, 0.18));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 38px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.bonus-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 201, 74, 0.35), transparent 60%);
  border-radius: 50%;
}
.bonus-banner::after {
  content: ''; position: absolute; bottom: -40px; left: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.28), transparent 60%);
  border-radius: 50%;
}
.bonus-banner > * { position: relative; }
.bonus-banner .bonus-inner { flex: 1; }
.bonus-banner .amount {
  display: inline-block;
  font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1;
  background: linear-gradient(120deg, var(--gold), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.bonus-banner h3 { font-size: 22px; margin: 0 0 6px; color: #fff; font-weight: 700; }
.bonus-banner p { margin: 0; font-size: 14.5px; }
.bonus-sparkle {
  position: absolute; color: var(--gold-3);
  animation: sparkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px var(--gold));
}
.bonus-sparkle svg { width: 24px; height: 24px; }
.bonus-sparkle.s1 { top: 20px; left: 42%; animation-delay: 0s; }
.bonus-sparkle.s2 { bottom: 30px; right: 20%; animation-delay: 1s; }
.bonus-sparkle.s3 { top: 50%; right: 40%; animation-delay: 2s; }
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.1) rotate(180deg); }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .18s;
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: 16px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; color: var(--gold); font-weight: 300;
  transition: transform .25s;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold); border-radius: 50%;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-70); font-size: 15px; line-height: 1.7; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px 22px;
  position: relative;
  display: flex; flex-direction: column;
}
.review .stars {
  display: inline-flex; gap: 4px; color: var(--gold);
  margin-bottom: 14px; align-items: center;
  line-height: 1;
}
.review .stars svg { width: 15px; height: 15px; display: block; }
.review .quote { font-size: 15px; color: var(--text-70); margin: 0 0 20px; line-height: 1.65; flex: 1; font-style: italic; }
.review .quote::before { content: '“'; color: var(--muted); font-weight: 400; margin-right: 1px; opacity: 0.75; }
.review .quote::after  { content: '”'; color: var(--muted); font-weight: 400; margin-left: 1px; opacity: 0.75; }
.review .who { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; padding-top: 16px; border-top: 1px solid var(--border); }
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: var(--bg); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.review .who .who-text { display: flex; flex-direction: column; line-height: 1.35; }
.review .who strong { color: #fff; font-weight: 600; font-size: 14px; }
.review .who .who-meta { color: var(--muted); font-size: 12.5px; }

/* =========================================================
   18+ BAND
   ========================================================= */
.age-band {
  border-top: 1px solid var(--border); padding: 40px 0;
}
.age-band .container {
  display: flex; align-items: center; gap: 24px;
  justify-content: center; flex-wrap: wrap; text-align: center;
}
.age-badge {
  min-width: 74px; height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.15), transparent 70%);
  border: 3px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; color: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 26px rgba(233, 30, 99, 0.3);
}
.age-band p { max-width: 720px; margin: 0; font-size: 14px; color: var(--text-70); }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  color: var(--text-60);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; margin-bottom: 34px; }
.footer-grid h4 { color: var(--gold); text-transform: uppercase; letter-spacing: 1.8px; font-size: 12px; margin: 0 0 16px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text-60); }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { color: var(--text-60); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}

/* =========================================================
   STICKY WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-2));
  color: #fff;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
  transition: transform .15s;
  animation: pulse-wa 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); color:#fff; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes pulse-wa {
  0%   { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5), 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================================
   CONTENT PAGES (money / legal)
   ========================================================= */
.crumbs { padding: 22px 0 0; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--text-60); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 8px; color: var(--muted); }
.content-page h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 22px 0 14px;
  background: linear-gradient(120deg, #fff 0%, #fff 40%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: left;
  animation: none;
  filter: drop-shadow(0 0 20px rgba(245, 201, 74, 0.2));
}
.content-page .intro { font-size: 17.5px; color: var(--text-70); margin-bottom: 24px; max-width: 820px; line-height: 1.7; }
.content-page section { padding: 26px 0; }
.content-page section h2 { margin-top: 30px; }
.content-page ul, .content-page ol { padding-left: 24px; color: var(--text-70); }
.content-page ul li, .content-page ol li { margin-bottom: 8px; }
.content-page strong { color: #fff; }
.content-page em { color: var(--gold); font-style: normal; font-weight: 600; }
.callout {
  background: linear-gradient(135deg, rgba(245, 201, 74, 0.10), rgba(245, 201, 74, 0.04));
  border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 10px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }
.mid-cta { text-align: center; margin: 40px 0; }

/* Table of contents for money/legal pages */
.toc {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; margin: 30px 0 44px;
  position: relative;
}
.toc::before {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.toc h2 { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 14px; font-weight: 700; }
.toc ol { margin: 0; padding-left: 22px; column-count: 2; column-gap: 40px; }
.toc li { margin-bottom: 8px; color: var(--text-70); font-size: 14.5px; break-inside: avoid; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--gold); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  display: grid; gap: 16px; max-width: 640px; margin: 28px 0;
}
.contact-form label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: #fff; padding: 14px 16px; border-radius: 12px;
  font-family: var(--font); font-size: 15px; outline: none;
  transition: border-color .15s, background .15s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 380px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::before { display: none; }
  .sports-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; position: absolute; top: 72px; left: 0; right: 0; background: rgba(18, 8, 31, 0.98); border-bottom: 1px solid var(--border); }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; padding: 14px 22px; gap: 14px; }
  .hamburger { display: block; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
  .toc ol { column-count: 1; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .sports-row { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  section { padding: 54px 0; }
  .hero { padding: 40px 0 60px; }
  h1 { font-size: clamp(44px, 12vw, 66px); }
  .bonus-banner { padding: 28px; text-align: center; justify-content: center; }
  .bonus-banner .bonus-inner { text-align: center; }
  .author-card { flex-direction: column; text-align: center; }
}
