/* ══════════════════════════════════════════════════
   LUXURY CASINO  ·  Marble · Gold · Burgundy · Black
   Cinematic Unreal-grade · Behance-winner aesthetic
   ══════════════════════════════════════════════════ */


:root {
  /* Burgundy spectrum (primary action) */
  --cr-orange:        #6B0F1A;
  --cr-orange-mid:    #4A0A12;
  --cr-orange-light:  #FAF3E8;
  --cr-orange-badge:  #C9A961;

  /* Gold spectrum (accents) */
  --cr-yellow:        #C9A961;
  --cr-yellow-dark:   #8B7236;

  /* Marble & cream surfaces */
  --cr-warm-bg:       #FAF7F0;
  --color-paper-white:#FBF9F4;
  --color-light-gray: #F5F1E8;
  --color-silver-mist:#EFE9DA;

  /* Ink & graphite */
  --color-slate-border:#0A0908;
  --color-absolute-black:#0A0908;
  --color-graphite:   #6B6760;

  /* Tonal accents */
  --color-pale-lilac: #F2E5C7;
  --color-soft-lavender:#E8D49B;
  --color-sky-tint:   #F8EFE0;
  --color-sun-mist:   #FBF5E5;
  --color-cloud-blue: #F2E9D5;
  --color-mellow-apricot:#F5EAD0;
  --color-feedback-violet:#6B0F1A;
  --color-agent-blue: #6B0F1A;
  --color-insight-amber:#8B7236;

  /* Cinematic shadow system */
  --shadow-card:      0 1px 3px rgba(10,9,8,.06), 0 8px 24px rgba(107,15,26,.06);
  --shadow-hover:     0 2px 6px rgba(10,9,8,.08), 0 14px 36px rgba(107,15,26,.10), 0 0 0 1px rgba(201,169,97,.55);
  --shadow-elevated:  0 4px 12px rgba(10,9,8,.10), 0 24px 60px rgba(107,15,26,.14);
  --shadow-gold-glow: 0 0 0 1px rgba(201,169,97,.55), 0 6px 20px rgba(201,169,97,.22);
  --shadow-gold-flare:0 0 0 1px var(--cr-yellow), 0 0 24px rgba(232,212,155,.55), 0 12px 36px rgba(201,169,97,.30);

  /* Tight luxury radius */
  --radius-cards:   4px;
  --radius-buttons: 2px;

  /* Gradients */
  --grad-gold:       linear-gradient(135deg, #E8D49B 0%, #C9A961 45%, #8B7236 100%);
  --grad-gold-soft:  linear-gradient(135deg, #F2E5C7 0%, #C9A961 100%);
  --grad-gold-shine: linear-gradient(120deg, #8B7236 0%, #C9A961 20%, #E8D49B 35%, #FFF8E1 50%, #E8D49B 65%, #C9A961 80%, #8B7236 100%);
  --grad-burgundy:   linear-gradient(135deg, #8B1A2A 0%, #6B0F1A 50%, #4A0A12 100%);
  --grad-marble-bg:  radial-gradient(at 25% 25%, rgba(232,212,155,.18) 0%, transparent 55%),
                     radial-gradient(at 80% 70%, rgba(107,15,26,.06) 0%, transparent 55%),
                     linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);

  /* Cinematic transitions */
  --ease-lux:    cubic-bezier(.22, 1, .36, 1);
  --ease-snap:   cubic-bezier(.34, 1.56, .64, 1);
}

html, body { background: var(--cr-warm-bg); }
html { background-image: var(--grad-marble-bg); background-attachment: fixed; }
body {
  background: transparent;
  color: var(--color-absolute-black);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'liga' 1, 'kern' 1;
  overflow-wrap: break-word; word-break: break-word;
}

/* ─── Global keyframes ─────────────────────────── */
@keyframes lux-fade-up {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes lux-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes gold-shimmer {
  0%   { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}
@keyframes gold-pulse-glow {
  0%, 100% { box-shadow: 0 6px 18px rgba(107,15,26,.30), 0 0 0 1px var(--cr-yellow); }
  50%      { box-shadow: 0 8px 32px rgba(201,169,97,.50), 0 0 0 1px var(--cr-yellow), 0 0 0 6px rgba(201,169,97,.18); }
}
@keyframes button-shimmer-pass {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  60%  { transform: translateX(220%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
@keyframes lux-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(201,169,97,.25); }
  50%     { transform: scale(1.18); box-shadow: 0 0 0 6px rgba(201,169,97,.10); }
}
@keyframes roulette-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}
@keyframes particle-float-1 {
  0%, 100% { transform: translate(0, 0); opacity: .35; }
  50%      { transform: translate(8px, -22px); opacity: 1; }
}
@keyframes particle-float-2 {
  0%, 100% { transform: translate(0, 0); opacity: .55; }
  50%      { transform: translate(-12px, -18px); opacity: 1; }
}
@keyframes particle-float-3 {
  0%, 100% { transform: translate(0, 0); opacity: .4; }
  50%      { transform: translate(6px, 14px); opacity: .9; }
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: .25; transform: scale(.9); }
  50%      { opacity: 1; transform: scale(1.2); }
}
@keyframes hero-vignette-breathe {
  0%, 100% { opacity: .85; }
  50%      { opacity: 1; }
}
@keyframes column-glow {
  0%, 100% { opacity: .55; }
  50%      { opacity: .85; }
}
@keyframes card-rise {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes section-reveal {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes underline-grow {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes border-flow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-light-gray); }
::-webkit-scrollbar-thumb {
  background: var(--grad-gold);
  border-radius: 0;
  border: 2px solid var(--color-absolute-black);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #FFF8E1 0%, #C9A961 100%); }
::selection { background: var(--cr-yellow); color: var(--color-absolute-black); }

/* ─── Header — opulent dark marble with gold proscenium ──── */
.header {
  background:
    linear-gradient(180deg,
      rgba(20,16,12,.96) 0%,
      rgba(15,11,9,.97) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,.10) 0%, transparent 60%);
  border-bottom: none;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(201,169,97,.55),
    0 2px 0 rgba(74,10,18,.85),
    0 12px 32px rgba(10,9,8,.30);
  position: sticky; top: 0; z-index: 90;
}
.header::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(232,212,155,.08) 0%, transparent 30%),
    radial-gradient(circle at 82% 50%, rgba(232,212,155,.08) 0%, transparent 30%);
  pointer-events: none;
}
.header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 8s linear infinite;
  opacity: .85;
  box-shadow: 0 0 12px rgba(201,169,97,.40);
}
.header-inner { position: relative; z-index: 2; }

/* Logo: gold-haloed crest */
.logo {
  position: relative;
  padding: 6px 16px 6px 10px;
}
.logo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(201,169,97,.10) 0%,
      rgba(201,169,97,0) 50%,
      rgba(201,169,97,.10) 100%);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .4s var(--ease-lux);
  pointer-events: none;
}
.logo:hover::before { opacity: 1; }
.logo img {
  filter: drop-shadow(0 2px 8px rgba(201,169,97,.45)) brightness(1.05);
  transition: filter .4s var(--ease-lux);
  position: relative;
  z-index: 1;
}
.logo:hover img {
  filter: drop-shadow(0 4px 16px rgba(232,212,155,.70)) brightness(1.15);
}

/* Nav desktop: ornate items with diamond separators */
.nav-list {
  display: flex; align-items: center; gap: 0;
}
.nav-list .nav-item {
  position: relative;
}
.nav-list .nav-item + .nav-item::before {
  content: '◆';
  position: absolute;
  left: -2px; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--cr-yellow);
  font-size: .42rem;
  opacity: .55;
  pointer-events: none;
}
.nav-list .nav-item a {
  color: rgba(251,249,244,.78);
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .76rem;
  border-radius: 0;
  padding: 12px 20px;
  position: relative;
  transition: color .35s var(--ease-lux), text-shadow .35s var(--ease-lux);
}
.nav-list .nav-item a::before {
  content: '';
  position: absolute; left: 50%; top: 8px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--cr-yellow);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .35s var(--ease-lux), top .35s var(--ease-lux);
  box-shadow: 0 0 6px rgba(232,212,155,.65);
}
.nav-list .nav-item a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 4px; height: 1px;
  background: var(--grad-gold);
  transition: left .4s var(--ease-lux), right .4s var(--ease-lux);
}
.nav-list .nav-item a:hover,
.nav-list .nav-item.is-active a {
  color: var(--cr-yellow);
  background: transparent;
  text-shadow: 0 0 12px rgba(232,212,155,.55);
}
.nav-list .nav-item a:hover::before,
.nav-list .nav-item.is-active a::before {
  opacity: 1;
  top: 4px;
}
.nav-list .nav-item a:hover::after,
.nav-list .nav-item.is-active a::after {
  left: 14px; right: 14px;
}

/* Drawer: regal scroll (don't override layout-critical position/transform from base CSS) */
.nav-drawer {
  background:
    linear-gradient(180deg,
      rgba(20,16,12,.98) 0%,
      rgba(15,11,9,.99) 100%);
  border-right: 1px solid rgba(201,169,97,.55);
  box-shadow:
    inset -1px 0 0 rgba(201,169,97,.20),
    12px 0 40px rgba(10,9,8,.40);
}
.nav-drawer::after {
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0; width: 2px;
  background: var(--grad-gold-shine);
  background-size: 100% 200%;
  animation: gold-shimmer 8s linear infinite;
  opacity: .8;
  box-shadow: 0 0 12px rgba(201,169,97,.40);
  pointer-events: none;
}
.nav-drawer-list a {
  color: rgba(251,249,244,.85);
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .84rem;
  padding: 14px 24px;
  position: relative;
  transition: all .35s var(--ease-lux);
}
.nav-drawer-list a::before {
  content: '◆';
  position: absolute;
  left: 6px; top: 50%;
  transform: translateY(-50%);
  color: var(--cr-yellow);
  font-size: .55rem;
  opacity: 0;
  transition: all .35s var(--ease-lux);
}
.nav-drawer-list a:hover {
  color: var(--cr-yellow);
  background: linear-gradient(90deg, rgba(201,169,97,.10) 0%, transparent 80%);
  padding-left: 36px;
  text-shadow: 0 0 12px rgba(232,212,155,.55);
}
.nav-drawer-list a:hover::before { opacity: 1; left: 14px; }

.nav-drawer-top {
  border-bottom: 1px solid rgba(201,169,97,.25);
  padding-bottom: 18px;
}
.drawer-close {
  background: transparent;
  border: 1px solid rgba(201,169,97,.45);
  color: var(--cr-yellow);
  width: 36px; height: 36px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: all .3s var(--ease-lux);
}
.drawer-close::before,
.drawer-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--cr-yellow);
  transform-origin: center;
  box-shadow: 0 0 6px rgba(232,212,155,.55);
}
.drawer-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.drawer-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.drawer-close:hover {
  border-color: var(--cr-yellow);
  background: rgba(201,169,97,.12);
  box-shadow: 0 0 16px rgba(201,169,97,.45);
  transform: rotate(90deg);
}

/* Burger — gold-framed casino chip (mobile only; desktop hides via header inline style) */
.burger {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--cr-yellow);
  border-radius: 2px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.06) 0%,
      rgba(255,255,255,0) 50%,
      rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, #2A2018 0%, #15110C 100%);
  cursor: pointer;
  position: relative;
  transition: all .35s var(--ease-lux);
  box-shadow:
    inset 0 1px 0 rgba(232,212,155,.20),
    inset 0 0 0 1px rgba(232,212,155,.30),
    0 0 0 1px rgba(74,10,18,.55),
    0 4px 0 #0A0908,
    0 6px 14px rgba(10,9,8,.40);
}

/* Decorative corner gems inside burger */
.burger::before,
.burger::after {
  content: '';
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 4px rgba(232,212,155,.65);
  pointer-events: none;
  transition: all .3s var(--ease-lux);
}
.burger::before { top: 5px; left: 5px; }
.burger::after  { top: 5px; right: 5px; }

.burger span {
  background: var(--cr-yellow) !important;
  height: 1.5px !important;
  border-radius: 1px;
  transition: all .35s var(--ease-lux);
  box-shadow: 0 0 4px rgba(232,212,155,.45);
}
/* short-long-short rhythm */
.burger span:nth-child(1) { width: 14px !important; align-self: center; margin-bottom: 4px; }
.burger span:nth-child(2) { width: 22px !important; align-self: center; }
.burger span:nth-child(3) { width: 14px !important; align-self: center; margin-top: 4px; }

.burger:hover {
  border-color: var(--cr-yellow);
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,0) 50%,
      rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, #3A2C20 0%, #1F1812 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(232,212,155,.35),
    inset 0 0 0 1px rgba(232,212,155,.55),
    0 0 0 1px rgba(74,10,18,.55),
    0 6px 0 #0A0908,
    0 12px 24px rgba(10,9,8,.50),
    0 0 24px rgba(201,169,97,.40);
}
.burger:hover::before,
.burger:hover::after {
  width: 5px; height: 5px;
  box-shadow: 0 0 8px rgba(232,212,155,.85);
}
.burger:hover span {
  background: #FFF8E1 !important;
  box-shadow: 0 0 8px rgba(255,248,225,.75);
}
.burger:hover span:nth-child(1),
.burger:hover span:nth-child(3) { width: 22px !important; }
.burger:hover span:nth-child(2) { width: 14px !important; }

.burger:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,.40),
    inset 0 0 0 1px rgba(232,212,155,.30),
    0 0 0 1px rgba(74,10,18,.55),
    0 1px 0 #0A0908,
    0 2px 6px rgba(10,9,8,.30);
}


/* ─── Buttons — VIP casino token (3D depth, double gold rim) ─────── */
@keyframes btn-corner-glint {
  0%, 100% { opacity: .55; transform: translateY(-50%) rotate(45deg) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) rotate(45deg) scale(1.25); }
}

a.btn.btn-primary, button.btn.btn-primary, .btn.btn-primary, .btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,0) 18%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,.20) 100%),
    linear-gradient(180deg, #8B1A2A 0%, #6B0F1A 50%, #4A0A12 100%) !important;
  color: #FBF9F4 !important;
  border: 2px solid var(--cr-yellow) !important;
  font-family: 'Cinzel', 'Playfair Display', serif !important;
  font-weight: 600 !important;
  font-size: .84rem;
  letter-spacing: .22em !important;
  text-transform: uppercase;
  border-radius: 2px !important;
  padding: 16px 42px;
  text-shadow: 0 1px 0 rgba(0,0,0,.35) !important;
  text-decoration: none;
  position: relative;
  overflow: visible !important;
  isolation: isolate;
  animation: none !important;
  transition:
    transform .25s var(--ease-snap),
    box-shadow .35s var(--ease-lux),
    background .35s var(--ease-lux),
    letter-spacing .35s var(--ease-lux) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,248,225,.30),
    inset 0 -2px 0 rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(232,212,155,.45),
    0 0 0 1px #4A0A12,
    0 0 0 3px var(--cr-yellow-dark),
    0 6px 0 0 #2A050A,
    0 8px 18px rgba(10,9,8,.28),
    0 0 24px rgba(201,169,97,.10) !important;
  cursor: pointer;
}

/* corner ornament — left */
.btn-primary::before {
  content: '' !important;
  position: absolute !important;
  left: 10px !important; top: 50% !important;
  inset: auto auto auto 10px !important;
  width: 6px !important; height: 6px !important;
  background: var(--cr-yellow) !important;
  transform: translateY(-50%) rotate(45deg) !important;
  box-shadow:
    0 0 0 1px rgba(74,10,18,.6),
    0 0 8px rgba(232,212,155,.65) !important;
  opacity: .85 !important;
  pointer-events: none !important;
  border-radius: 0 !important;
  animation: none !important;
  display: block !important;
  transition: none !important;
}

/* corner ornament — right (mirror) */
.btn-primary::after {
  content: '' !important;
  position: absolute !important;
  right: 10px !important; left: auto !important; top: 50% !important;
  inset: auto 10px auto auto !important;
  width: 6px !important; height: 6px !important;
  background: var(--cr-yellow) !important;
  transform: translateY(-50%) rotate(45deg) !important;
  box-shadow:
    0 0 0 1px rgba(74,10,18,.6),
    0 0 8px rgba(232,212,155,.65) !important;
  opacity: .85 !important;
  pointer-events: none !important;
  border-radius: 0 !important;
  animation: none !important;
  display: block !important;
  transition: none !important;
}

a.btn.btn-primary:hover, button.btn.btn-primary:hover, .btn.btn-primary:hover, .btn-primary:hover {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.15) 0%,
      rgba(255,255,255,0) 22%,
      rgba(0,0,0,0) 68%,
      rgba(0,0,0,.22) 100%),
    linear-gradient(180deg, #A02236 0%, #7E1521 50%, #5A0F18 100%) !important;
  color: #FFF8E1 !important;
  letter-spacing: .26em !important;
  transform: translateY(-3px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,248,225,.45),
    inset 0 -2px 0 rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(255,248,225,.55),
    0 0 0 1px #4A0A12,
    0 0 0 3px var(--cr-yellow),
    0 9px 0 0 #2A050A,
    0 14px 28px rgba(107,15,26,.40),
    0 0 36px rgba(201,169,97,.40) !important;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
  animation: btn-corner-glint 1.6s ease-in-out infinite;
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(232,212,155,.45),
    0 0 0 1px #4A0A12,
    0 0 0 3px var(--cr-yellow-dark),
    0 1px 0 0 #2A050A,
    0 2px 6px rgba(10,9,8,.25);
}

.btn-primary.btn-lg {
  padding: 20px 56px;
  font-size: .94rem;
  letter-spacing: .26em;
}
.btn-primary.btn-lg::before { left: 14px; width: 7px; height: 7px; }
.btn-primary.btn-lg::after  { right: 14px; width: 7px; height: 7px; }
.btn-primary.btn-sm {
  padding: 10px 24px;
  font-size: .72rem;
  letter-spacing: .18em;
}
.btn-primary.btn-sm::before,
.btn-primary.btn-sm::after { width: 5px; height: 5px; }

/* ─── Secondary — ivory chip with gold-cream depth ─────────────── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.6) 0%,
      rgba(255,255,255,0) 30%,
      rgba(139,114,54,.05) 80%,
      rgba(139,114,54,.12) 100%),
    linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 100%);
  color: var(--cr-orange);
  border: 2px solid var(--cr-yellow);
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 16px 42px;
  text-decoration: none;
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition:
    transform .25s var(--ease-snap),
    box-shadow .35s var(--ease-lux),
    background .35s var(--ease-lux),
    color .3s var(--ease-lux),
    letter-spacing .35s var(--ease-lux);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -2px 0 rgba(139,114,54,.18),
    inset 0 0 0 1px rgba(255,248,225,.55),
    0 0 0 1px rgba(232,212,155,.5),
    0 0 0 3px rgba(201,169,97,.35),
    0 6px 0 0 rgba(139,114,54,.30),
    0 8px 16px rgba(10,9,8,.08);
  cursor: pointer;
}

.btn-secondary::before,
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  background: var(--cr-orange);
  transform: translateY(-50%) rotate(45deg);
  box-shadow:
    0 0 0 1px rgba(232,212,155,.6),
    0 0 6px rgba(107,15,26,.25);
  opacity: .8;
  pointer-events: none;
}
.btn-secondary::before { left: 10px; }
.btn-secondary::after  { right: 10px; }

.btn-secondary:hover {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.7) 0%,
      rgba(255,255,255,0) 30%,
      rgba(139,114,54,.08) 80%,
      rgba(139,114,54,.18) 100%),
    linear-gradient(180deg, #FFF8E1 0%, #E8D49B 100%);
  color: var(--cr-orange-mid);
  letter-spacing: .26em;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -2px 0 rgba(139,114,54,.20),
    inset 0 0 0 1px rgba(255,248,225,.85),
    0 0 0 1px rgba(201,169,97,.7),
    0 0 0 3px var(--cr-yellow),
    0 9px 0 0 rgba(139,114,54,.40),
    0 14px 26px rgba(201,169,97,.30),
    0 0 28px rgba(232,212,155,.45);
}

.btn-secondary:hover::before,
.btn-secondary:hover::after {
  animation: btn-corner-glint 1.6s ease-in-out infinite;
}

.btn-secondary:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 4px rgba(139,114,54,.25),
    inset 0 0 0 1px rgba(255,248,225,.6),
    0 0 0 1px rgba(232,212,155,.5),
    0 0 0 3px rgba(201,169,97,.35),
    0 1px 0 0 rgba(139,114,54,.30),
    0 2px 6px rgba(10,9,8,.08);
}

.btn-secondary.btn-lg { padding: 20px 56px; font-size: .94rem; letter-spacing: .26em; }
.btn-secondary.btn-sm { padding: 10px 24px; font-size: .72rem; letter-spacing: .18em; }

/* ─── Ghost — minimal serif link button with sliding underline ─── */
.btn-ghost {
  color: var(--cr-orange);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .92rem;
  letter-spacing: .04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
  transition: all .35s var(--ease-lux);
  background: transparent;
  border: none;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(.3);
  transform-origin: left center;
  transition: transform .4s var(--ease-lux);
}
.btn-ghost:hover {
  color: var(--cr-yellow-dark);
  letter-spacing: .08em;
  background: transparent;
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* ─── Hero — marble & gold proscenium with roulette ─── */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,.20) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(107,15,26,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(232,212,155,.18) 0%, transparent 55%),
    linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 60%, #EFE2C7 100%);
  border-bottom: 1px solid rgba(201,169,97,.45);
  position: relative; overflow: hidden;
  padding: 88px 0 96px;
  isolation: isolate;
  animation: lux-fade-in 1.2s var(--ease-lux);
}

/* Marble columns silhouette (left + right) */
.hero::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  pointer-events: none; z-index: 0;
  background:
    /* left column */
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,.0) 1%,
      rgba(232,212,155,.18) 2%,
      rgba(255,255,255,.55) 3.5%,
      rgba(232,212,155,.30) 5%,
      transparent 7%),
    /* right column */
    linear-gradient(270deg,
      transparent 0%,
      rgba(232,212,155,.18) 2%,
      rgba(255,255,255,.55) 3.5%,
      rgba(232,212,155,.30) 5%,
      transparent 7%),
    /* gold sparkles */
    radial-gradient(circle at 12% 22%, rgba(232,212,155,.65) 0%, transparent 1.2%),
    radial-gradient(circle at 78% 18%, rgba(232,212,155,.55) 0%, transparent 1%),
    radial-gradient(circle at 38% 70%, rgba(232,212,155,.50) 0%, transparent .9%),
    radial-gradient(circle at 88% 80%, rgba(232,212,155,.60) 0%, transparent 1.2%),
    radial-gradient(circle at 22% 88%, rgba(232,212,155,.45) 0%, transparent 1%);
  animation: hero-vignette-breathe 6s ease-in-out infinite, column-glow 8s ease-in-out infinite;
}

/* Roulette wheel decoration */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -180px;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      #6B0F1A 0deg, #6B0F1A 22.5deg,
      #C9A961 22.5deg, #E8D49B 45deg,
      #0A0908 45deg, #0A0908 67.5deg,
      #C9A961 67.5deg, #8B7236 90deg,
      #6B0F1A 90deg, #6B0F1A 112.5deg,
      #C9A961 112.5deg, #E8D49B 135deg,
      #0A0908 135deg, #0A0908 157.5deg,
      #C9A961 157.5deg, #8B7236 180deg,
      #6B0F1A 180deg, #6B0F1A 202.5deg,
      #C9A961 202.5deg, #E8D49B 225deg,
      #0A0908 225deg, #0A0908 247.5deg,
      #C9A961 247.5deg, #8B7236 270deg,
      #6B0F1A 270deg, #6B0F1A 292.5deg,
      #C9A961 292.5deg, #E8D49B 315deg,
      #0A0908 315deg, #0A0908 337.5deg,
      #C9A961 337.5deg, #8B7236 360deg);
  border: 8px solid #C9A961;
  box-shadow:
    0 0 0 4px #6B0F1A,
    0 0 0 8px #C9A961,
    0 0 80px rgba(201,169,97,.45),
    inset 0 0 0 80px rgba(10,9,8,.85),
    inset 0 0 0 84px #C9A961,
    inset 0 0 0 124px transparent,
    inset 0 0 100px rgba(0,0,0,.4);
  animation: roulette-spin 90s linear infinite;
  opacity: .45;
  z-index: 1;
  filter: blur(.3px) saturate(1.1);
}
@media (max-width: 1024px) {
  .hero::after { width: 360px; height: 360px; right: -200px; opacity: .25; }
}
@media (max-width: 640px) {
  .hero::after { display: none; }
}

.hero-inner, .hero-feathers { position: relative; z-index: 2; }
.hero-inner > * { animation: lux-fade-up .9s var(--ease-lux) both; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3) { animation-delay: .25s; }
.hero-inner > *:nth-child(4) { animation-delay: .35s; }
.hero-inner > *:nth-child(5) { animation-delay: .45s; }
.hero-inner > *:nth-child(6) { animation-delay: .55s; }
.hero-inner > *:nth-child(7) { animation-delay: .65s; }

.feather-1 { background: var(--cr-yellow) !important; border-radius: 50% !important; opacity: .55; animation: particle-float-1 5s ease-in-out infinite, sparkle-twinkle 3s ease-in-out infinite; }
.feather-2 { background: var(--cr-yellow) !important; border-radius: 50% !important; opacity: .55; animation: particle-float-2 6s ease-in-out infinite, sparkle-twinkle 4s ease-in-out infinite; }
.feather-3 { background: var(--cr-yellow) !important; border-radius: 50% !important; opacity: .55; animation: particle-float-3 7s ease-in-out infinite, sparkle-twinkle 3.5s ease-in-out infinite; }
.feather-4 { background: var(--cr-yellow-dark) !important; border-radius: 50% !important; opacity: .35; animation: particle-float-2 8s ease-in-out infinite, sparkle-twinkle 5s ease-in-out infinite; }
.feather-5 { background: var(--cr-yellow-dark) !important; border-radius: 50% !important; opacity: .35; animation: particle-float-1 6.5s ease-in-out infinite, sparkle-twinkle 4.5s ease-in-out infinite; }
.feather-6 { background: var(--cr-yellow-dark) !important; border-radius: 50% !important; opacity: .35; animation: particle-float-3 7.5s ease-in-out infinite, sparkle-twinkle 3.8s ease-in-out infinite; }

.hero-label {
  background: var(--grad-burgundy); color: var(--cr-yellow);
  border: 1px solid var(--cr-yellow);
  border-radius: 0;
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 600; letter-spacing: .26em; font-size: .7rem; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(107,15,26,.25), inset 0 0 0 1px rgba(232,212,155,.20);
  padding: 10px 22px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-label::before, .hero-label::after {
  content: '◆';
  font-size: .55rem; color: var(--cr-yellow); opacity: .8;
}
.hero-live {
  color: var(--cr-yellow-dark);
  font-family: 'Cinzel', serif;
  font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .76rem;
}
.hero-live::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background: var(--cr-orange); border-radius: 50%; border: 1px solid var(--cr-yellow);
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(201,169,97,.25);
  animation: lux-pulse 2.2s ease-in-out infinite;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  color: var(--color-absolute-black);
  letter-spacing: 0;
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-absolute-black);
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  text-shadow: none;
  margin-bottom: 1.5rem;
}
.hero-title .cr-word {
  background: linear-gradient(120deg,
    #4A0A12 0%,
    #6B0F1A 22%,
    #A02236 38%,
    #C9354A 50%,
    #A02236 62%,
    #6B0F1A 78%,
    #4A0A12 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-style: italic;
  animation: gold-shimmer 6s linear infinite;
  filter: drop-shadow(0 2px 0 rgba(74,10,18,.22));
}

.hero-offer-pill {
  background: linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 100%);
  border: 1px solid var(--cr-yellow);
  border-radius: 2px;
  box-shadow: var(--shadow-gold-glow);
  outline: 1px solid rgba(201,169,97,.30);
  outline-offset: 4px;
  transition: all .5s var(--ease-lux);
  position: relative;
}
.hero-offer-pill::before {
  content: ''; position: absolute; inset: -4px; border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--cr-yellow), transparent);
  background-size: 200% 100%;
  animation: gold-shimmer 6s linear infinite;
  opacity: .35;
  z-index: -1;
}
.hero-offer-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-flare);
}
.hero-offer-amount {
  color: var(--cr-orange); font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.02em; font-size: 1.7em;
  font-style: italic;
  text-shadow: 0 1px 0 rgba(201,169,97,.20);
}
.hero-offer-spins strong { color: var(--cr-yellow-dark); font-weight: 700; font-family: 'Cinzel', serif; letter-spacing: .12em; text-transform: uppercase; font-size: .9em; }
.hero-offer-spins em { color: var(--color-graphite); font-style: italic; font-family: 'Playfair Display', serif; }

.hero-main-cta { font-family: 'Cinzel', 'Playfair Display', serif; }

.hero-trust-row li {
  color: var(--color-absolute-black);
  border: 1px solid rgba(201,169,97,.55) !important;
  border-radius: 2px;
  background: rgba(251,249,244,.7);
  font-family: 'Cinzel', serif;
  font-weight: 500; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 16px;
  backdrop-filter: blur(4px);
  transition: all .35s var(--ease-lux);
}
.hero-trust-row li:hover {
  background: rgba(251,245,229,.95);
  border-color: var(--cr-yellow) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,97,.20);
}
.hero-trust-row li::before { content: none !important; }
.hero-disclaimer { color: var(--color-graphite); font-family: 'Playfair Display', serif; font-style: italic; font-size: .82rem; }
.hero-login-link { color: var(--color-graphite); font-weight: 500; font-family: 'Playfair Display', serif; font-style: italic; transition: color .3s var(--ease-lux); }
.hero-login-link:hover { color: var(--cr-orange); }
.hero-login-link strong { color: var(--cr-orange); font-weight: 700; font-style: normal; font-family: 'Cinzel', serif; letter-spacing: .1em; text-transform: uppercase; font-size: .82em; }

/* ─── Trust strip ─────────────────────────────── */
.trust-strip {
  background: #FBF9F4;
  border-top: 1px solid rgba(201,169,97,.45);
  border-bottom: 1px solid rgba(201,169,97,.45);
  position: relative;
}
.trust-strip::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 10s linear infinite;
}
.trust-pillar {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border: 1px solid rgba(201,169,97,.40);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  transition: all .45s var(--ease-lux);
  position: relative;
  overflow: hidden;
  animation: card-rise .8s var(--ease-lux) both;
}
.trust-pillar::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-gold);
}
.trust-pillar::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,248,225,.35), transparent);
  transition: left .8s var(--ease-lux);
}
.trust-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--cr-yellow);
}
.trust-pillar:hover::after { left: 120%; }
.tp-title {
  color: var(--cr-orange);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.tp-text { color: var(--color-graphite); font-weight: 400; font-family: 'Inter', sans-serif; }

.section { background: transparent; animation: section-reveal 1s var(--ease-lux) both; }
.section:nth-child(even) {
  background: linear-gradient(180deg, rgba(251,249,244,.6) 0%, rgba(245,241,232,.5) 100%);
  border-top: 1px solid rgba(201,169,97,.18);
  border-bottom: 1px solid rgba(201,169,97,.18);
}

.section-label {
  background: var(--grad-burgundy) !important;
  color: var(--cr-yellow) !important;
  border: 1px solid var(--cr-yellow) !important;
  border-radius: 0 !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 600 !important;
  letter-spacing: .26em !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 6px rgba(107,15,26,.18) !important;
  padding: 6px 18px !important;
}
.section-title {
  color: var(--color-absolute-black) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0 !important;
  font-weight: 700 !important;
}
.section-lead { color: var(--color-graphite) !important; font-weight: 400 !important; font-family: 'Playfair Display', serif !important; font-style: italic !important; }

/* ─── Prose ──────────────────────────────────── */
.prose { color: var(--color-absolute-black); line-height: 1.78; font-size: 17px; }
.prose p { color: #2A2724; }
.prose h2 {
  color: var(--color-absolute-black);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
  border-left: none;
  padding-left: 0;
  margin-top: 3.2rem;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
  position: relative;
}
.prose h2::after {
  content: ''; display: block;
  width: 80px; height: 2px;
  background: var(--grad-gold);
  margin-top: 16px;
  transform-origin: left center;
  animation: underline-grow .9s var(--ease-lux) both;
  animation-delay: .2s;
}
.prose h3 { color: var(--color-absolute-black); font-family: 'Playfair Display', Georgia, serif; font-weight: 600; letter-spacing: 0; }
.prose strong { color: var(--cr-orange); font-weight: 700; }
.prose em { color: var(--cr-yellow-dark); font-style: italic; font-weight: 500; }
.prose a {
  color: var(--cr-orange);
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(var(--cr-yellow), var(--cr-yellow));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: all .4s var(--ease-lux);
  padding-bottom: 2px;
}
.prose a:hover {
  color: var(--cr-yellow-dark);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--cr-yellow-dark), var(--cr-yellow-dark));
}
.prose ol { list-style: none; counter-reset: prose-counter; padding: 0; }
.prose ol li {
  counter-increment: prose-counter;
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 18px;
  color: #2A2724;
  transition: transform .3s var(--ease-lux);
}
.prose ol li:hover { transform: translateX(4px); }
.prose ol li::before {
  content: counter(prose-counter);
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--grad-gold);
  color: var(--color-absolute-black);
  font-family: 'Cinzel', serif;
  font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--cr-yellow-dark);
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(139,114,54,.25), inset 0 1px 0 rgba(255,255,255,.4);
  transition: all .35s var(--ease-lux);
}
.prose ol li:hover::before {
  box-shadow: 0 4px 14px rgba(201,169,97,.45), inset 0 1px 0 rgba(255,255,255,.6);
  transform: scale(1.05);
}
.prose ul li { padding-left: 28px; position: relative; color: #2A2724; margin-bottom: 12px; font-weight: 400; }
.prose ul li::before {
  content: '◆';
  position: absolute; left: 0; color: var(--cr-yellow-dark);
  font-size: .72rem; top: 8px;
  transition: color .3s var(--ease-lux), transform .3s var(--ease-lux);
}
.prose ul li:hover::before { color: var(--cr-orange); transform: rotate(45deg); }
.prose blockquote {
  border-left: 3px solid var(--cr-yellow);
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(251,245,229,.7) 0%, rgba(242,229,199,.5) 100%);
  border-radius: 0 4px 4px 0;
  margin: 30px 0;
  color: #2A2724;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08rem;
  box-shadow: 0 4px 14px rgba(107,15,26,.06);
  position: relative;
}
.prose blockquote::before {
  content: '\201C';
  position: absolute; top: -8px; left: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem; color: var(--cr-yellow-dark); opacity: .35;
  line-height: 1;
}
p { color: #2A2724; }
li { color: #2A2724; }
a { color: var(--cr-orange); font-weight: 500; }
a:hover { color: var(--cr-yellow-dark); }

/* ─── TOC ────────────────────────────────────── */
.toc {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border: 1px solid rgba(201,169,97,.45);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  padding: 22px 26px;
  transition: all .4s var(--ease-lux);
}
.toc:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--cr-yellow);
}
.toc-title {
  color: var(--cr-orange) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0 !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
}
.toc-list a {
  color: var(--cr-orange);
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  transition: all .3s var(--ease-lux);
}
.toc-list a:hover { color: var(--cr-yellow-dark); padding-left: 4px; }

/* ─── Feature cards ──────────────────────────── */
.feature-card {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border: 1px solid rgba(201,169,97,.40);
  border-top: 2px solid var(--cr-yellow);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  transition: all .45s var(--ease-lux);
  position: relative;
  overflow: hidden;
  animation: card-rise .8s var(--ease-lux) both;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,248,225,.45), transparent);
  transition: left .8s var(--ease-lux);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--cr-yellow);
  border-top-color: var(--cr-yellow);
}
.feature-card:hover::after { left: 120%; }
.fc-title {
  color: var(--color-absolute-black) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0 !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
}
.fc-text { color: var(--color-graphite) !important; font-weight: 400 !important; font-family: 'Inter', sans-serif !important; }

/* ─── Spec items ─────────────────────────────── */
.spec-item {
  background: linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 100%);
  border: 1px solid rgba(201,169,97,.40);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  transition: all .35s var(--ease-lux);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
}
.spec-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cr-yellow), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease-lux);
}
.spec-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-glow);
  border-color: var(--cr-yellow);
}
.spec-item:hover::before { opacity: 1; }
.spec-label {
  color: var(--color-graphite) !important;
  font-family: 'Cinzel', serif;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.spec-value {
  color: var(--cr-orange) !important;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
  font-size: 1.22rem;
  font-style: italic;
}
.game-specs .spec-item--feature {
  background: var(--grad-gold) !important;
  border-color: var(--cr-yellow-dark) !important;
}

.card, .card-base {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border: 1px solid rgba(201,169,97,.40);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

/* ─── Tables ─────────────────────────────────── */
.table-wrap {
  border: 1px solid var(--cr-yellow);
  border-radius: 4px;
  overflow-x: visible;
  box-shadow: var(--shadow-card);
  background: #FBF9F4;
  position: relative;
}
.review-table { width: 100%; table-layout: auto; }

@media (max-width: 768px) {
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.review-table thead tr { background: var(--grad-burgundy) !important; }
.review-table thead th {
  color: var(--cr-yellow) !important;
  border-bottom: 1px solid var(--cr-yellow) !important;
  font-family: 'Cinzel', serif;
  letter-spacing: .18em;
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 16px;
}
.review-table tbody tr { border-bottom: 1px solid rgba(201,169,97,.30); transition: all .3s var(--ease-lux); }
.review-table tbody tr:nth-child(odd) { background: #FBF9F4; }
.review-table tbody tr:nth-child(even) { background: #F5F1E8; }
.review-table tbody tr:hover { background: linear-gradient(90deg, #F2E5C7 0%, #FBF5E5 100%) !important; transform: scale(1.005); }
.review-table tbody td { color: #2A2724; font-weight: 400; padding: 16px 14px; }
.review-table tbody td:first-child { color: var(--cr-orange); font-weight: 700; font-family: 'Playfair Display', serif; }

/* ─── CTA compact ────────────────────────────── */
.cta-compact {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, #FBF9F4 0%, #F0EAD9 100%);
  border: 1px solid rgba(201,169,97,.55);
  border-left: 3px solid var(--cr-yellow);
  border-radius: 4px;
  padding: 26px 30px;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all .4s var(--ease-lux);
  overflow: hidden;
}
.cta-compact::before {
  content: '';
  position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,248,225,.5), transparent);
  transition: left 1s var(--ease-lux);
}
.cta-compact:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--cr-orange);
}
.cta-compact:hover::before { left: 150%; }
.cta-compact-text { color: #2A2724; font-size: 15px; font-weight: 400; font-family: 'Playfair Display', serif; font-style: italic; }
.cta-compact-text strong { color: var(--cr-orange); font-weight: 700; font-style: normal; font-family: 'Cinzel', serif; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 6px; font-size: .92rem; }
.cta-compact .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ─── CTA block ──────────────────────────────── */
.cta-block {
  background: linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 100%) !important;
  border: 1px solid var(--cr-yellow) !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow-elevated) !important;
  position: relative; overflow: hidden;
  outline: 1px solid rgba(201,169,97,.30);
  outline-offset: 4px;
  padding: 52px 36px;
}
.cta-block-inner {
  background: transparent !important;
  color: var(--color-absolute-black) !important;
}
.cta-block::before {
  content: '';
  position: absolute; top: -50%; right: -25%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,.18) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-vignette-breathe 5s ease-in-out infinite;
}
.cta-block::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 6s linear infinite;
}
.cta-pretitle {
  color: var(--cr-yellow-dark) !important;
  font-family: 'Cinzel', serif;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .76rem;
}
.cta-title {
  color: var(--color-absolute-black) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0 !important;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}
.cta-body { color: var(--color-graphite) !important; font-weight: 400 !important; font-family: 'Inter', sans-serif !important; }
.cta-disclaimer { color: var(--color-graphite) !important; opacity: .75; font-style: italic; font-family: 'Playfair Display', serif; }

.cta-section { background: transparent !important; }
.cta-banner {
  background: var(--grad-burgundy) !important;
  border: 1px solid var(--cr-yellow) !important;
  box-shadow: 0 12px 40px rgba(107,15,26,.30), 0 0 0 1px var(--cr-yellow) inset !important;
  outline: 1px solid rgba(201,169,97,.40);
  outline-offset: 4px;
  position: relative;
}
.cta-banner::before { background: radial-gradient(circle, rgba(232,212,155,.22) 0%, transparent 65%) !important; animation: hero-vignette-breathe 4s ease-in-out infinite; }
.cta-banner::after { background: var(--grad-gold-shine); background-size: 200% 100%; animation: gold-shimmer 5s linear infinite; }
.cta-banner .btn-primary {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.45) 0%,
      rgba(255,255,255,0) 30%,
      rgba(139,114,54,.10) 80%,
      rgba(139,114,54,.25) 100%),
    var(--grad-gold) !important;
  color: var(--cr-orange-mid) !important;
  border-color: var(--cr-yellow-dark) !important;
  text-shadow: 0 1px 0 rgba(255,248,225,.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    inset 0 -2px 0 rgba(74,10,18,.30),
    inset 0 0 0 1px rgba(255,248,225,.65),
    0 0 0 1px var(--cr-yellow-dark),
    0 0 0 3px rgba(74,10,18,.35),
    0 6px 0 0 #5A3D17,
    0 8px 22px rgba(139,114,54,.40),
    0 0 28px rgba(232,212,155,.45) !important;
  animation: gold-pulse-glow 3s ease-in-out infinite;
}
.cta-banner .btn-primary::before,
.cta-banner .btn-primary::after {
  background: var(--cr-orange) !important;
  box-shadow:
    0 0 0 1px rgba(255,248,225,.7),
    0 0 8px rgba(107,15,26,.55) !important;
}
.cta-banner .btn-primary:hover {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.55) 0%,
      rgba(255,255,255,0) 30%,
      rgba(139,114,54,.10) 80%,
      rgba(139,114,54,.30) 100%),
    linear-gradient(135deg, #FFF8E1 0%, #E8D49B 60%, #C9A961 100%) !important;
  color: var(--cr-orange-mid) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -2px 0 rgba(74,10,18,.30),
    inset 0 0 0 1px rgba(255,248,225,.85),
    0 0 0 1px var(--cr-yellow-dark),
    0 0 0 3px rgba(74,10,18,.40),
    0 9px 0 0 #5A3D17,
    0 14px 30px rgba(139,114,54,.50),
    0 0 40px rgba(232,212,155,.65) !important;
}
.cta-banner .btn-primary:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 4px rgba(74,10,18,.25),
    inset 0 0 0 1px rgba(255,248,225,.55),
    0 0 0 1px var(--cr-yellow-dark),
    0 0 0 3px rgba(74,10,18,.35),
    0 1px 0 0 #5A3D17,
    0 2px 6px rgba(139,114,54,.20) !important;
}
.cta-banner-label {
  background: rgba(201,169,97,.18) !important;
  color: var(--cr-yellow) !important;
  border: 1px solid var(--cr-yellow) !important;
  font-family: 'Cinzel', serif;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.cta-banner-title {
  color: #FBF9F4 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0;
  font-weight: 700;
}
.cta-banner-text { color: rgba(251,249,244,.85) !important; font-family: 'Inter', sans-serif; }

/* ─── FAQ ────────────────────────────────────── */
.faq-section { background: transparent !important; }
.faq-row {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border: 1px solid rgba(201,169,97,.40);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  transition: all .45s var(--ease-lux);
  overflow: hidden;
}
.faq-row:hover {
  border-color: var(--cr-yellow);
  box-shadow: var(--shadow-gold-glow);
}
.faq-row.is-open {
  background: linear-gradient(180deg, #FBF5E5 0%, #F2E5C7 100%);
  border-color: var(--cr-yellow);
  box-shadow: var(--shadow-gold-flare);
}
.faq-row .question { color: var(--color-absolute-black); font-weight: 600; font-family: 'Playfair Display', serif; transition: color .3s var(--ease-lux); }
.faq-row:hover .question { color: var(--cr-orange); }
.faq-row .q-icon {
  background: var(--grad-gold) !important;
  color: var(--color-absolute-black) !important;
  border-radius: 2px;
  border: 1px solid var(--cr-yellow-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  transition: all .35s var(--ease-lux);
}
.faq-row:hover .q-icon { box-shadow: 0 4px 12px rgba(201,169,97,.40); transform: scale(1.05); }
.faq-row .chevron { color: var(--cr-yellow-dark) !important; transition: transform .4s var(--ease-lux), color .3s var(--ease-lux); }
.faq-row.is-open .chevron { color: var(--cr-orange) !important; transform: rotate(180deg); }
.faq-row .answer, .faq-row .answer p { color: #2A2724; font-weight: 400; font-family: 'Inter', sans-serif; }

.badge-violet { background: rgba(107,15,26,.10) !important; color: var(--cr-orange) !important; border: 1px solid var(--cr-yellow) !important; }
.badge-amber  { background: rgba(201,169,97,.18) !important; color: var(--cr-yellow-dark) !important; border: 1px solid var(--cr-yellow) !important; }
.badge-blue   { background: rgba(232,212,155,.30) !important; color: var(--cr-yellow-dark) !important; border: 1px solid var(--cr-yellow) !important; }

/* ─── Testimonials ───────────────────────────── */
.testimonials-section {
  background: linear-gradient(180deg, #F5F1E8 0%, #EFE2C7 100%) !important;
  border-top: 1px solid rgba(201,169,97,.45);
  border-bottom: 1px solid rgba(201,169,97,.45);
  position: relative;
}
.testimonials-section::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 12s linear infinite;
}
.testimonial-card {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%) !important;
  border: 1px solid rgba(201,169,97,.45) !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow-card) !important;
  position: relative;
  transition: all .45s var(--ease-lux);
  animation: card-rise .9s var(--ease-lux) both;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -16px; left: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem; color: var(--cr-yellow);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(139,114,54,.20);
  transition: transform .4s var(--ease-lux);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--cr-yellow) !important;
}
.testimonial-card:hover::before { transform: scale(1.15) rotate(-8deg); }
.testimonials-grid .testimonial-card:nth-child(3n+1) { background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%) !important; }
.testimonials-grid .testimonial-card:nth-child(3n+2) { background: linear-gradient(180deg, #FBF5E5 0%, #F2E5C7 100%) !important; }
.testimonials-grid .testimonial-card:nth-child(3n+3) { background: linear-gradient(180deg, #FBF9F4 0%, #EFE2C7 100%) !important; }
.testimonial-quote { color: #2A2724 !important; font-weight: 400 !important; font-family: 'Playfair Display', Georgia, serif !important; font-style: italic !important; font-size: 1.04rem; }
.testimonial-name { color: var(--color-absolute-black) !important; font-weight: 700 !important; font-family: 'Cinzel', serif !important; letter-spacing: .14em; text-transform: uppercase; font-size: .88rem; }
.testimonial-location { color: var(--color-graphite) !important; font-family: 'Playfair Display', serif; font-style: italic; }
.testimonial-stars svg { color: var(--cr-yellow-dark) !important; fill: var(--cr-yellow-dark) !important; }
.testimonial-kicker { color: var(--cr-orange) !important; font-weight: 600 !important; font-family: 'Cinzel', serif !important; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }

/* ─── Author strip ───────────────────────────── */
.cz-author-strip {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
  border-top: 1px solid rgba(201,169,97,.45);
  border-bottom: 1px solid rgba(201,169,97,.45);
  position: relative;
}
.cz-author-strip::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 10s linear infinite;
}
.cz-author__kicker {
  color: var(--cr-yellow-dark) !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
}
.cz-author__name,
.cz-author__name a {
  color: var(--color-absolute-black) !important;
  font-weight: 700 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.5rem;
  margin: 6px 0;
  transition: color .3s var(--ease-lux);
}
.cz-author__name a:hover { color: var(--cr-orange) !important; }
.cz-author__bio { color: var(--color-graphite) !important; font-weight: 400 !important; font-family: 'Inter', sans-serif !important; }
.cz-author__more {
  color: var(--cr-orange) !important;
  font-weight: 600 !important;
  font-family: 'Cinzel', serif !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: all .3s var(--ease-lux);
  position: relative;
}
.cz-author__more::after {
  content: '→'; display: inline-block; margin-left: 8px;
  transition: transform .3s var(--ease-lux);
}
.cz-author__more:hover { color: var(--cr-yellow-dark) !important; }
.cz-author__more:hover::after { transform: translateX(4px); }
.cz-author__img-wrap {
  border: 1px solid var(--cr-yellow);
  border-radius: 4px;
  box-shadow: var(--shadow-gold-glow);
  outline: 1px solid rgba(201,169,97,.30);
  outline-offset: 4px;
  transition: all .4s var(--ease-lux);
}
.cz-author__img-wrap:hover {
  box-shadow: var(--shadow-gold-flare);
  transform: scale(1.02);
}

/* ─── Mult showcase ──────────────────────────── */
.mult-showcase {
  background: var(--grad-burgundy) !important;
  border-top: 1px solid var(--cr-yellow);
  border-bottom: 1px solid var(--cr-yellow);
}
.mult-showcase::before { background: radial-gradient(ellipse, rgba(201,169,97,.20) 0%, transparent 70%) !important; animation: hero-vignette-breathe 5s ease-in-out infinite; }
.mult-card {
  background: rgba(10,9,8,.5) !important;
  border: 1px solid var(--cr-yellow) !important;
  border-radius: 4px !important;
  transition: all .4s var(--ease-lux);
}
.mult-card:hover {
  background: rgba(10,9,8,.7) !important;
  border-color: var(--cr-yellow-dark) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 1px var(--cr-yellow), 0 0 24px rgba(201,169,97,.30) !important;
}
.mult-card::before { background: linear-gradient(90deg, transparent, var(--cr-yellow), transparent) !important; }
.mult-value { font-family: 'Playfair Display', Georgia, serif !important; font-weight: 700 !important; font-style: italic; }
.mult-5x  { color: #C9A961 !important; }
.mult-10x { color: #E8D49B !important; }
.mult-25x { color: #FFF8E1 !important; }
.mult-showcase-label { color: rgba(201,169,97,.7) !important; font-family: 'Cinzel', serif; letter-spacing: .26em; text-transform: uppercase; }
.mult-showcase-title { color: #FBF9F4 !important; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
.how-to-play { background: #FBF9F4 !important; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #1A1815 0%, #0A0908 100%);
  border-top: 2px solid var(--cr-yellow);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; left: 0; right: 0; top: -2px; height: 2px;
  background: var(--grad-gold-shine);
  background-size: 200% 100%;
  animation: gold-shimmer 10s linear infinite;
}
.footer-col h3 {
  color: var(--cr-yellow) !important;
  font-family: 'Cinzel', serif !important;
  letter-spacing: .26em !important;
  font-size: .92rem !important;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 1px;
  background: var(--grad-gold);
}
.footer-col a {
  color: rgba(251,249,244,.7) !important;
  font-weight: 400 !important;
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  transition: all .3s var(--ease-lux);
  display: inline-block;
}
.footer-col a:hover {
  color: var(--cr-yellow) !important;
  transform: translateX(4px);
}
.footer-tagline { color: rgba(251,249,244,.65); font-family: 'Playfair Display', serif; font-style: italic; }
.footer-socials .social {
  color: rgba(201,169,97,.7);
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 2px;
  padding: 10px;
  transition: all .35s var(--ease-lux);
}
.footer-socials .social:hover {
  color: var(--cr-yellow);
  border-color: var(--cr-yellow);
  background: rgba(201,169,97,.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201,169,97,.25);
}
.footer-divider { border-color: rgba(201,169,97,.18) !important; }
.footer-disclaimer { color: rgba(251,249,244,.40) !important; font-size: .76rem !important; font-family: 'Playfair Display', serif; font-style: italic; }
.copyright { color: rgba(251,249,244,.50) !important; font-family: 'Cinzel', serif; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }
.trust-badge {
  background: rgba(201,169,97,.10) !important;
  color: var(--cr-yellow) !important;
  border: 1px solid rgba(201,169,97,.45) !important;
  border-radius: 2px !important;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  transition: all .3s var(--ease-lux);
}
.trust-badge:hover {
  background: rgba(201,169,97,.20) !important;
  border-color: var(--cr-yellow) !important;
  box-shadow: 0 0 12px rgba(201,169,97,.30);
}

.content-image img {
  border-radius: 4px;
  border: 1px solid var(--cr-yellow);
  box-shadow: var(--shadow-elevated);
  outline: 1px solid rgba(201,169,97,.30);
  outline-offset: 4px;
  transition: all .5s var(--ease-lux);
}
.content-image:hover img {
  box-shadow: 0 8px 24px rgba(10,9,8,.16), 0 30px 70px rgba(107,15,26,.20);
  transform: scale(1.01);
}
.breadcrumbs a { color: var(--cr-orange); font-weight: 500; font-family: 'Playfair Display', serif; font-style: italic; transition: color .3s var(--ease-lux); }
.breadcrumbs a:hover { color: var(--cr-yellow-dark); }
.breadcrumbs .current { color: var(--cr-yellow-dark); font-weight: 600; font-family: 'Cinzel', serif; letter-spacing: .1em; text-transform: uppercase; font-size: .88em; }
.breadcrumbs span { color: var(--color-graphite); }

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

/* ─── Hero SPLIT — cinematic two-column with art ─────── */
@keyframes art-frame-glow {
  0%, 100% { box-shadow:
      0 0 0 1px var(--cr-yellow),
      0 0 0 5px rgba(201,169,97,.30),
      0 0 0 6px rgba(74,10,18,.55),
      0 24px 60px rgba(10,9,8,.35),
      0 40px 80px rgba(107,15,26,.20),
      inset 0 0 0 1px rgba(255,248,225,.20); }
  50%      { box-shadow:
      0 0 0 1px var(--cr-yellow),
      0 0 0 5px rgba(232,212,155,.50),
      0 0 0 6px rgba(74,10,18,.55),
      0 28px 70px rgba(10,9,8,.42),
      0 50px 100px rgba(107,15,26,.28),
      inset 0 0 0 1px rgba(255,248,225,.30); }
}
@keyframes art-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes corner-pulse {
  0%, 100% { opacity: .75; }
  50%      { opacity: 1; }
}

.hero.hero-split {
  padding: 44px 0 52px;
  overflow: hidden;
}
.hero.hero-split::after { display: none; }
.hero.hero-split::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,212,155,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(107,15,26,.10) 0%, transparent 55%),
    radial-gradient(circle at 14% 18%, rgba(232,212,155,.55) 0%, transparent .9%),
    radial-gradient(circle at 32% 72%, rgba(232,212,155,.45) 0%, transparent .8%),
    radial-gradient(circle at 6% 88%, rgba(232,212,155,.40) 0%, transparent 1%);
}
.hero-split-grid {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: center;
}
.hero.hero-split .hero-inner {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Tighter rhythm inside split hero */
.hero.hero-split .hero-top-row { margin-bottom: 14px; gap: 12px; }
.hero.hero-split .hero-label   { padding: 6px 14px; font-size: .64rem; letter-spacing: .2em; }
.hero.hero-split .hero-live    { font-size: .68rem; letter-spacing: .14em; }
.hero.hero-split .hero-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero.hero-split .hero-offer { margin-bottom: 18px; gap: 12px; }
.hero.hero-split .hero-offer-pill { padding: 12px 18px; }
.hero.hero-split .hero-offer-amount { font-size: 1.4em; }
.hero.hero-split .hero-offer-spins strong { font-size: .82em; letter-spacing: .1em; }
.hero.hero-split .btn-primary.btn-lg { padding: 14px 32px; font-size: .8rem; letter-spacing: .2em; }
.hero.hero-split .btn-primary.btn-lg::before { left: 10px; width: 5px; height: 5px; }
.hero.hero-split .btn-primary.btn-lg::after  { right: 10px; width: 5px; height: 5px; }
.hero.hero-split .hero-login-link { font-size: .82rem; }
.hero.hero-split .hero-trust-row { gap: 6px; margin: 14px 0 10px; }
.hero.hero-split .hero-trust-row li { padding: 5px 11px; font-size: .64rem; letter-spacing: .14em; }
.hero.hero-split .hero-disclaimer { font-size: .74rem; margin: 0; }
.hero-art {
  position: relative;
  animation: lux-fade-up 1.2s var(--ease-lux) both;
  animation-delay: .35s;
}
.hero-art-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--grad-burgundy);
  animation: art-frame-glow 6s ease-in-out infinite, art-float 7s ease-in-out infinite;
  isolation: isolate;
}
.hero-art-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,9,8,.0) 0%,
    rgba(10,9,8,.0) 60%,
    rgba(10,9,8,.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-art-frame::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -120%;
  width: 50%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(232,212,155,.0) 30%,
    rgba(255,248,225,.30) 50%,
    rgba(232,212,155,.0) 70%,
    transparent 100%);
  transform: skewX(-18deg);
  animation: button-shimmer-pass 7s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 3;
}
.hero-art-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.hero-art { max-width: 460px; margin-left: auto; }

/* Corner ornaments — gold diamonds at each corner of the art frame */
.hero-art-corner {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--grad-gold);
  border: 1px solid var(--cr-yellow-dark);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 2px var(--cr-orange-mid),
    0 0 14px rgba(232,212,155,.7);
  z-index: 4;
  animation: corner-pulse 2.4s ease-in-out infinite;
}
.hero-art-corner--tl { top: -8px;    left: -8px; }
.hero-art-corner--tr { top: -8px;    right: -8px;  animation-delay: .3s; }
.hero-art-corner--bl { bottom: -8px; left: -8px;   animation-delay: .6s; }
.hero-art-corner--br { bottom: -8px; right: -8px;  animation-delay: .9s; }

@media (max-width: 1024px) {
  .hero.hero-split { padding: 36px 0 44px; }
  .hero-split-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-art-frame img { max-height: 320px; }
  .hero-art-frame { animation: art-frame-glow 6s ease-in-out infinite; }
}
@media (max-width: 640px) {
  .hero.hero-split { padding: 28px 0 36px; }
  .hero-split-grid { padding: 0 20px; gap: 22px; }
  .hero-art-frame img { max-height: 240px; }
  .hero-art-corner { width: 10px; height: 10px; }
  .hero-art-corner--tl, .hero-art-corner--tr { top: -6px; }
  .hero-art-corner--bl, .hero-art-corner--br { bottom: -6px; }
  .hero-art-corner--tl, .hero-art-corner--bl { left: -6px; }
  .hero-art-corner--tr, .hero-art-corner--br { right: -6px; }
}

/* ════════════════════════════════════════════════════════
   PREMIUM LAYER — Behance-grade polish
   Texture · vignette · ornaments · drop caps · tilts
   ════════════════════════════════════════════════════════ */

/* Subtle marble veining over entire body, fixed for parallax */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* very subtle veining */
    radial-gradient(ellipse 800px 200px at 20% 30%, rgba(201,169,97,.05) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 80% 70%, rgba(107,15,26,.04) 0%, transparent 65%),
    radial-gradient(ellipse 400px 100px at 40% 90%, rgba(232,212,155,.04) 0%, transparent 70%),
    /* corner vignette */
    radial-gradient(circle at 0% 0%, rgba(74,10,18,.10) 0%, transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(74,10,18,.08) 0%, transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(74,10,18,.10) 0%, transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(74,10,18,.10) 0%, transparent 28%);
}

/* Keep content above body texture */
body > * { position: relative; z-index: 1; }

/* ─── Ornament divider — golden line + center diamond ─── */
.section + .section,
.section + .cta-section,
.cta-section + .section {
  position: relative;
}
.section + .section::before,
.section + .cta-section::before,
.cta-section + .section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--grad-gold);
  border: 1px solid var(--cr-yellow-dark);
  box-shadow:
    0 0 0 4px var(--cr-warm-bg),
    0 0 0 5px rgba(201,169,97,.45),
    0 0 16px rgba(201,169,97,.50);
  z-index: 3;
}

/* ─── Ornate prefix on every prose h2 ─── */
.prose h2 {
  padding-left: 0;
}
.prose h2::before {
  content: '◈';
  display: inline-block;
  margin-right: 14px;
  color: var(--cr-yellow);
  font-size: .82em;
  vertical-align: middle;
  text-shadow:
    0 0 12px rgba(201,169,97,.55),
    0 1px 0 var(--cr-yellow-dark);
  transform: translateY(-2px);
}

/* ─── Drop-cap on the first paragraph after h2 in prose ─── */
.prose h2 + p::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6em;
  font-weight: 700;
  font-style: italic;
  color: var(--cr-orange);
  float: left;
  line-height: .9;
  margin: .08em .14em 0 0;
  padding: .04em .12em 0 0;
  background: linear-gradient(135deg, #8B1A2A 0%, #6B0F1A 50%, #4A0A12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 0 rgba(201,169,97,.30));
}

/* ─── 3D tilt + glow on cards ─── */
.feature-card,
.trust-pillar,
.testimonial-card,
.spec-item,
.faq-row {
  transform-style: preserve-3d;
  perspective: 800px;
}
.feature-card:hover,
.trust-pillar:hover,
.testimonial-card:hover {
  transform: translateY(-6px) perspective(800px) rotateX(2deg) rotateY(-1deg);
}

/* ─── Cards: ornate corner accents on hover ─── */
.feature-card,
.cta-block,
.trust-pillar {
  position: relative;
}
.feature-card::before,
.cta-block > .cta-corner-tl,
.cta-block > .cta-corner-tr {
  /* keep existing :: */
}

/* Tiny gold sparks at each card corner */
.feature-card,
.trust-pillar,
.spec-item,
.testimonial-card,
.cta-block {
  background-clip: padding-box;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 5px; height: 5px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 6px rgba(232,212,155,.55);
  opacity: 0;
  transition: opacity .4s var(--ease-lux);
  pointer-events: none;
  z-index: 3;
}
.feature-card:hover::before { opacity: 1; }

/* ─── Enhanced hero offer pill: triple glow + pulse ─── */
@keyframes pill-aura {
  0%, 100% {
    box-shadow:
      0 0 0 1px var(--cr-yellow),
      0 0 0 5px rgba(201,169,97,.20),
      0 0 24px rgba(201,169,97,.30),
      inset 0 1px 0 rgba(255,255,255,.55);
  }
  50% {
    box-shadow:
      0 0 0 1px var(--cr-yellow),
      0 0 0 7px rgba(201,169,97,.32),
      0 0 36px rgba(232,212,155,.50),
      inset 0 1px 0 rgba(255,255,255,.70);
  }
}
.hero-offer-pill {
  animation: pill-aura 3.5s ease-in-out infinite;
}

/* ─── Hero offer pill diamond accents ─── */
.hero-offer-pill {
  --pill-gem-size: 8px;
}
.hero-offer-pill > .hero-offer-divider {
  position: relative;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--cr-yellow), transparent);
  margin: 0 6px;
}
.hero-offer-pill > .hero-offer-divider::before {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cr-yellow);
  font-size: .6rem;
  text-shadow: 0 0 6px rgba(232,212,155,.65);
}

/* ─── CTA banner / block: ornate inner corner gems ─── */
.cta-banner,
.cta-block {
  position: relative;
}
.cta-banner > .cta-block-inner,
.cta-block > .cta-block-inner {
  position: relative;
  z-index: 1;
}
.cta-banner::before,
.cta-block::before {
  /* keep existing radial bg */
}
.cta-banner,
.cta-block {
  background-clip: padding-box;
}

/* Inner corner gem accents on banner */
.cta-banner > .cta-block-inner::before,
.cta-banner > .cta-block-inner::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 1px var(--cr-yellow-dark),
    0 0 14px rgba(232,212,155,.70);
  z-index: 4;
}
.cta-banner > .cta-block-inner::before { top: 16px; left: 16px; }
.cta-banner > .cta-block-inner::after  { top: 16px; right: 16px; }

/* ─── Footer ornate top: diamond on the gold line ─── */
.footer::after {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: var(--grad-gold);
  border: 1px solid var(--cr-yellow-dark);
  box-shadow:
    0 0 0 4px #1A1815,
    0 0 0 5px var(--cr-yellow),
    0 0 20px rgba(201,169,97,.55);
  z-index: 4;
}

/* ─── Table-wrap: ornate corners ─── */
.table-wrap {
  position: relative;
}
.table-wrap::before,
.table-wrap::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 1px var(--cr-yellow-dark),
    0 0 10px rgba(232,212,155,.65);
  z-index: 5;
}
.table-wrap::before { top: -4px; left: -4px; }
.table-wrap::after  { top: -4px; right: -4px; }

/* ─── Cinematic selection ─── */
::selection {
  background: var(--cr-orange);
  color: var(--cr-yellow);
  text-shadow: 0 1px 0 rgba(0,0,0,.4);
}

/* ─── Premium link underline animation in prose ─── */
.prose a {
  position: relative;
}
.prose a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease-lux);
}
.prose a:hover::after { transform: scaleX(1); }

/* ─── Premium hero label: animated ornament corners ─── */
.hero-label {
  position: relative;
}
.hero-label::before,
.hero-label::after {
  font-family: 'Inter', sans-serif;
  animation: corner-pulse 2.4s ease-in-out infinite;
}

/* ─── Refined breadcrumbs with divider ornament ─── */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(251,249,244,.7) 0%, rgba(245,241,232,.7) 100%);
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: .82rem;
  backdrop-filter: blur(4px);
}
.breadcrumbs > span:not(.current) {
  color: var(--cr-yellow);
  font-size: .7rem;
  opacity: .7;
}

/* ─── Content image: ornate frame corners ─── */
.content-image {
  position: relative;
  display: block;
}
.content-image::before,
.content-image::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 1px var(--cr-yellow-dark),
    0 0 12px rgba(232,212,155,.65);
  z-index: 2;
  pointer-events: none;
}
.content-image::before { top: -5px; left: -5px; }
.content-image::after  { top: -5px; right: -5px; }

/* ─── Premium h1 letter-spacing breathe ─── */
.hero-title {
  text-rendering: optimizeLegibility;
}

/* ─── Refined heading hierarchy with subtle gold underglow ─── */
.section-title,
.cta-title,
.cta-banner-title {
  text-shadow: 0 1px 0 rgba(255,248,225,.50);
}

/* ─── Premium typography ligatures ─── */
.hero-title,
.prose h2,
.prose h3,
.cta-title,
.cta-banner-title {
  font-variant-ligatures: discretionary-ligatures contextual;
  font-feature-settings: 'liga' 1, 'dlig' 1, 'kern' 1;
}

/* ─── Trust badges premium dressing ─── */
.trust-badge {
  position: relative;
}
.trust-badge::before {
  content: '◆';
  margin-right: 6px;
  color: var(--cr-yellow-dark);
  font-size: .55em;
  opacity: .75;
}

/* ─── Card-rise stagger for grid children ─── */
.features-grid > * { animation-delay: calc(.08s * var(--i, 0)); }
.features-grid > *:nth-child(1) { --i: 1; }
.features-grid > *:nth-child(2) { --i: 2; }
.features-grid > *:nth-child(3) { --i: 3; }
.features-grid > *:nth-child(4) { --i: 4; }
.features-grid > *:nth-child(5) { --i: 5; }
.features-grid > *:nth-child(6) { --i: 6; }
.features-grid > *:nth-child(7) { --i: 7; }
.features-grid > *:nth-child(8) { --i: 8; }

.testimonials-grid > * { animation-delay: calc(.12s * var(--i, 0)); }
.testimonials-grid > *:nth-child(1) { --i: 1; }
.testimonials-grid > *:nth-child(2) { --i: 2; }
.testimonials-grid > *:nth-child(3) { --i: 3; }

.game-specs > * { animation-delay: calc(.05s * var(--i, 0)); }
.game-specs > *:nth-child(1) { --i: 1; }
.game-specs > *:nth-child(2) { --i: 2; }
.game-specs > *:nth-child(3) { --i: 3; }
.game-specs > *:nth-child(4) { --i: 4; }
.game-specs > *:nth-child(5) { --i: 5; }
.game-specs > *:nth-child(6) { --i: 6; }
.game-specs > *:nth-child(7) { --i: 7; }
.game-specs > *:nth-child(8) { --i: 8; }

.game-specs > * {
  animation: card-rise .8s var(--ease-lux) both;
}

/* ─── Subtle marble texture in cards (gold flecks pattern) ─── */
.feature-card,
.cta-block,
.toc {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(201,169,97,.045) 0%, transparent 1.5%),
    radial-gradient(circle at 78% 72%, rgba(201,169,97,.035) 0%, transparent 1.8%),
    radial-gradient(circle at 35% 85%, rgba(107,15,26,.025) 0%, transparent 1.2%),
    linear-gradient(180deg, #FBF9F4 0%, #F5F1E8 100%);
}

/* ════════════════════════════════════════════════════════
   SLOTS SHOWCASE — premium casino game grid
   ════════════════════════════════════════════════════════ */
@keyframes slot-shine-pass {
  0%   { transform: translateX(-150%) skewX(-22deg); opacity: 0; }
  35%  { opacity: 1; }
  70%  { transform: translateX(220%) skewX(-22deg); opacity: 0; }
  100% { transform: translateX(220%) skewX(-22deg); opacity: 0; }
}
@keyframes slot-corner-twinkle {
  0%, 100% { opacity: .7; transform: rotate(45deg) scale(1); }
  50%      { opacity: 1;  transform: rotate(45deg) scale(1.25); }
}

.slots-section {
  position: relative;
  padding: 40px 0 48px;
}
.slots-section::before {
  content: none;
}
.slots-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}
.slots-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cr-yellow-dark);
  background: linear-gradient(180deg, rgba(251,249,244,.7), rgba(245,241,232,.7));
  border: 1px solid rgba(201,169,97,.45);
  padding: 5px 14px;
  margin-bottom: 12px;
  position: relative;
}
.slots-eyebrow::before,
.slots-eyebrow::after {
  content: '◆';
  margin: 0 6px;
  color: var(--cr-yellow);
  font-size: .55em;
  vertical-align: middle;
  opacity: .8;
}
.slots-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem) !important;
  font-weight: 700 !important;
  margin: 0 0 8px !important;
  letter-spacing: 0;
  color: var(--color-absolute-black);
  position: relative;
  display: inline-block;
}
.slots-title::before {
  content: '◈';
  display: inline-block;
  color: var(--cr-yellow);
  font-size: .62em;
  margin-right: 10px;
  vertical-align: middle;
  text-shadow: 0 0 10px rgba(201,169,97,.55);
  transform: translateY(-2px);
}
.slots-title::after {
  content: '◈';
  display: inline-block;
  color: var(--cr-yellow);
  font-size: .62em;
  margin-left: 10px;
  vertical-align: middle;
  text-shadow: 0 0 10px rgba(201,169,97,.55);
  transform: translateY(-2px);
}
.slots-lead {
  color: var(--color-graphite);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: .9rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 700px)  { .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; } }
@media (max-width: 380px)  { .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; } }

/* Compact slot cards on mobile */
@media (max-width: 700px) {
  .slots-section { padding: 28px 0 32px; }
  .slots-head { margin: 0 auto 18px; }
  .slot-card { border-radius: 3px; }
  .slot-card-meta {
    padding: 6px 7px 7px;
    gap: 3px;
  }
  .slot-card-name { font-size: .66rem; line-height: 1.15; }
  .slot-card-cta { font-size: .48rem; letter-spacing: .1em; gap: 3px; }
  .slot-card-cta-icon { width: 10px; height: 10px; font-size: .34rem; }
  .slot-card:nth-child(1) .slot-card-frame::after,
  .slot-card:nth-child(2) .slot-card-frame::after,
  .slot-card:nth-child(3) .slot-card-frame::after,
  .slot-card:nth-child(4) .slot-card-frame::after {
    top: 4px; left: 4px;
    font-size: .4rem;
    padding: 2px 5px;
    letter-spacing: .12em;
  }
  .slot-card::before, .slot-card::after { width: 5px; height: 5px; }
  .slots-bottom { margin-top: 18px; }
  .slots-bottom .btn-primary.btn-lg { padding: 12px 24px; font-size: .68rem; letter-spacing: .16em; }
  .slots-disclaimer { font-size: .64rem; margin-top: 10px; }
}

.slot-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FBF9F4 0%, #F2E9D5 100%);
  border: 1px solid rgba(201,169,97,.45);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all .5s var(--ease-lux);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  animation: card-rise .8s var(--ease-lux) both;
}
.slot-card::before,
.slot-card::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px var(--cr-yellow-dark), 0 0 8px rgba(232,212,155,.65);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease-lux);
}
.slot-card::before { top: -3px; left: -3px; }
.slot-card::after  { top: -3px; right: -3px; }
.slot-card:hover {
  transform: translateY(-6px);
  border-color: var(--cr-yellow);
  box-shadow: var(--shadow-hover), 0 0 32px rgba(201,169,97,.30);
}
.slot-card:hover::before,
.slot-card:hover::after {
  opacity: 1;
  animation: slot-corner-twinkle 1.8s ease-in-out infinite;
}

.slot-card-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grad-burgundy);
}
.slot-card-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease-lux), filter .5s var(--ease-lux);
  filter: brightness(.92) saturate(1.05);
}
.slot-card:hover .slot-card-img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.18);
}

/* Diagonal shine sweep that passes once on hover */
.slot-card-shine {
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,248,225,.0) 30%,
    rgba(255,248,225,.45) 50%,
    rgba(255,248,225,.0) 70%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
  transform: translateX(-150%) skewX(-22deg);
  opacity: 0;
}
.slot-card:hover .slot-card-shine {
  animation: slot-shine-pass 1.1s var(--ease-lux);
}

/* Meta strip below image */
.slot-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 11px 11px;
  position: relative;
  border-top: 1px solid rgba(201,169,97,.30);
  background: linear-gradient(180deg, rgba(251,249,244,.95) 0%, rgba(242,233,213,.95) 100%);
}
.slot-card-meta::before {
  content: '';
  position: absolute;
  top: 0; left: 11px; right: 11px;
  height: 1px;
  background: var(--grad-gold);
  opacity: .55;
}
.slot-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--color-absolute-black);
  line-height: 1.2;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slot-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cr-orange);
  transition: color .3s var(--ease-lux), letter-spacing .3s var(--ease-lux);
}
.slot-card-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px;
  background: var(--grad-gold);
  color: var(--cr-orange);
  border-radius: 50%;
  border: 1px solid var(--cr-yellow-dark);
  font-size: .42rem;
  padding-left: 1px;
  box-shadow: 0 0 0 2px rgba(201,169,97,.20);
  transition: all .35s var(--ease-lux);
}
.slot-card:hover .slot-card-cta {
  color: var(--cr-yellow-dark);
  letter-spacing: .24em;
}
.slot-card:hover .slot-card-cta-icon {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(201,169,97,.35), 0 0 12px rgba(232,212,155,.6);
}

/* "HOT" / "TOP" badges */
.slot-card:nth-child(1) .slot-card-frame::after {
  content: 'HOT';
  position: absolute;
  top: 7px; left: 7px;
  background: var(--grad-burgundy);
  color: var(--cr-yellow);
  font-family: 'Cinzel', serif;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 3px 7px;
  border: 1px solid var(--cr-yellow);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(74,10,18,.45);
}
.slot-card:nth-child(2) .slot-card-frame::after,
.slot-card:nth-child(3) .slot-card-frame::after,
.slot-card:nth-child(4) .slot-card-frame::after {
  content: 'TOP';
  position: absolute;
  top: 7px; left: 7px;
  background: var(--grad-gold);
  color: var(--color-absolute-black);
  font-family: 'Cinzel', serif;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 3px 7px;
  border: 1px solid var(--cr-yellow-dark);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(139,114,54,.45);
}

/* Stagger reveal in slots grid */
.slots-grid .slot-card { animation-delay: calc(.06s * var(--si, 0)); }
.slots-grid .slot-card:nth-child(1)  { --si: 1; }
.slots-grid .slot-card:nth-child(2)  { --si: 2; }
.slots-grid .slot-card:nth-child(3)  { --si: 3; }
.slots-grid .slot-card:nth-child(4)  { --si: 4; }
.slots-grid .slot-card:nth-child(5)  { --si: 5; }
.slots-grid .slot-card:nth-child(6)  { --si: 6; }
.slots-grid .slot-card:nth-child(7)  { --si: 7; }
.slots-grid .slot-card:nth-child(8)  { --si: 8; }
.slots-grid .slot-card:nth-child(9)  { --si: 9; }
.slots-grid .slot-card:nth-child(10) { --si: 10; }
.slots-grid .slot-card:nth-child(11) { --si: 11; }
.slots-grid .slot-card:nth-child(12) { --si: 12; }

.slots-bottom {
  margin-top: 28px;
  text-align: center;
}
.slots-bottom .btn-primary.btn-lg {
  padding: 14px 32px;
  font-size: .76rem;
  letter-spacing: .2em;
}
.slots-disclaimer {
  margin: 12px 0 0;
  color: var(--color-graphite);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .72rem;
  opacity: .85;
}

/* ─── Mobile typography scale-down ─── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .prose { font-size: 15px; line-height: 1.7; }
  .prose h2 { font-size: clamp(1.35rem, 5vw, 1.7rem); margin-top: 2.2rem; }
  .prose h3 { font-size: 1.1rem; }
  .prose ol li, .prose ul li { font-size: 15px; }
  .hero-title { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; line-height: 1.1; }
  .hero.hero-split .hero-title { font-size: clamp(1.3rem, 5vw, 1.7rem) !important; }
  .hero-lead { font-size: .96rem; }
  .hero-label { font-size: .58rem; letter-spacing: .18em; }
  .hero-disclaimer { font-size: .7rem; }
  .hero-offer-amount { font-size: 1.25em; }
  .section-title { font-size: clamp(1.4rem, 4.8vw, 1.9rem) !important; }
  .cta-title { font-size: clamp(1.3rem, 4.8vw, 1.8rem) !important; }
  .cta-banner-title { font-size: clamp(1.3rem, 4.8vw, 1.8rem) !important; }
  .cta-pretitle { font-size: .68rem; letter-spacing: .18em; }
  .cta-banner-label { font-size: .62rem; letter-spacing: .18em; }
  .fc-title { font-size: 1.05rem !important; }
  .fc-text { font-size: .9rem !important; }
  .tp-title { font-size: 1.05rem; }
  .tp-text { font-size: .88rem; }
  .spec-label { font-size: .6rem; letter-spacing: .14em; }
  .spec-value { font-size: 1.04rem; }
  .review-table thead th { font-size: .66rem; letter-spacing: .12em; padding: 12px 10px; }
  .review-table tbody td { font-size: .88rem; padding: 12px 10px; }
  .faq-row .question { font-size: .98rem; }
  .faq-row .answer p { font-size: .92rem; }
  .testimonial-quote { font-size: .94rem; }
  .testimonial-name { font-size: .78rem; }
  .testimonial-kicker { font-size: .68rem; }
  .breadcrumbs { font-size: .72rem; }
  .slot-card-name { font-size: .76rem; }
  .slot-card-cta { font-size: .54rem; letter-spacing: .14em; }
  .nav-drawer-list a { font-size: .76rem; letter-spacing: .18em; padding: 12px 20px; }
}
@media (max-width: 480px) {
  body { font-size: 14.5px; }
  .prose { font-size: 14.5px; line-height: 1.65; }
  .prose h2 { font-size: 1.25rem; }
  .hero.hero-split .hero-title { font-size: 1.4rem !important; }
  .btn-primary, .btn-secondary { padding: 13px 26px; font-size: .72rem; letter-spacing: .16em; }
  .btn-primary.btn-lg, .btn-secondary.btn-lg { padding: 15px 32px; font-size: .76rem; letter-spacing: .18em; }
}

/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER — gold-framed dropdown
   ════════════════════════════════════════════════════════ */
.header-cta {
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,9,8,.55);
  border: 1px solid rgba(201,169,97,.45);
  border-radius: 2px;
  padding: 5px 8px;
  color: var(--cr-yellow);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease-lux);
  box-shadow: inset 0 1px 0 rgba(232,212,155,.15);
  line-height: 1;
}
.lang-switcher-toggle:hover {
  border-color: var(--cr-yellow);
  background: rgba(25,18,12,.7);
  box-shadow: inset 0 1px 0 rgba(232,212,155,.3), 0 0 10px rgba(201,169,97,.25);
}
.lang-switcher-toggle .lang-flag { font-size: .82rem; line-height: 1; }
.lang-switcher-toggle .lang-chevron {
  font-size: .5rem;
  margin-left: 1px;
  opacity: .7;
  transition: transform .3s var(--ease-lux);
}
.lang-switcher.is-open .lang-switcher-toggle .lang-chevron { transform: rotate(180deg); }

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: linear-gradient(180deg, #1A1815 0%, #0A0908 100%);
  border: 1px solid var(--cr-yellow);
  border-radius: 2px;
  padding: 4px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s var(--ease-lux);
  box-shadow: 0 12px 32px rgba(10,9,8,.45), 0 0 0 1px rgba(74,10,18,.55);
  z-index: 100;
}
.lang-switcher.is-open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher-menu li { list-style: none; }
.lang-switcher-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: rgba(251,249,244,.78);
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s var(--ease-lux);
  border-radius: 1px;
  line-height: 1;
}
.lang-switcher-menu a:hover {
  background: rgba(201,169,97,.12);
  color: var(--cr-yellow);
  padding-left: 14px;
}
.lang-switcher-menu .lang-flag { font-size: .82rem; line-height: 1; }

/* Drawer language list (mobile) */
.nav-drawer-langs {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 20px 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(201,169,97,.25);
}
.nav-drawer-langs li { list-style: none; }
.nav-drawer-langs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(201,169,97,.06);
  border: 1px solid rgba(201,169,97,.35);
  color: rgba(251,249,244,.75);
  font-family: 'Cinzel', serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s var(--ease-lux);
}
.nav-drawer-langs a:hover {
  border-color: var(--cr-yellow);
  background: rgba(201,169,97,.16);
  color: var(--cr-yellow);
}
.nav-drawer-langs a.is-current {
  background: rgba(201,169,97,.20);
  border-color: var(--cr-yellow);
  color: var(--cr-yellow);
  box-shadow: 0 0 12px rgba(201,169,97,.30);
}
.nav-drawer-langs .lang-flag { font-size: .9rem; line-height: 1; }

@media (max-width: 1023.98px) {
  .lang-switcher { display: none; }
}

/* ════════════════════════════════════════════════════════
   ═══ GOLD CHIPS OVERRIDE — Gransino 3 unique skin ═══
   Wheel of Fortune · 3D floating gold chips · Frosted glass
   Classical white marble · Burgundy accents · Hyper-detailed
   ════════════════════════════════════════════════════════ */

/* Font swap: DM Serif Display (serif headings), Forum (caps labels) */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-title, .cta-banner-title,
.fc-title, .tp-title, .spec-value,
.testimonial-quote, .testimonial-name,
.cz-author__name, .cz-author__name a,
.prose h2, .prose h3, .prose blockquote,
.slot-card-name {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0 !important;
}
.hero-label, .hero-live, .hero-trust-row li,
.section-label, .cta-pretitle, .cta-banner-label,
.testimonial-kicker, .cz-author__kicker, .cz-author__more,
.btn-primary, .btn-secondary, .btn.btn-primary, .btn.btn-secondary,
.nav-list .nav-item a, .nav-drawer-list a,
.footer-col h3, .copyright, .trust-badge,
.spec-label, .slot-card-cta, .slots-eyebrow, .slots-title,
.review-table thead th,
.lang-switcher-toggle, .lang-switcher-menu a,
.breadcrumbs .current {
  font-family: 'Forum', 'Cinzel', Georgia, serif !important;
}

:root {
  /* MIDNIGHT SAPPHIRE — replaces gold-only palette */
  --gc-gold-1: #E0EAFB;   /* moonlight platinum */
  --gc-gold-2: #A4BBE0;   /* sapphire mist */
  --gc-gold-3: #3B5F9C;   /* sapphire blue */
  --gc-gold-4: #1E3A6E;   /* deep ocean */
  --gc-gold-5: #0A1A3A;   /* abyss navy */
  --gc-glass:  rgba(232,238,247,.55);
  --gc-glass-border: rgba(59,95,156,.45);
  --gc-radius: 10px;

  --cr-orange:        #0A1A3A !important;
  --cr-orange-mid:    #050D24 !important;
  --cr-yellow:        #3B5F9C !important;
  --cr-yellow-dark:   #1E3A6E !important;
  --cr-warm-bg:       #F4F6FA !important;
  --color-paper-white:#FAFBFD !important;
  --color-light-gray: #E8EEF7 !important;
  --grad-burgundy:    linear-gradient(135deg, #1E3A6E 0%, #0A1A3A 50%, #050D24 100%) !important;
  --grad-gold:        linear-gradient(135deg, #E0EAFB 0%, #A4BBE0 45%, #3B5F9C 100%) !important;
  --grad-gold-shine:  linear-gradient(120deg, #1E3A6E 0%, #3B5F9C 20%, #A4BBE0 35%, #FAFBFD 50%, #A4BBE0 65%, #3B5F9C 80%, #1E3A6E 100%) !important;
}

html { background-image:
  radial-gradient(at 30% 20%, rgba(164,187,224,.20) 0%, transparent 55%),
  radial-gradient(at 70% 80%, rgba(10,26,58,.06) 0%, transparent 55%),
  linear-gradient(135deg, #FAFBFD 0%, #E8EEF7 50%, #F0F4FA 100%) !important;
}

.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10,26,58,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(10,26,58,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(59,95,156,.25) 0%, transparent 55%),
    linear-gradient(180deg, #DDE3EE 0%, #C8D2E4 50%, #B6C2D9 100%) !important;
}
.hero-label { background: linear-gradient(135deg, #1E3A6E 0%, #0A1A3A 100%) !important; color: var(--gc-gold-1) !important; border-color: var(--gc-gold-3) !important; }
.review-table thead tr { background: linear-gradient(180deg, #1E3A6E 0%, #050D24 100%) !important; }
.section-label { background: linear-gradient(135deg, #1E3A6E 0%, #0A1A3A 50%, #050D24 100%) !important; }
.prose strong { color: #1E3A6E !important; }
.tp-title { color: #1E3A6E !important; }
.fc-title { color: #1E3A6E !important; }
.spec-value { color: #1E3A6E !important; }
.testimonial-kicker { color: #1E3A6E !important; }
.cz-author__name a { color: #1E3A6E !important; }
.cz-author__more { color: #1E3A6E !important; }
.breadcrumbs a { color: #1E3A6E !important; }
.review-table tbody td:first-child { color: #1E3A6E !important; }

html { background-image:
  radial-gradient(at 30% 20%, rgba(240,210,122,.16) 0%, transparent 55%),
  radial-gradient(at 70% 80%, rgba(107,15,26,.06) 0%, transparent 55%),
  linear-gradient(135deg, #FCFAF3 0%, #F4EFDB 50%, #F8F2E0 100%) !important;
}

@keyframes gc-wheel-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes gc-chip-bob-a {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-16px) rotate(-12deg); }
}
@keyframes gc-chip-bob-b {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(14px) rotate(10deg); }
}
@keyframes gc-shimmer-pan {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gc-aura-breathe {
  0%, 100% { opacity: .8; }
  50%      { opacity: 1;  }
}

.hero { isolation: isolate; overflow: hidden !important; }
.hero::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important; left: auto !important; right: -100px !important;
  transform: translateY(-50%) rotate(0) !important;
  width: 520px !important; height: 520px !important;
  border-radius: 50% !important;
  background:
    conic-gradient(
      from -90deg,
      #6B0F1A 0deg,            #6B0F1A 30deg,
      var(--gc-gold-2) 30deg,  var(--gc-gold-3) 60deg,
      #0A0908 60deg,           #0A0908 90deg,
      var(--gc-gold-3) 90deg,  var(--gc-gold-4) 120deg,
      #6B0F1A 120deg,          #6B0F1A 150deg,
      var(--gc-gold-1) 150deg, var(--gc-gold-2) 180deg,
      #0A0908 180deg,          #0A0908 210deg,
      var(--gc-gold-3) 210deg, var(--gc-gold-4) 240deg,
      #6B0F1A 240deg,          #6B0F1A 270deg,
      var(--gc-gold-2) 270deg, var(--gc-gold-3) 300deg,
      #0A0908 300deg,          #0A0908 330deg,
      var(--gc-gold-1) 330deg, var(--gc-gold-3) 360deg
    ) !important;
  border: 10px solid var(--gc-gold-3) !important;
  box-shadow:
    0 0 0 4px #4A0A12,
    0 0 0 8px var(--gc-gold-3),
    0 0 0 9px var(--gc-gold-4),
    0 0 90px rgba(212,175,55,.55),
    0 0 180px rgba(255,244,196,.30),
    inset 0 0 0 70px rgba(10,9,8,.94),
    inset 0 0 0 75px var(--gc-gold-3),
    inset 0 0 0 110px transparent,
    inset 0 0 120px rgba(0,0,0,.45) !important;
  animation: gc-wheel-spin 140s linear infinite, gc-aura-breathe 7s ease-in-out infinite !important;
  opacity: .55 !important;
  z-index: 1 !important;
  filter: saturate(1.15) contrast(1.05) !important;
  pointer-events: none;
}
.hero::before {
  background:
    radial-gradient(circle at 14% 18%, var(--gc-gold-1) 0%, transparent 1.4%),
    radial-gradient(circle at 78% 18%, var(--gc-gold-2) 0%, transparent 1%),
    radial-gradient(circle at 38% 72%, var(--gc-gold-1) 0%, transparent 1.1%),
    radial-gradient(circle at 88% 80%, var(--gc-gold-2) 0%, transparent 1.3%),
    radial-gradient(circle at 22% 88%, var(--gc-gold-1) 0%, transparent 1%),
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.18) 0%, transparent 50%) !important;
}
@media (max-width: 1024px) { .hero::after { width: 380px !important; height: 380px !important; right: -160px !important; opacity: .30 !important; } }
@media (max-width: 640px)  { .hero::after { display: none !important; } }

/* Floating GOLD CASINO CHIPS */
.hero-feathers { z-index: 3 !important; pointer-events: none; }
.feather-1, .feather-2, .feather-3, .feather-4, .feather-5, .feather-6 {
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 32% 28%, var(--gc-gold-1) 0%, var(--gc-gold-2) 28%, var(--gc-gold-3) 56%, var(--gc-gold-4) 100%) !important;
  border: none !important;
  box-shadow:
    inset 0 -3px 4px rgba(107,79,18,.55),
    inset 0 2px 2px rgba(255,244,196,.65),
    0 0 0 1.5px var(--gc-gold-4),
    0 0 0 3px rgba(74,10,18,.85),
    0 0 0 4.5px var(--gc-gold-3),
    0 8px 22px rgba(107,79,18,.45),
    0 0 24px rgba(212,175,55,.45) !important;
  opacity: .9 !important;
}
.feather-1 { width: 44px !important; height: 44px !important; animation: gc-chip-bob-a 6s ease-in-out infinite !important; }
.feather-2 { width: 36px !important; height: 36px !important; animation: gc-chip-bob-b 7s ease-in-out infinite !important; }
.feather-3 { width: 50px !important; height: 50px !important; animation: gc-chip-bob-a 7.5s ease-in-out infinite reverse !important; }
.feather-4 { width: 28px !important; height: 28px !important; animation: gc-chip-bob-b 6.5s ease-in-out infinite !important; }
.feather-5 { width: 38px !important; height: 38px !important; animation: gc-chip-bob-a 8s ease-in-out infinite !important; }
.feather-6 { width: 32px !important; height: 32px !important; animation: gc-chip-bob-b 7s ease-in-out infinite reverse !important; }

/* Hero title — prismatic gold shimmer */
.hero-title .cr-word {
  background: linear-gradient(120deg,
    var(--gc-gold-5) 0%,
    var(--gc-gold-4) 18%,
    var(--gc-gold-3) 36%,
    var(--gc-gold-1) 50%,
    var(--gc-gold-3) 64%,
    var(--gc-gold-4) 82%,
    var(--gc-gold-5) 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter:
    drop-shadow(0 1px 0 var(--gc-gold-5))
    drop-shadow(0 0 14px rgba(212,175,55,.55)) !important;
  animation: gc-shimmer-pan 6s linear infinite !important;
  font-style: normal !important;
}

/* Hero offer pill — frosted glass */
.hero-offer-pill {
  background: linear-gradient(135deg, rgba(255,250,235,.85) 0%, rgba(244,239,219,.85) 100%) !important;
  backdrop-filter: blur(10px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
  border: 1px solid var(--gc-gold-3) !important;
  border-radius: var(--gc-radius) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 0 0 1px rgba(212,175,55,.30),
    0 0 0 5px rgba(212,175,55,.15),
    0 16px 40px rgba(107,79,18,.18),
    0 0 60px rgba(255,244,196,.25) !important;
  padding: 14px 24px !important;
}

/* BUTTONS — premium burgundy with gold sheen */
a.btn.btn-primary, button.btn.btn-primary, .btn.btn-primary, .btn-primary {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.12) 0%,
      rgba(255,255,255,0) 18%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,.25) 100%),
    linear-gradient(180deg, #7E1521 0%, #5A0F18 60%, #3A0810 100%) !important;
  color: #FFF8E1 !important;
  border: 1px solid var(--gc-gold-3) !important;
  border-radius: var(--gc-radius) !important;
  padding: 16px 38px !important;
  clip-path: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,244,196,.40),
    inset 0 -2px 0 rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,244,196,.25),
    0 0 0 1px #3A0810,
    0 0 0 3px var(--gc-gold-4),
    0 6px 0 0 #1A0205,
    0 14px 28px rgba(107,79,18,.32),
    0 0 36px rgba(212,175,55,.25) !important;
}
.btn-primary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -120% !important; right: auto !important; bottom: 0 !important;
  width: 55% !important; height: 100% !important;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,244,196,.50) 50%,
    transparent 100%) !important;
  transform: skewX(-22deg) !important;
  pointer-events: none !important;
  border-radius: 0 !important;
  animation: none !important;
  transition: left .7s cubic-bezier(.22,1,.36,1) !important;
}
.btn-primary::after {
  content: '' !important;
  position: absolute !important;
  inset: 5px !important;
  border: 1px solid rgba(255,244,196,.20) !important;
  border-radius: calc(var(--gc-radius) - 4px) !important;
  background: transparent !important;
  transform: none !important;
  pointer-events: none !important;
  box-shadow: none !important;
  animation: none !important;
  top: auto !important; right: auto !important; left: 5px !important; width: auto !important; height: auto !important;
}
a.btn.btn-primary:hover, button.btn.btn-primary:hover, .btn.btn-primary:hover, .btn-primary:hover {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.18) 0%,
      rgba(255,255,255,0) 22%,
      rgba(0,0,0,0) 68%,
      rgba(0,0,0,.30) 100%),
    linear-gradient(180deg, #9A1F2C 0%, #6F1320 60%, #4A0A12 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,244,196,.55),
    inset 0 -2px 0 rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(255,244,196,.40),
    0 0 0 1px #3A0810,
    0 0 0 3px var(--gc-gold-3),
    0 9px 0 0 #1A0205,
    0 18px 36px rgba(107,79,18,.45),
    0 0 60px rgba(212,175,55,.45) !important;
}
.btn-primary:hover::before { left: 130% !important; }

/* CARDS — frosted glass */
.feature-card,
.trust-pillar,
.spec-item,
.testimonial-card,
.toc,
.cta-block {
  background:
    linear-gradient(135deg, rgba(255,250,235,.78) 0%, rgba(244,239,219,.82) 100%) !important;
  backdrop-filter: blur(8px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(135%) !important;
  border-radius: var(--gc-radius) !important;
  border: 1px solid var(--gc-glass-border) !important;
}
.feature-card { border-top: 2px solid var(--gc-gold-3) !important; }
.feature-card::after, .feature-card::before { display: none !important; }
.feature-card:hover, .trust-pillar:hover, .testimonial-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--gc-gold-3) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 1px 3px rgba(10,9,8,.06),
    0 18px 40px rgba(107,79,18,.18),
    0 0 0 1px var(--gc-gold-3),
    0 0 36px rgba(212,175,55,.30) !important;
}

/* Trust pillars — gold left bar */
.trust-pillar::before {
  background: linear-gradient(180deg, var(--gc-gold-1) 0%, var(--gc-gold-3) 50%, var(--gc-gold-4) 100%) !important;
}

/* Section dividers — refined gold coin */
.section + .section::before,
.section + .cta-section::before,
.cta-section + .section::before {
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 30% 30%, var(--gc-gold-1) 0%, var(--gc-gold-3) 50%, var(--gc-gold-5) 100%) !important;
  transform: translate(-50%, -50%) rotate(0) !important;
  width: 14px !important; height: 14px !important;
  box-shadow:
    0 0 0 1.5px var(--gc-gold-4),
    0 0 0 4.5px var(--cr-warm-bg),
    0 0 0 5.5px rgba(212,175,55,.65),
    0 0 18px rgba(212,175,55,.45) !important;
}

/* Hero label */
.hero-label {
  background: linear-gradient(135deg, #6B0F1A 0%, #4A0A12 100%) !important;
  color: var(--gc-gold-1) !important;
  border: 1px solid var(--gc-gold-3) !important;
  border-radius: var(--gc-radius) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,244,196,.20),
    0 4px 16px rgba(74,10,18,.40),
    0 0 24px rgba(212,175,55,.15) !important;
}

/* CTA banner — premium */
.cta-banner {
  border-radius: var(--gc-radius) !important;
  border: 1px solid var(--gc-gold-3) !important;
  box-shadow:
    0 16px 48px rgba(107,15,26,.35),
    0 0 0 1px var(--gc-gold-3) inset,
    0 0 0 4px rgba(212,175,55,.25),
    0 0 60px rgba(212,175,55,.20) !important;
}
.cta-banner .btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,.40) 0%, rgba(255,255,255,0) 30%, rgba(107,79,18,.15) 100%),
    linear-gradient(180deg, var(--gc-gold-1) 0%, var(--gc-gold-2) 35%, var(--gc-gold-3) 75%, var(--gc-gold-4) 100%) !important;
  color: #4A0A12 !important;
  text-shadow: 0 1px 0 rgba(255,244,196,.55) !important;
  border-color: var(--gc-gold-5) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    inset 0 -2px 0 rgba(107,79,18,.30),
    0 0 0 1px var(--gc-gold-5),
    0 0 0 3px rgba(74,10,18,.35),
    0 6px 0 0 var(--gc-gold-5),
    0 14px 28px rgba(212,175,55,.45),
    0 0 40px rgba(255,244,196,.45) !important;
}

/* FAQ */
.faq-row.is-open {
  background: linear-gradient(135deg, rgba(255,250,235,.88) 0%, rgba(252,238,189,.85) 100%) !important;
  border-color: var(--gc-gold-3) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 0 0 1px var(--gc-gold-3),
    0 14px 32px rgba(107,79,18,.18) !important;
}

/* Table + media */
.table-wrap { border-radius: var(--gc-radius) !important; border-color: var(--gc-gold-3) !important; }
.review-table thead tr { background: linear-gradient(180deg, #4A0A12 0%, #2A050A 100%) !important; }
.cz-author__img-wrap {
  border-radius: var(--gc-radius) !important;
  border: 2px solid var(--gc-gold-3) !important;
  box-shadow:
    0 0 0 1px #4A0A12,
    0 0 0 5px rgba(212,175,55,.30),
    0 12px 32px rgba(107,79,18,.25),
    0 0 40px rgba(212,175,55,.20) !important;
}
.content-image img {
  border-radius: var(--gc-radius) !important;
  border: 1px solid var(--gc-gold-3) !important;
  box-shadow:
    0 0 0 1px rgba(74,10,18,.55),
    0 0 0 4px rgba(212,175,55,.20),
    0 18px 40px rgba(107,79,18,.20) !important;
}

/* Lang switcher refined */
.lang-switcher-toggle { border-radius: var(--gc-radius) !important; border-color: var(--gc-gold-3) !important; }
.lang-switcher-menu {
  border-radius: var(--gc-radius) !important;
  border-color: var(--gc-gold-3) !important;
  box-shadow:
    0 16px 40px rgba(10,9,8,.50),
    0 0 0 1px rgba(74,10,18,.55),
    0 0 32px rgba(212,175,55,.20) !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-color-scheme: dark) { /* always luxury light */ }
