/* ============================================================
   OzWin Casino — Global Stylesheet  (DARK THEME)
   Brand: deep navy #0A0618, dark card #12082A,
          neon gold #FFD700, neon purple #9B5FFF,
          hot pink #FF3EAF, electric blue #00C6FF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: #0A0618;
  color: #E8DFFF;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --purple:   #9B5FFF;
  --purple-d: #7B2FFF;
  --blue:     #00C6FF;
  --pink:     #FF3EAF;
  --gold:     #FFD700;
  --gold-d:   #E6A800;
  --cream:    #1A0E35;
  --dark:     #E8DFFF;
  --mid:      #B8A0E8;
  --light:    #1E1040;
  --bg:       #0A0618;
  --bg-card:  #12082A;
  --bg-card2: #170C32;
  --border:   rgba(155,95,255,0.18);
  --radius:   16px;
  --radius-lg:28px;
  --shadow:   0 4px 28px rgba(0,0,0,0.55);
  --glow-purple: 0 0 28px rgba(155,95,255,0.6);
  --glow-gold:   0 0 28px rgba(255,215,0,0.7);
  --glow-pink:   0 0 28px rgba(255,62,175,0.6);
  --glow-blue:   0 0 28px rgba(0,198,255,0.6);
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Fredoka One', cursive; line-height: 1.2; color: #F0EAFF; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: #B8A0E8; }

/* ── Gradients ──────────────────────────────────────────── */
.grad-hero    { background: linear-gradient(135deg,#3B0F8A 0%,#8B1A6A 50%,#1A0A3E 100%); }
.grad-purple  { background: linear-gradient(135deg,#7B2FFF,#4A0FAA); }
.grad-gold    { background: linear-gradient(135deg,#FFD700,#FF9500); }
.grad-blue    { background: linear-gradient(135deg,#00C6FF,#0044CC); }
.grad-pink    { background: linear-gradient(135deg,#FF3EAF,#AA1060); }
.grad-section { background: var(--bg); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  letter-spacing: .5px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.03); }

.btn-gold {
  background: linear-gradient(135deg,#FFD700,#FF9500);
  color: #0A0618;
  box-shadow: 0 4px 18px rgba(255,215,0,.55);
}
.btn-gold:hover { box-shadow: var(--glow-gold); }

.btn-purple {
  background: linear-gradient(135deg,#9B5FFF,#FF3EAF);
  color: #fff;
  box-shadow: 0 4px 18px rgba(155,95,255,.5);
}
.btn-purple:hover { box-shadow: var(--glow-purple); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-pink {
  background: linear-gradient(135deg,#FF3EAF,#FF6B6B);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,62,175,.45);
}
.btn-pink:hover { box-shadow: var(--glow-pink); }

/* pulse animation for hero CTA */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 18px rgba(255,215,0,.55), 0 0 0 0 rgba(255,215,0,.4); }
  50%      { box-shadow: 0 4px 28px rgba(255,215,0,.8),  0 0 0 10px rgba(255,215,0,0); }
}
.btn-pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #07030F 0%, #10062A 100%);
  box-shadow: 0 2px 24px rgba(0,0,0,.7), 0 1px 0 rgba(155,95,255,.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  background: linear-gradient(135deg,#FFD700,#FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.logo span { color: #FF3EAF; -webkit-text-fill-color: #FF3EAF; }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: #E0D0FF;
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.12);
  color: #FFD700;
}
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 22px; font-size: .95rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
  transition: .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #08041A;
  padding: 12px 20px 16px;
}
.mobile-nav a {
  color: #C8B8F0;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(155,95,255,.15);
  font-size: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── Age Gate Banner ────────────────────────────────────── */
.age-banner {
  background: linear-gradient(90deg,#1A0840,#2A0A50);
  border-bottom: 1px solid rgba(155,95,255,.3);
  color: #C8B8F0;
  text-align: center;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 700;
}
.age-banner a { color: #FFD700; text-decoration: underline; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #03010A 0%, #0F0525 40%, #1A0840 70%, #2A0A50 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,198,255,.25) 0%,transparent 70%);
  top: -200px; right: -150px;
}
.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,215,0,.2) 0%,transparent 70%);
  bottom: -100px; left: -100px;
}
/* floating dots */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  opacity: .55;
  animation: float-dot linear infinite;
}
@keyframes float-dot {
  0%   { transform: translateY(0) rotate(0deg); opacity:.55; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity:0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,.18);
  border: 1px solid rgba(255,215,0,.45);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .88rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.hero-title { margin-bottom: 12px; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero-title .highlight {
  background: linear-gradient(135deg,#FFD700,#FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-bonus-box {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-bonus-item { display: flex; flex-direction: column; }
.hero-bonus-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.hero-bonus-value { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: #FFD700; line-height: 1.1; }
.hero-bonus-divider { width: 1px; background: rgba(255,255,255,.25); align-self: stretch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-tc { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 12px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: linear-gradient(135deg,rgba(255,255,255,.15),rgba(255,255,255,.05));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35), var(--glow-purple);
  animation: card-float 4s ease-in-out infinite;
}
@keyframes card-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-card-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}
.hero-stars { text-align: center; margin-bottom: 16px; }
.hero-stars .star { font-size: 1.5rem; }
.hero-card-facts { display: flex; flex-direction: column; gap: 10px; }
.hero-card-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .9rem;
}
.hero-card-fact-label { color: rgba(255,255,255,.75); font-weight: 700; }
.hero-card-fact-value { color: #FFD700; font-family: 'Fredoka One', cursive; font-size: 1rem; }
.hero-card-cta { margin-top: 20px; text-align: center; }
.hero-card-cta .btn { width: 100%; justify-content: center; }

/* ── Quick Facts Strip ──────────────────────────────────── */
.quick-facts {
  background: linear-gradient(90deg,#12062A 0%,#1A0840 50%,#0E0520 100%);
  border-top: 1px solid rgba(155,95,255,.25);
  border-bottom: 1px solid rgba(155,95,255,.25);
  padding: 18px 24px;
}
.quick-facts-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.quick-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E8DFFF;
  font-weight: 800;
  font-size: .92rem;
}
.quick-fact-icon { font-size: 1.3rem; }
.quick-fact-divider { width: 1px; height: 24px; background: rgba(155,95,255,.3); }

/* ── Section Wrappers ───────────────────────────────────── */
.section { padding: 72px 24px; background: var(--bg); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg,#9B5FFF,#FF3EAF);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(155,95,255,.3); }

/* ── Bonus Cards ────────────────────────────────────────── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.bonus-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(155,95,255,.4), var(--glow-purple); }
.bonus-card-header {
  padding: 26px 24px 20px;
  color: #fff;
  position: relative;
}
.bonus-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.25);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 800;
  color: #FFD700;
}
.bonus-card-icon { font-size: 2.5rem; margin-bottom: 10px; }
.bonus-card-title { font-family: 'Fredoka One', cursive; font-size: 1.3rem; margin-bottom: 4px; }
.bonus-card-amount { font-family: 'Fredoka One', cursive; font-size: 2rem; color: #FFD700; line-height: 1; }
.bonus-card-body { padding: 20px 24px; background: var(--bg-card); }
.bonus-card-desc { font-size: .92rem; color: #B8A0E8; margin-bottom: 14px; }
.bonus-card-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bonus-detail { display: flex; justify-content: space-between; font-size: .86rem; }
.bonus-detail-label { color: #7A6A9A; }
.bonus-detail-value { font-weight: 700; color: #E8DFFF; }
.bonus-card-body .btn { width: 100%; justify-content: center; }

/* ── USP Blocks ─────────────────────────────────────────── */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}
.usp-card:nth-child(1) { border-top-color: var(--purple); }
.usp-card:nth-child(2) { border-top-color: var(--pink); }
.usp-card:nth-child(3) { border-top-color: var(--blue); }
.usp-card:nth-child(4) { border-top-color: var(--gold); }
.usp-card:nth-child(5) { border-top-color: #00C896; }
.usp-card:nth-child(6) { border-top-color: #FF6B35; }
.usp-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(155,95,255,.3); }
.usp-icon { font-size: 2.6rem; margin-bottom: 12px; }
.usp-card h4 { margin-bottom: 8px; color: #F0EAFF; }
.usp-card p  { font-size: .9rem; }

/* ── Games Grid ─────────────────────────────────────────── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 18px; }
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.game-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 12px 32px rgba(155,95,255,.5), var(--glow-purple); }
.game-card-thumb {
  width: 100%;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
.game-card-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.game-card-info { padding: 12px 14px; background: var(--bg-card); }
.game-card-info h4 { font-size: .95rem; margin-bottom: 2px; color: #F0EAFF; }
.game-card-info p  { font-size: .78rem; color: #7A6A9A; }
.game-card-play {
  position: absolute;
  inset: 0;
  background: rgba(30,5,70,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: #FFD700;
}
.game-card:hover .game-card-play { opacity: 1; }

/* ── Payments ───────────────────────────────────────────── */
.payments-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.payment-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .9rem;
  color: #E8DFFF;
  transition: transform .2s, box-shadow .2s;
}
.payment-chip:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(155,95,255,.3); }
.payment-chip-icon { font-size: 1.5rem; }

/* ── Steps ──────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.step-card:nth-child(1)::before { background: var(--purple); }
.step-card:nth-child(2)::before { background: var(--pink); }
.step-card:nth-child(3)::before { background: var(--gold); }
.step-card:nth-child(4)::before { background: var(--blue); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 14px;
}
.step-icon { font-size: 1.6rem; margin-bottom: 10px; }
.step-card h4 { margin-bottom: 8px; color: #F0EAFF; }
.step-card p { font-size: .9rem; color: #B8A0E8; }

/* ── Review / Rating ────────────────────────────────────── */
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rating-bar-label { min-width: 120px; font-size: .9rem; font-weight: 700; color: #C8B8F0; }
.rating-bar-track { flex: 1; height: 10px; background: #1E1040; border-radius: 10px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg,#9B5FFF,#FF3EAF); }
.rating-bar-score { min-width: 36px; text-align: right; font-weight: 800; color: var(--purple); }

.verdict-box {
  background: linear-gradient(135deg,#7B2FFF,#FF3EAF);
  border-radius: var(--radius);
  padding: 28px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.verdict-score {
  font-family: 'Fredoka One', cursive;
  font-size: 4rem;
  color: #FFD700;
  line-height: 1;
}
.verdict-label { font-size: .85rem; opacity: .8; }
.verdict-text h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; margin-bottom: 6px; }
.verdict-text p { opacity: .9; font-size: .95rem; }

/* ── Pros/Cons ──────────────────────────────────────────── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.pros-cons-col h4 { font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; color: #F0EAFF; }
.pros-cons-col ul { display: flex; flex-direction: column; gap: 8px; }
.pros-cons-col li { display: flex; align-items: flex-start; gap: 8px; font-size: .92rem; color: #B8A0E8; }
.pro-icon  { color: #00C896; font-size: 1.1rem; flex-shrink: 0; }
.con-icon  { color: #FF6B6B; font-size: 1.1rem; flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #F0EAFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform .3s;
  flex-shrink: 0;
  color: var(--purple);
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 22px;
}
.faq-answer-inner { padding-bottom: 18px; font-size: .95rem; color: #B8A0E8; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg,#1A0840 0%,#2D0F60 40%,#1A0840 100%);
  border: 1px solid rgba(155,95,255,.35);
  border-radius: var(--radius-lg);
  padding: 52px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 60px rgba(155,95,255,.15);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🎰';
  position: absolute;
  font-size: 8rem;
  opacity: .06;
  right: -20px; top: -20px;
  pointer-events: none;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 10px; }
.cta-banner p  { opacity: .9; margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn-gold { font-size: 1.2rem; padding: 16px 40px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg,#06020F 0%,#0C0520 100%);
  border-top: 1px solid rgba(155,95,255,.2);
  color: #8870B8;
  padding: 60px 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.6rem; margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; opacity: .8; margin-bottom: 14px; }
.footer-col h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: #FFD700;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .9rem; color: #7A6A9A; transition: color .2s; }
.footer-col a:hover { color: #FFD700; }
.footer-bottom {
  border-top: 1px solid rgba(155,95,255,.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: .82rem;
}
.footer-legal p { opacity: .65; line-height: 1.7; max-width: 700px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-links a { color: #7A6A9A; }
.footer-links a:hover { color: #FFD700; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg,#FFD700,#FF9500);
  color: #0A0618;
  font-family: 'Fredoka One', cursive;
  font-size: .95rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Sticky Mobile CTA ──────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg,#10062A,#1A0840);
  border-top: 1px solid rgba(155,95,255,.3);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.6);
}
.sticky-mobile-cta .btn { width: 100%; justify-content: center; font-size: 1.05rem; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { font-size: .85rem; color: #888; margin-bottom: 8px; }
.breadcrumb a { color: var(--purple); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg,#06010F 0%,#120630 50%,#1A0840 100%);
  border-bottom: 1px solid rgba(155,95,255,.2);
  padding: 64px 24px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content:'';
  position: absolute;
  inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position:relative; z-index:1; max-width:800px; margin:0 auto; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p  { font-size: 1.1rem; opacity: .88; }

/* ── Table ──────────────────────────────────────────────── */
.styled-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.styled-table th { background: linear-gradient(90deg,#7B2FFF,#FF3EAF); color:#fff; font-family:'Fredoka One',cursive; padding:14px 16px; text-align:left; font-size:1rem; font-weight:400; }
.styled-table td { padding:13px 16px; border-bottom:1px solid rgba(155,95,255,.12); font-size:.92rem; background:var(--bg-card); color:#C8B8F0; }
.styled-table tr:last-child td { border-bottom:none; }
.styled-table tr:hover td { background:#170C32; }

/* ── Tag / Badge ────────────────────────────────────────── */
.tag { display:inline-block; background:rgba(155,95,255,.18); border:1px solid rgba(155,95,255,.35); color:#C8A8FF; padding:3px 10px; border-radius:50px; font-size:.78rem; font-weight:800; }
.tag-gold { background:rgba(255,215,0,.12); border:1px solid rgba(255,215,0,.3); color:#FFD700; }
.tag-green { background:rgba(0,200,150,.12); border:1px solid rgba(0,200,150,.3); color:#00C896; }
.tag-pink  { background:rgba(255,62,175,.12); border:1px solid rgba(255,62,175,.3); color:#FF3EAF; }

/* ── Divider ────────────────────────────────────────────── */
.divider { height: 3px; background: linear-gradient(90deg,#7B2FFF,#FF3EAF,#FFD700); border-radius:3px; margin:0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display:none; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero-inner { padding: 40px 20px 60px; }
  .section { padding: 48px 20px; }
  .sticky-mobile-cta { display:block; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .usp-grid   { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fade-up .6s ease both; }
.fade-up-delay-1 { animation-delay:.1s; }
.fade-up-delay-2 { animation-delay:.2s; }
.fade-up-delay-3 { animation-delay:.3s; }
.fade-up-delay-4 { animation-delay:.4s; }

/* ── Spin coin animation ────────────────────────────────── */
@keyframes spin-coin {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
.spin-coin { display:inline-block; animation: spin-coin 2.5s linear infinite; }
