/* PREMIUM 3D PIXAR DAYLIGHT MAX · Site 1
   ═══════════════════════════════════════════════════════
   Sky Blue · Sunshine Gold · AAA mobile game vibe
   Coin Master / Royal Match / Brawl Stars inspired
   ═══════════════════════════════════════════════════════ */

:root {
  /* Gold family */
  --cr-orange:        #f59e0b;
  --cr-orange-mid:    #fbbf24;
  --cr-orange-light:  #fde68a;
  --cr-orange-badge:  #fffbeb;
  --cr-yellow:        #fbbf24;
  --cr-yellow-dark:   #d97706;
  --gold-deep:        #b45309;
  --gold-shadow:      #92400e;
  --gold-cream:       #fffbeb;
  /* Sky family */
  --sky-soft:         #bae6fd;
  --sky-mid:          #38bdf8;
  --sky-deep:         #0ea5e9;
  --sky-ink:          #0284c7;
  --sky-night:        #0c4a6e;
  --sky-abyss:        #082f49;
  /* Mint family */
  --mint-bright:      #4ade80;
  --mint-deep:        #22c55e;
  --mint-shadow:      #16a34a;
  /* Surfaces */
  --cr-warm-bg:       #f0f9ff;
  --color-paper-white:#ffffff;
  --color-light-gray: #f0f9ff;
  --color-silver-mist:#e0f2fe;
  --color-slate-border:#bae6fd;
  --color-absolute-black:#0c4a6e;
  --color-graphite:   #334155;
  --color-pale-lilac: #f0f9ff;
  --color-soft-lavender:#e0f2fe;
  --color-sky-tint:   #e0f2fe;
  --color-sun-mist:   #fffbeb;
  --color-cloud-blue: #f0f9ff;
  --color-mellow-apricot:#fef3c7;
  --color-feedback-violet:#f59e0b;
  --color-agent-blue: #0ea5e9;
  --color-insight-amber:#d97706;
  /* Shadows */
  --shadow-card: 0 12px 32px rgba(14,165,233,.12), 0 4px 12px rgba(245,158,11,.08), 0 1px 0 rgba(255,255,255,.9) inset;
  --shadow-hover: 0 22px 48px rgba(14,165,233,.22), 0 8px 22px rgba(245,158,11,.18);
  --shadow-elevated: 0 28px 60px rgba(12,74,110,.22), 0 0 0 1px rgba(251,191,36,.30);
  --shadow-gold-glow: 0 0 26px rgba(251,191,36,.55), 0 8px 24px rgba(245,158,11,.40);
  --shadow-sky-glow:  0 0 26px rgba(14,165,233,.45), 0 8px 24px rgba(14,165,233,.30);
  --radius-cards: 22px;
  --radius-buttons: 16px;
}

/* ── Base ───────────────────────────────────────────── */
html { background: #e0f2fe; }
body {
  background:
    radial-gradient(ellipse 80% 40% at 80% 0%, rgba(253,230,138,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 35% at 10% 90%, rgba(186,230,253,.55) 0%, transparent 60%),
    linear-gradient(180deg, #bae6fd 0%, #e0f2fe 35%, #f0f9ff 65%, #fef3c7 100%);
  background-attachment: fixed;
  color: #334155;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-wrap: break-word; word-break: break-word;
}

/* Decorative sparkle layer over body */
body::before {
  content:'';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.55) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 32%, rgba(253,224,71,.55) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 42% 78%, rgba(255,255,255,.45) 0 1.4px, transparent 2px),
    radial-gradient(circle at 88% 88%, rgba(253,224,71,.4) 0 1.5px, transparent 2px);
  background-size: 320px 320px, 380px 380px, 280px 280px, 360px 360px;
  pointer-events: none; z-index: 0; opacity: .55;
  animation: sparkle-drift 28s linear infinite;
}
@keyframes sparkle-drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 320px 320px, -380px 380px, 280px -280px, -360px -360px; }
}

/* Scrollbar — golden shimmer */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #e0f2fe, #fffbeb);
  border-left: 1px solid rgba(14,165,233,.18);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
  border-radius: 8px; border: 2px solid #fffbeb;
  box-shadow: 0 0 8px rgba(251,191,36,.55), inset 0 1px 0 rgba(255,255,255,.65);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg,#fbbf24,#d97706); }
::selection { background: rgba(251,191,36,.55); color: #4a2400; }

/* ── Header ─────────────────────────────────────────── */
.header {
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(14,165,233,.18);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 4px 28px rgba(14,165,233,.14), 0 1px 0 rgba(255,255,255,.6) inset;
}
.header::after {
  content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, #38bdf8 20%, #fbbf24 50%, #38bdf8 80%, transparent 100%);
  background-size: 200% 100%;
  animation: shine-sweep 6s linear infinite;
  box-shadow: 0 0 14px rgba(251,191,36,.55);
}
@keyframes shine-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.logo img { filter: brightness(1.06) saturate(1.18) drop-shadow(0 2px 8px rgba(251,191,36,.35)); }
.nav-list .nav-item a { color: #0c4a6e; font-weight: 800; transition: all .2s ease; border-radius: 10px; padding: 6px 12px; }
.nav-list .nav-item a:hover,
.nav-list .nav-item.is-active a {
  color: #b45309;
  background: linear-gradient(180deg, #fef3c7, #fde68a);
  box-shadow: 0 2px 0 #d97706, 0 4px 12px rgba(245,158,11,.30), 0 1px 0 rgba(255,255,255,.7) inset;
}
.nav-drawer { background: linear-gradient(180deg, #ffffff, #f0f9ff); border-right: 1px solid rgba(14,165,233,.18); box-shadow: 6px 0 28px rgba(14,165,233,.18); }
.nav-drawer-list a { color: #0c4a6e; font-weight: 700; }
.nav-drawer-list a:hover { color: #b45309; background: linear-gradient(90deg, rgba(251,191,36,.18), transparent); }
.burger { border: 2px solid rgba(14,165,233,.4); border-radius: 10px; }
.burger span { background: #0c4a6e; }

/* ── Buttons — Supercell-style 3D ───────────────────── */
.btn-primary {
  position: relative;
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 35%, #f59e0b 70%, #d97706 100%);
  color: #4a2400;
  border: 2px solid #b45309;
  border-bottom-width: 5px;
  border-bottom-color: #92400e;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: .04em;
  text-shadow: 0 1px 0 rgba(255,255,255,.6), 0 -1px 0 rgba(146,64,14,.35);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.6),
    inset 0 -3px 6px rgba(146,64,14,.4),
    0 4px 0 #92400e,
    0 8px 24px rgba(245,158,11,.5);
  border-radius: 16px;
  transition: transform .12s ease, box-shadow .12s ease;
  overflow: hidden;
}
.btn-primary::before {
  content:''; position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: skewX(-22deg);
  animation: btn-sheen 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-sheen {
  0%, 60% { left: -120%; }
  100%    { left: 130%; }
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.7),
    inset 0 -3px 6px rgba(146,64,14,.4),
    0 7px 0 #92400e,
    0 14px 32px rgba(245,158,11,.6);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(146,64,14,.4),
    0 1px 0 #92400e,
    0 3px 10px rgba(245,158,11,.4);
}

.btn-secondary {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 35%, #0ea5e9 70%, #0284c7 100%);
  color: #ffffff;
  border: 2px solid #075985;
  border-bottom-width: 5px;
  border-bottom-color: #0c4a6e;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  text-shadow: 0 1px 0 rgba(7,89,133,.6), 0 -1px 0 rgba(12,74,110,.35);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -3px 6px rgba(7,89,133,.45),
    0 4px 0 #0c4a6e,
    0 8px 22px rgba(14,165,233,.45);
  border-radius: 16px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #93dafd 0%, #38bdf8 50%, #0369a1 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.6), 0 7px 0 #0c4a6e, 0 14px 30px rgba(14,165,233,.55);
}
.btn-secondary:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 4px rgba(7,89,133,.4), 0 1px 0 #0c4a6e, 0 3px 10px rgba(14,165,233,.4);
}

/* Gold mega-CTA — even bigger 3D + pulsing aura */
.btn-gold, .hero-main-cta.btn-primary {
  position: relative;
  animation: gold-aura 2.4s ease-in-out infinite;
}
@keyframes gold-aura {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(251,191,36,.45)); }
  50%      { filter: drop-shadow(0 0 22px rgba(251,191,36,.85)); }
}

/* Violet → re-skinned to sky-blue in this theme */
.btn-violet {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 35%, #0ea5e9 70%, #0284c7 100%) !important;
  color: #fff !important; border: 2px solid #075985 !important;
  border-bottom: 5px solid #0c4a6e !important;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.55), 0 4px 0 #0c4a6e, 0 8px 22px rgba(14,165,233,.45) !important;
}

.btn-ghost { color: #0284c7; font-weight: 700; }
.btn-ghost:hover { color: #b45309; background: linear-gradient(180deg, rgba(251,191,36,.18), rgba(251,191,36,.08)); }

/* ── Hero — sky with sun ────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(253,230,138,.92) 0%, rgba(251,191,36,.42) 25%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 20% 100%, rgba(186,230,253,.7) 0%, transparent 60%),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 14%),
    linear-gradient(160deg, #bae6fd 0%, #e0f2fe 50%, #fef3c7 100%);
  position: relative; overflow: hidden;
}
/* Floating cloud puffs */
.hero::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 220px 90px at 12% 24%, rgba(255,255,255,.85) 0%, transparent 70%),
    radial-gradient(ellipse 180px 75px at 32% 12%, rgba(255,255,255,.75) 0%, transparent 70%),
    radial-gradient(ellipse 260px 110px at 65% 80%, rgba(255,255,255,.65) 0%, transparent 70%),
    radial-gradient(ellipse 160px 70px at 90% 55%, rgba(255,255,255,.7) 0%, transparent 70%);
  filter: blur(2px);
  pointer-events: none; z-index: 0;
  animation: cloud-drift 22s ease-in-out infinite alternate;
}
@keyframes cloud-drift {
  0%   { transform: translateX(-12px) translateY(0); }
  100% { transform: translateX(14px) translateY(-6px); }
}
/* Sparkles + gold dust */
.hero::after {
  content:''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(253,224,71,.65) 1px, transparent 1.5px);
  background-size: 38px 38px, 64px 64px;
  background-position: 0 0, 14px 22px;
  pointer-events: none; z-index: 0;
  opacity: .55;
  animation: sparkle-drift 18s linear infinite;
}
.hero-inner, .hero-feathers { position: relative; z-index: 2; }

/* Decorative floating particles */
.feather-1, .feather-2, .feather-3 {
  background: radial-gradient(circle at 30% 30%, #fffbeb 0%, #fde68a 30%, #fbbf24 65%, #d97706 100%) !important;
  box-shadow: 0 0 14px rgba(251,191,36,.75), 0 4px 14px rgba(245,158,11,.45), inset 0 -2px 4px rgba(146,64,14,.25), inset 0 2px 4px rgba(255,255,255,.65) !important;
  animation: float-coin 4.6s ease-in-out infinite !important;
}
.feather-2 { animation-delay: -1.2s !important; }
.feather-3 { animation-delay: -2.4s !important; }
.feather-4, .feather-5, .feather-6 {
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #bae6fd 30%, #38bdf8 65%, #0284c7 100%) !important;
  box-shadow: 0 0 14px rgba(56,189,248,.65), 0 4px 14px rgba(14,165,233,.45), inset 0 -2px 4px rgba(7,89,133,.25), inset 0 2px 4px rgba(255,255,255,.7) !important;
  animation: float-coin 5.4s ease-in-out infinite !important;
}
.feather-5 { animation-delay: -1.6s !important; }
.feather-6 { animation-delay: -3.0s !important; }
@keyframes float-coin {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(8deg); }
}

.hero-label {
  background: linear-gradient(180deg, #fffbeb, #fde68a);
  color: #b45309;
  border: 1px solid rgba(180,83,9,.45);
  border-bottom: 2px solid #d97706;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  letter-spacing: .08em; font-size: .72rem; text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(251,191,36,.35), inset 0 1px 0 rgba(255,255,255,.85);
  padding: 6px 14px;
}
.hero-live { color: #16a34a; font-weight: 900; }
.hero-live::before {
  content:''; display: inline-block; width: 10px; height: 10px;
  background: radial-gradient(circle at 30% 30%, #bbf7d0 0%, #4ade80 50%, #16a34a 100%);
  border-radius: 50%; margin-right: 7px; vertical-align: middle;
  animation: app-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(34,197,94,.85);
}
@keyframes app-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(34,197,94,.95), 0 0 0 0 rgba(34,197,94,.55); }
  50%      { box-shadow: 0 0 14px rgba(34,197,94,.7),  0 0 0 10px rgba(34,197,94,0); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-weight: 700;
  color: #0c4a6e;
}
.hero-title {
  font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; color: #0c4a6e;
  text-shadow: 0 2px 16px rgba(255,255,255,.85), 0 1px 0 rgba(255,255,255,.6);
}
.cr-word,
.hero-title .cr-word,
h1 .cr-word,
.hero-compact .hero-title .cr-word {
  background: linear-gradient(90deg, #1d4ed8, #0284c7, #0ea5e9) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  filter: none !important;
  text-shadow: none !important;
  animation: none !important;
}
@keyframes glow-pulse {
  0%, 100% { filter: none; }
  50%      { filter: none; }
}

.hero-offer-pill {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.6);
  border-bottom-width: 4px; border-bottom-color: #d97706;
  border-radius: 22px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 32px rgba(14,165,233,.15);
}
.hero-offer-amount {
  color: #d97706; font-weight: 700; font-family: 'Fredoka', sans-serif;
  text-shadow: 0 1px 0 rgba(255,255,255,.95), 0 0 22px rgba(251,191,36,.55), 0 2px 0 rgba(180,83,9,.25);
}
.hero-offer-spins em { color: #475569; }
.hero-offer-spins strong { color: #0c4a6e; font-family: 'Fredoka', sans-serif; font-weight: 700; }

.hero-main-cta { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; animation: cta-bounce 2.5s ease-in-out infinite, gold-aura 2.4s ease-in-out infinite; }
@keyframes cta-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.hero-trust-row li { color: #475569; border-color: rgba(14,165,233,.28); font-weight: 700; }
.hero-trust-row li::before { color: #16a34a !important; text-shadow: 0 0 8px rgba(74,222,128,.6); }
.hero-disclaimer { color: #64748b; }
.hero-login-link { color: #475569; }
.hero-login-link strong { color: #b45309; }

/* ── Trust strip ────────────────────────────────────── */
.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-top: 1px solid rgba(14,165,233,.18);
  border-bottom: 1px solid rgba(14,165,233,.18);
  position: relative;
}
.trust-strip::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #fbbf24 50%, transparent);
  opacity: .7;
}
.trust-pillar {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(14,165,233,.18);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24) 1;
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 12px 32px rgba(14,165,233,.12),
    0 4px 12px rgba(245,158,11,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-pillar:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 24px 48px rgba(14,165,233,.22), 0 0 0 1px rgba(251,191,36,.45), 0 8px 22px rgba(245,158,11,.20);
}
.tp-title { color: #0c4a6e; font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; }
.tp-text  { color: #475569; }

/* Trust-pillar icon circles — 3D coins */
.tp-icon-v, .tp-icon-b, .tp-icon-a, .fc-icon-v, .fc-icon-b, .fc-icon-a {
  border-radius: 50% !important;
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.65),
    inset 0 -3px 8px rgba(0,0,0,.15),
    0 8px 18px rgba(14,165,233,.20),
    0 0 0 3px rgba(255,255,255,.85);
  position: relative;
  animation: float-coin 5.2s ease-in-out infinite;
}
.tp-icon-v, .fc-icon-v {
  background: radial-gradient(circle at 30% 25%, #fffbeb 0%, #fde68a 30%, #fbbf24 65%, #d97706 100%) !important;
  color: #4a2400 !important;
}
.tp-icon-b, .fc-icon-b {
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #bae6fd 30%, #38bdf8 65%, #0284c7 100%) !important;
  color: #ffffff !important;
}
.tp-icon-a, .fc-icon-a {
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #bbf7d0 30%, #4ade80 65%, #16a34a 100%) !important;
  color: #ffffff !important;
}
.tp-icon-b, .fc-icon-b { animation-delay: -1.2s; }
.tp-icon-a, .fc-icon-a { animation-delay: -2.4s; }

/* ── Sections ───────────────────────────────────────── */
.section { background: transparent; position: relative; }
.section:nth-child(even) { background: rgba(255,255,255,.55); backdrop-filter: blur(2px); }

.section-label {
  background: linear-gradient(180deg, #fffbeb, #fde68a) !important;
  color: #b45309 !important;
  border: 1px solid rgba(180,83,9,.4) !important;
  border-bottom: 2px solid #d97706 !important;
  border-radius: 100px !important;
  font-family: 'Fredoka', sans-serif !important; font-weight: 600 !important;
  box-shadow: 0 3px 10px rgba(251,191,36,.35), inset 0 1px 0 rgba(255,255,255,.85) !important;
  padding: 6px 14px !important;
}
.section-title {
  color: #0c4a6e !important; font-family: 'Fredoka', 'Nunito', sans-serif !important; font-weight: 700 !important;
  position: relative; display: inline-block;
}
.section-title::after {
  content:''; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 4px; border-radius: 6px;
  background: linear-gradient(90deg, transparent, #fbbf24 30%, #f59e0b 70%, transparent);
  box-shadow: 0 2px 10px rgba(251,191,36,.55);
}
.section-lead { color: #475569 !important; }

/* ── Prose ──────────────────────────────────────────── */
.prose { color: #334155; line-height: 1.82; font-size: 17px; }
.prose p { color: #334155; }
.prose h2 {
  color: #0c4a6e; font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700;
  border-left: 4px solid #fbbf24; padding: 10px 16px; margin-top: 2.4rem;
  background: linear-gradient(90deg, rgba(251,191,36,.18) 0%, rgba(14,165,233,.08) 40%, transparent 75%);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 2px 12px rgba(251,191,36,.14);
}
.prose h3 { color: #0c4a6e; font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; }
.prose strong { color: #b45309; font-weight: 800; }
.prose em { color: #0284c7; font-style: normal; font-weight: 700; }
.prose a { color: #0284c7; text-decoration: underline; text-decoration-color: rgba(2,132,199,.45); }
.prose a:hover { color: #b45309; text-decoration-color: rgba(180,83,9,.55); }
.prose ol { list-style: none; counter-reset: prose-counter; padding: 0; }
.prose ol li { counter-increment: prose-counter; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; color: #334155; }
.prose ol li::before {
  content: counter(prose-counter);
  flex-shrink: 0; width: 30px; height: 30px;
  background: radial-gradient(circle at 30% 30%, #fffbeb 0%, #fde68a 30%, #fbbf24 65%, #d97706 100%);
  color: #4a2400; font-weight: 900; font-family: 'Nunito', sans-serif; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-top: 2px;
  box-shadow: 0 4px 12px rgba(245,158,11,.5), 0 1px 0 rgba(255,255,255,.7) inset, 0 -2px 4px rgba(146,64,14,.25) inset;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.prose ul li { padding-left: 24px; position: relative; color: #334155; margin-bottom: 9px; }
.prose ul li::before { content:'★'; position: absolute; left: 0; color: #f59e0b; font-size: .9rem; top: 4px; text-shadow: 0 0 8px rgba(251,191,36,.5); }
.prose blockquote {
  border-left: 4px solid #fbbf24; padding: 18px 22px;
  background: linear-gradient(135deg, rgba(251,191,36,.14), rgba(255,255,255,.6));
  border-radius: 0 16px 16px 0;
  margin: 26px 0; color: #0c4a6e; font-style: italic;
  box-shadow: 0 4px 18px rgba(251,191,36,.18);
}
p { color: #334155; }
li { color: #334155; }
a { color: #0284c7; }
a:hover { color: #b45309; }

/* ── TOC ────────────────────────────────────────────── */
.toc {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border: 1px solid rgba(14,165,233,.22); border-radius: 22px;
  box-shadow: 0 12px 32px rgba(14,165,233,.14), 0 1px 0 rgba(255,255,255,.95) inset;
  position: relative; overflow: hidden;
}
.toc::before {
  content:''; position: absolute; left: 0; top: 14px; bottom: 14px; width: 4px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 12px rgba(251,191,36,.5);
}
.toc-title { color: #0c4a6e !important; font-family: 'Fredoka', 'Nunito', sans-serif !important; font-weight: 700 !important; }
.toc-list a { color: #0284c7; font-weight: 600; }
.toc-list a:hover { color: #b45309; }

/* ── Feature cards ──────────────────────────────────── */
.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(14,165,233,.18);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24) 1;
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 12px 32px rgba(14,165,233,.12),
    0 4px 12px rgba(245,158,11,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content:''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(253,230,138,.45) 0%, transparent 70%);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 48px rgba(14,165,233,.22), 0 0 0 1px rgba(251,191,36,.45), 0 10px 22px rgba(245,158,11,.22);
}
.fc-title { color: #0c4a6e !important; font-family: 'Fredoka', 'Nunito', sans-serif !important; font-weight: 700 !important; }
.fc-text  { color: #475569 !important; }

/* ── Spec items ─────────────────────────────────────── */
.spec-item {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border: 1px solid rgba(14,165,233,.18); border-radius: 16px;
  box-shadow: 0 4px 14px rgba(14,165,233,.10), 0 1px 0 rgba(255,255,255,.95) inset;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spec-item:hover {
  border-color: rgba(251,191,36,.55); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(251,191,36,.22), 0 0 0 1px rgba(251,191,36,.35);
}
.spec-label { color: #475569 !important; font-size: .73rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 800; }
.spec-value { color: #b45309 !important; font-weight: 700; font-family: 'Fredoka', sans-serif; text-shadow: 0 1px 0 rgba(255,255,255,.85); }
.game-specs .spec-item--feature {
  background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
  border: 1px solid rgba(251,191,36,.55) !important;
  border-bottom: 3px solid #d97706 !important;
  box-shadow: 0 8px 22px rgba(251,191,36,.22), 0 1px 0 rgba(255,255,255,.85) inset !important;
}

.card, .card-base {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border: 1px solid rgba(14,165,233,.18); border-radius: 22px;
  box-shadow: 0 12px 32px rgba(14,165,233,.12), 0 1px 0 rgba(255,255,255,.95) inset;
}

/* ── Tables ─────────────────────────────────────────── */
.table-wrap {
  border: 1px solid rgba(14,165,233,.20); border-radius: 20px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 32px rgba(14,165,233,.14), 0 1px 0 rgba(255,255,255,.9) inset;
  background: #ffffff;
}
.review-table thead tr {
  background: linear-gradient(180deg, #fffbeb 0%, #fde68a 100%) !important;
  position: sticky; top: 0; z-index: 1;
}
.review-table thead th {
  color: #4a2400 !important;
  border-bottom: 2px solid #d97706 !important;
  font-family: 'Nunito', sans-serif; font-weight: 900;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}
.review-table tbody tr { border-bottom: 1px solid rgba(14,165,233,.10); transition: background .15s ease; }
.review-table tbody tr:nth-child(odd) { background: rgba(240,249,255,.65); }
.review-table tbody tr:hover { background: linear-gradient(90deg, rgba(251,191,36,.18), rgba(251,191,36,.06)) !important; }
.review-table tbody td { color: #334155; }
.review-table tbody td:first-child { color: #0c4a6e; font-weight: 800; }

/* ── CTA compact ────────────────────────────────────── */
.cta-compact {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 60%, #fef3c7 100%);
  border: 1px solid rgba(251,191,36,.45);
  border-left: 5px solid #f59e0b;
  border-radius: 20px; padding: 22px 26px; margin: 32px 0;
  box-shadow: 0 12px 28px rgba(251,191,36,.18), 0 1px 0 rgba(255,255,255,.95) inset;
  position: relative; overflow: hidden;
}
.cta-compact::after {
  content:''; position: absolute; top: -30%; right: -10%; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(253,230,138,.45) 0%, transparent 70%);
  pointer-events: none;
}
.cta-compact-text { color: #0c4a6e; font-size: 15px; font-weight: 600; }
.cta-compact .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ── CTA block ──────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #fffbeb 100%) !important;
  border: 2px solid rgba(251,191,36,.50) !important;
  border-radius: 28px !important;
  box-shadow:
    0 0 60px rgba(251,191,36,.20) inset,
    0 16px 48px rgba(14,165,233,.22),
    0 1px 0 rgba(255,255,255,.95) inset !important;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content:''; position: absolute; top: -40%; right: -20%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(251,191,36,.35) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
/* CTA-block (внутренний CTA, dark contrast) */
.cta-pretitle {
  color: #fbbf24 !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
}
.cta-title {
  color: #ffffff !important;
  font-family: 'Fredoka', 'Nunito', sans-serif !important;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.35) !important;
}
.cta-body {
  color: rgba(255,255,255,.9) !important;
  font-size: 15.5px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}
.cta-disclaimer {
  color: rgba(255,255,255,.65) !important;
  font-size: 12.5px !important;
}

.cta-section { background: transparent !important; }
.cta-banner {
  background:
    radial-gradient(ellipse 80% 40% at 80% 0%, rgba(253,224,71,.35) 0%, transparent 60%),
    linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
  border: 2px solid rgba(180,83,9,.55) !important;
  border-bottom: 5px solid #92400e !important;
  border-radius: 26px !important;
  box-shadow:
    0 0 80px rgba(251,191,36,.40),
    0 18px 48px rgba(245,158,11,.40),
    0 1px 0 rgba(255,255,255,.5) inset !important;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:'' !important;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.45) 0%, transparent 30%),
    radial-gradient(circle, rgba(255,255,255,.30) 0%, transparent 70%) !important;
  position: absolute; inset: 0; pointer-events: none;
}
.cta-banner::after {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 1.2px, transparent 1.6px);
  background-size: 30px 30px;
  opacity: .35;
  pointer-events: none;
  animation: sparkle-drift 18s linear infinite;
}
/* CTA-banner — высокий контраст на тёмном/градиентном фоне */
.cta-banner-label {
  color: #fbbf24 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  background: rgba(251,191,36,.12) !important;
  border: 1px solid rgba(251,191,36,.4) !important;
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-block;
}
.cta-banner-title {
  color: #ffffff !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.45) !important;
}
.cta-banner-text {
  color: rgba(255,255,255,.92) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.cta-banner-disclaimer {
  color: rgba(255,255,255,.7) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
}
.cta-banner .btn-primary {
  background: linear-gradient(180deg, #fde68a, #fbbf24 50%, #f59e0b) !important;
  color: #1a0800 !important;
  font-weight: 800 !important;
  border-bottom: 4px solid #b45309 !important;
  box-shadow: 0 4px 0 #92400e, 0 8px 28px rgba(245,158,11,.45);
  text-shadow: none !important;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { background: transparent !important; }
.faq-row {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border: 1px solid rgba(14,165,233,.20);
  border-left: 4px solid transparent;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(14,165,233,.10), 0 1px 0 rgba(255,255,255,.95) inset;
  transition: all .22s ease;
}
.faq-row:hover {
  border-left-color: #fbbf24;
  box-shadow: 0 10px 24px rgba(251,191,36,.18), 0 0 0 1px rgba(251,191,36,.30);
}
.faq-row.is-open {
  background: linear-gradient(180deg, #fffbeb, #ffffff);
  border-color: rgba(251,191,36,.55);
  border-left-color: #f59e0b;
  box-shadow: 0 14px 32px rgba(251,191,36,.22), 0 0 0 1px rgba(251,191,36,.40);
}
.faq-row .question { color: #0c4a6e; font-weight: 700; font-family: 'Fredoka', 'Nunito', sans-serif; }
.faq-row .q-icon {
  background: linear-gradient(180deg, #fde68a, #fbbf24) !important;
  color: #4a2400 !important;
  border-radius: 12px;
  box-shadow: 0 2px 0 #d97706, 0 4px 10px rgba(245,158,11,.30), 0 1px 0 rgba(255,255,255,.7) inset;
}
.faq-row .chevron { color: #475569 !important; }
.faq-row.is-open .chevron { color: #b45309 !important; }
.faq-row .answer, .faq-row .answer p { color: #475569; }

/* ── Badges — 3D pills ──────────────────────────────── */
.badge-violet, .badge-amber, .badge-blue {
  border-radius: 100px !important;
  font-weight: 600 !important; font-family: 'Fredoka', sans-serif !important;
  letter-spacing: .04em;
  box-shadow: 0 2px 0 rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.55) inset;
}
.badge-violet {
  background: linear-gradient(180deg, #fde68a, #fbbf24) !important;
  color: #4a2400 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.badge-amber {
  background: linear-gradient(180deg, #7dd3fc, #38bdf8) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(2,132,199,.5);
}
.badge-blue {
  background: linear-gradient(180deg, #bbf7d0, #4ade80) !important;
  color: #052e16 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials-section { background: transparent !important; }
.testimonial-card {
  background: linear-gradient(180deg, #ffffff, #f0f9ff) !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  border-top: 3px solid transparent !important;
  border-image: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24) 1 !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 32px rgba(14,165,233,.14), 0 1px 0 rgba(255,255,255,.95) inset, 0 4px 12px rgba(245,158,11,.08) !important;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(14,165,233,.22), 0 0 0 1px rgba(251,191,36,.40) !important; }
.testimonial-quote { color: #334155 !important; }
.testimonial-name  { color: #0c4a6e !important; font-family: 'Fredoka', sans-serif !important; font-weight: 700 !important; }
.testimonial-location { color: #64748b !important; }
.testimonial-stars svg { color: #f59e0b !important; fill: #f59e0b !important; filter: drop-shadow(0 0 6px rgba(251,191,36,.55)); }
.testimonial-kicker { color: #0284c7 !important; font-weight: 700; }

/* ── Author strip ───────────────────────────────────── */
.cz-author-strip {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border-top: 1px solid rgba(14,165,233,.18);
  border-bottom: 1px solid rgba(14,165,233,.18);
}
.cz-author__kicker { color: #0284c7 !important; font-weight: 800; letter-spacing: .06em; }
.cz-author__name a { color: #0c4a6e !important; font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; }
.cz-author__name a:hover { color: #b45309 !important; }
.cz-author__bio { color: #475569 !important; }
.cz-author__more { color: #0284c7 !important; font-weight: 700; }
.cz-author__more:hover { color: #b45309 !important; }
.cz-author__img-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 22px !important;
  box-shadow:
    0 0 0 5px rgba(251,191,36,.55),
    0 0 0 7px rgba(180,83,9,.30),
    0 12px 32px rgba(14,165,233,.30),
    0 0 26px rgba(251,191,36,.35) !important;
  animation: float-coin 6s ease-in-out infinite;
}

/* ── Cz slots cards (if used) ───────────────────────── */
.cz-slots__card {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border: 1px solid rgba(14,165,233,.18);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24) 1;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(14,165,233,.12), 0 1px 0 rgba(255,255,255,.95) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cz-slots__card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 22px 48px rgba(14,165,233,.22), 0 0 0 1px rgba(251,191,36,.45); }

/* ── Multiplier showcase ────────────────────────────── */
.mult-showcase {
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(253,230,138,.55) 0%, transparent 60%),
    linear-gradient(160deg, #bae6fd 0%, #e0f2fe 50%, #fef3c7 100%) !important;
  position: relative; overflow: hidden;
}
.mult-showcase::after {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 1.2px, transparent 1.6px);
  background-size: 36px 36px; opacity: .35; pointer-events: none;
  animation: sparkle-drift 22s linear infinite;
}
.mult-card {
  background: linear-gradient(180deg, #ffffff, #fffbeb) !important;
  border: 2px solid rgba(251,191,36,.35) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 28px rgba(14,165,233,.14), 0 1px 0 rgba(255,255,255,.95) inset !important;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.mult-card:hover {
  transform: translateY(-7px) scale(1.03);
  border-color: rgba(245,158,11,.65) !important;
  box-shadow: 0 22px 44px rgba(251,191,36,.40), 0 0 0 2px rgba(251,191,36,.55) !important;
}
.mult-card::before {
  background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, #fbbf24, transparent) !important;
  height: 3px !important;
  box-shadow: 0 0 12px rgba(251,191,36,.55);
}
.mult-value {
  font-family: 'Fredoka', sans-serif !important; font-weight: 700 !important;
  text-shadow: 0 2px 0 rgba(255,255,255,.85), 0 4px 14px rgba(251,191,36,.45);
}
.mult-5x  { color: #0284c7 !important; }
.mult-10x { color: #d97706 !important; }
.mult-25x { color: #16a34a !important; }
.mult-showcase-label { color: #b45309 !important; }
.mult-showcase-title { color: #0c4a6e !important; font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; }
.how-to-play { background: transparent !important; }

/* ── Road / Chicken / Frying pan / Flame decorations ─ */
.road-scene {
  background:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(146,64,14,.08) 60%, rgba(146,64,14,.18) 100%),
    linear-gradient(180deg, #fef3c7 0%, #fde68a 60%, #fbbf24 100%);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(245,158,11,.22), 0 1px 0 rgba(255,255,255,.7) inset;
  position: relative;
  overflow: hidden;
}
.road-scene::before {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .35; pointer-events: none;
}
.road-dash {
  background: linear-gradient(90deg, #fde68a, #fbbf24, #fde68a) !important;
  box-shadow: 0 0 12px rgba(251,191,36,.75), 0 2px 0 rgba(180,83,9,.4) !important;
  border-radius: 4px !important;
}

.chicken-char {
  filter:
    drop-shadow(0 8px 16px rgba(245,158,11,.45))
    drop-shadow(0 0 18px rgba(251,191,36,.55))
    drop-shadow(0 2px 0 rgba(146,64,14,.25));
  animation: float-coin 4.4s ease-in-out infinite;
}
.frying-pan {
  filter:
    drop-shadow(0 6px 14px rgba(12,74,110,.35))
    drop-shadow(0 0 18px rgba(251,191,36,.45));
  animation: float-coin 5.2s ease-in-out infinite;
  animation-delay: -1.4s;
}

.flame-wrap {
  filter: drop-shadow(0 0 18px rgba(245,158,11,.65));
  animation: glow-pulse 1.6s ease-in-out infinite;
}
.flame-1, .flame-2, .flame-3, .flame-4 {
  background: radial-gradient(ellipse at 50% 90%, #fffbeb 0%, #fde047 25%, #fbbf24 55%, #f59e0b 80%, #d97706 100%) !important;
  box-shadow: 0 0 18px rgba(245,158,11,.75), 0 0 36px rgba(251,191,36,.45) !important;
  animation: flame-flicker 1.1s ease-in-out infinite alternate;
}
.flame-2 { animation-delay: -.2s; }
.flame-3 { animation-delay: -.5s; }
.flame-4 { animation-delay: -.8s; }
@keyframes flame-flicker {
  0%   { transform: scaleY(1) translateY(0); opacity: .92; }
  100% { transform: scaleY(1.15) translateY(-3px); opacity: 1; }
}

/* Big 3D multiplier numbers on road */
.road-mult-1, .road-mult-2, .road-mult-3, .road-mult-4, .road-mult-5,
[class^="road-mult-"], [class*=" road-mult-"] {
  background: linear-gradient(180deg, #fffbeb 0%, #fde047 30%, #fbbf24 60%, #d97706 100%) !important;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: 'Fredoka', sans-serif !important; font-weight: 700 !important;
  filter:
    drop-shadow(0 2px 0 rgba(180,83,9,.5))
    drop-shadow(0 4px 0 rgba(146,64,14,.4))
    drop-shadow(0 8px 22px rgba(245,158,11,.55));
  animation: glow-pulse 2.4s ease-in-out infinite;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 50% 30% at 80% 0%, rgba(251,191,36,.18) 0%, transparent 60%),
    linear-gradient(180deg, #0c4a6e 0%, #082f49 100%);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, transparent, #fbbf24 25%, #f59e0b 50%, #fbbf24 75%, transparent) 1;
  position: relative;
}
.footer::before {
  content:''; position: absolute; top: -4px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, #fbbf24 50%, transparent);
  filter: blur(8px); opacity: .8;
}
.footer-col h3 { color: #fde047 !important; font-family: 'Fredoka', 'Nunito', sans-serif !important; font-weight: 700 !important; text-shadow: 0 1px 0 rgba(146,64,14,.4); }
.footer-col a  { color: rgba(186,230,253,.88) !important; transition: color .2s ease; }
.footer-col a:hover { color: #fbbf24 !important; text-shadow: 0 0 8px rgba(251,191,36,.55); }
.footer-tagline { color: rgba(186,230,253,.78); }
.footer-socials .social {
  color: rgba(186,230,253,.88);
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 12px; padding: 10px;
  background: rgba(255,255,255,.05);
  transition: all .2s ease;
}
.footer-socials .social:hover {
  color: #4a2400;
  border-color: rgba(251,191,36,.65);
  background: linear-gradient(180deg, #fde68a, #fbbf24);
  box-shadow: 0 0 18px rgba(251,191,36,.55), 0 1px 0 rgba(255,255,255,.6) inset;
}
.footer-divider { border-color: rgba(186,230,253,.20) !important; }
.footer-disclaimer { color: rgba(186,230,253,.55) !important; font-size: .75rem !important; }
.copyright { color: rgba(186,230,253,.50) !important; }
.trust-badge {
  background: linear-gradient(180deg, rgba(251,191,36,.25), rgba(245,158,11,.15)) !important;
  color: #fde047 !important;
  border: 1px solid rgba(251,191,36,.40) !important;
  border-radius: 12px !important;
  font-size: .75rem; padding: 5px 11px;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(251,191,36,.18), 0 1px 0 rgba(255,255,255,.18) inset;
}

/* ── Misc ───────────────────────────────────────────── */
.content-image img {
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow:
    0 16px 40px rgba(14,165,233,.28),
    0 0 0 5px rgba(251,191,36,.30),
    0 0 22px rgba(251,191,36,.18);
}
.breadcrumbs a { color: #0284c7; font-weight: 600; }
.breadcrumbs .current { color: #b45309; font-weight: 800; }

/* 404 mega-title */
.title-404 {
  background: linear-gradient(180deg, #fffbeb 0%, #fde047 25%, #fbbf24 60%, #d97706 100%) !important;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: 'Fredoka', sans-serif !important; font-weight: 700 !important;
  filter:
    drop-shadow(0 4px 0 rgba(180,83,9,.55))
    drop-shadow(0 8px 0 rgba(146,64,14,.40))
    drop-shadow(0 14px 32px rgba(245,158,11,.6));
  animation: glow-pulse 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   POLISH IMPROVEMENTS — Premium 3D Pixar Daylight v2
   ═══════════════════════════════════════════════════════ */

/* 1. Ripple-эффект на primary-кнопках */
.btn-primary::after,
.btn-secondary::after,
.btn-gold::after,
.hero-main-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.btn-primary:active::after,
.btn-secondary:active::after,
.btn-gold:active::after,
.hero-main-cta:active::after {
  animation: btn-ripple .55s cubic-bezier(.25,.8,.25,1);
}
@keyframes btn-ripple {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: .9; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0;  }
}
.btn-secondary { position: relative; overflow: hidden; }

/* 2. Coin-spin для иконок */
@keyframes coin-flip {
  0%, 100% { transform: rotateY(0); }
  50%      { transform: rotateY(180deg); }
}
.trust-pillar:hover .tp-icon-v,
.trust-pillar:hover .tp-icon-b,
.trust-pillar:hover .tp-icon-a,
.feature-card:hover .fc-icon-v,
.feature-card:hover .fc-icon-b,
.feature-card:hover .fc-icon-a {
  animation: coin-flip .8s cubic-bezier(.25,.8,.25,1);
  transform-style: preserve-3d;
}

/* 4. Animated gradient border on hover — feature-card / trust-pillar / cz-slots__card */
@keyframes gradient-shift {
  0%   { border-image-source: linear-gradient(0deg,   #fbbf24, #f59e0b, #38bdf8, #fbbf24); }
  25%  { border-image-source: linear-gradient(90deg,  #fbbf24, #f59e0b, #38bdf8, #fbbf24); }
  50%  { border-image-source: linear-gradient(180deg, #fbbf24, #f59e0b, #38bdf8, #fbbf24); }
  75%  { border-image-source: linear-gradient(270deg, #fbbf24, #f59e0b, #38bdf8, #fbbf24); }
  100% { border-image-source: linear-gradient(360deg, #fbbf24, #f59e0b, #38bdf8, #fbbf24); }
}
.feature-card:hover,
.trust-pillar:hover,
.cz-slots__card:hover {
  border-image-slice: 1;
  animation: gradient-shift 3s linear infinite;
}

/* 5. 3D parallax tilt on testimonials and feature-cards */
.feature-card,
.testimonial-card {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.25,.8,.25,1), box-shadow .35s cubic-bezier(.25,.8,.25,1);
}
.feature-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateZ(8px);
}
.testimonial-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateZ(8px);
}

/* 6. CTA-banner — animated diagonal gold shine sweep */
.cta-banner {
  position: relative;
}
.cta-banner > .cta-banner-shine,
.cta-banner::after {
  /* keep existing ::after sparkles intact */
}
.cta-banner {
  /* Add a third pseudo-layer via a wrapping ::before override is risky;
     instead use a second background animation on ::before */
}
.cta-banner::before {
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,251,235,.55) 45%, rgba(255,255,255,.85) 50%, rgba(255,251,235,.55) 55%, transparent 70%) no-repeat,
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.45) 0%, transparent 30%),
    radial-gradient(circle, rgba(255,255,255,.30) 0%, transparent 70%) !important;
  background-size: 50% 100%, auto, auto !important;
  background-position: -60% 0, 0 0, 0 0 !important;
  background-repeat: no-repeat, no-repeat, no-repeat !important;
  animation: cta-shine-sweep 6s ease-in-out infinite;
}
@keyframes cta-shine-sweep {
  0%   { background-position: -60% 0, 0 0, 0 0; }
  60%  { background-position: -60% 0, 0 0, 0 0; }
  100% { background-position: 160% 0, 0 0, 0 0; }
}

/* 7. Premium gold focus-rings */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-gold:focus-visible,
.btn-violet:focus-visible,
.btn-ghost:focus-visible,
.hero-main-cta:focus-visible,
.nav-list a:focus-visible {
  outline: 3px solid rgba(245,158,11,.5);
  outline-offset: 4px;
  border-radius: inherit;
}

/* Bonus: golden text selection */
::selection { background: rgba(251,191,36,.4); color: #4a2400; }

/* Bonus: softer sticky header shadow on scroll */
.header { transition: box-shadow .3s ease, background .3s ease; }

@media (prefers-color-scheme: dark) { /* always premium 3D daylight — no dark mode */ }

@media (max-width: 500px) {
  .cta-compact { flex-direction: column; align-items: stretch; }
  .cta-compact .btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════
   SPLASH HERO · Site 1 — Compact Premium
   ═══════════════════════════════════════ */

.splash-hero {
    position: relative;
    overflow: hidden;
    padding: 32px 0 28px;
    background:
      radial-gradient(ellipse 70% 60% at 90% 0%, rgba(253,230,138,.4), transparent 60%),
      radial-gradient(ellipse 50% 70% at 0% 100%, rgba(186,230,253,.45), transparent 60%),
      linear-gradient(160deg, #f0f9ff 0%, #fef3c7 100%);
}
@media (min-width: 768px) {
    .splash-hero { padding: 36px 0 32px; }
}

.splash-coins {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
}
.splash-coin {
    position: absolute;
    width: 18px; height: 18px;
    background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(245,158,11,.35), inset 0 -2px 4px rgba(180,83,9,.3);
    opacity: .55;
}
.splash-coin--1 { top: 18%; left: 8%; animation: splash-float 5s ease-in-out infinite; }
.splash-coin--2 { top: 60%; left: 88%; width: 14px; height: 14px; animation: splash-float 6s ease-in-out -2s infinite; }
.splash-coin--3 { top: 82%; left: 12%; width: 12px; height: 12px; animation: splash-float 7s ease-in-out -4s infinite; }
@keyframes splash-float {
    0%,100% { transform: translateY(0) rotate(0); }
    50%     { transform: translateY(-8px) rotate(8deg); }
}

.splash-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}
@media (min-width: 900px) {
    .splash-hero-inner {
        grid-template-columns: 1.25fr 320px;
        gap: 36px;
    }
}

.splash-content { display: flex; flex-direction: column; gap: 12px; }

.splash-eyebrow {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin: 0 0 4px;
}
.splash-pill-live {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px; font-weight: 700;
    color: #15803d;
    letter-spacing: .02em;
}
.splash-pulse {
    width: 6px; height: 6px;
    background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: splash-pulse-dot 1.6s ease-in-out infinite;
}
@keyframes splash-pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    50%     { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.splash-pill-tag {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    color: #92400e;
    border: 1px solid rgba(245,158,11,.4);
    border-radius: 999px;
    padding: 4px 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: .02em;
}

.splash-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0c4a6e;
    margin: 0;
    letter-spacing: -0.01em;
}
.splash-title em {
    font-style: normal;
    background: linear-gradient(90deg, #1d4ed8, #0284c7, #0ea5e9);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.splash-title strong {
    color: #1d4ed8;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.splash-lead {
    font-size: 15.5px;
    line-height: 1.55;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
}

.splash-cta-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin: 4px 0 0;
}
.splash-cta-main {
    font-size: 15px !important;
    padding: 12px 22px !important;
}
.splash-login-link {
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}
.splash-login-link strong {
    color: #f59e0b;
    font-weight: 700;
}

.splash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 4px 0 0;
}
.splash-stat {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(14,165,233,.15);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: left;
}
.splash-stat-value {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: #f59e0b;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.splash-stat-label {
    display: block;
    font-size: 11px; font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

/* TROPHY (right side on desktop, below on mobile) */
.splash-trophy {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid rgba(251,191,36,.4);
    border-radius: 18px;
    padding: 22px 18px 16px;
    text-align: center;
    box-shadow:
        0 1px 0 rgba(255,255,255,.9) inset,
        0 12px 28px rgba(245,158,11,.18),
        0 4px 8px rgba(14,165,233,.08);
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}
.splash-trophy-ribbon {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    color: #1a0800;
    border: 2px solid #b45309;
    border-radius: 6px;
    padding: 3px 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 2px 4px rgba(146,64,14,.3);
    white-space: nowrap;
}
.splash-trophy-amount {
    display: flex; align-items: baseline; justify-content: center; gap: 4px;
    margin: 4px 0 2px;
}
.splash-trophy-currency {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.6rem; font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #fde68a, #fbbf24 50%, #f59e0b);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 0 rgba(180,83,9,.2);
    font-variant-numeric: tabular-nums;
}
.splash-trophy-unit {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem; font-weight: 600;
    color: #d97706;
}
.splash-trophy-spins {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px; font-weight: 600;
    color: #0c4a6e;
    margin: 0 0 12px;
}
.splash-trophy-cta {
    display: block;
    width: 100%;
    padding: 11px 16px !important;
    font-size: 14px !important;
    margin: 0;
}
.splash-trophy-fineprint {
    margin: 8px 0 0;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.splash-disclaimer {
    margin: 18px auto 0;
    max-width: 720px;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.splash-disclaimer a {
    color: #0284c7;
    text-decoration: underline;
}

