/* ==========================================================================
   Online Gaming Hub — Luxury Black & Gold · Game-Grade UI
   ========================================================================== */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #101010;
  --gold: #d4af37;
  --gold-bright: #f5e6a8;
  --gold-deep: #8a6d1f;
  --gold-foil: linear-gradient(135deg, #8a6d1f 0%, #d4af37 32%, #f7ecb6 50%, #d4af37 68%, #8a6d1f 100%);
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --line: rgba(212, 175, 55, 0.28);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.18);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 50;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

/* Logo is a transparent PNG (logo-clean.png) */

/* -------------------------------------------------------------------------- */
/* Ambient / moving background                                                 */
/* -------------------------------------------------------------------------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
}

.ambient__glow--1 {
  width: 50vw; height: 50vw; top: -12%; left: -10%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}
.ambient__glow--2 {
  width: 42vw; height: 42vw; bottom: 6%; right: -8%;
  background: radial-gradient(circle, #b8860b 0%, transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
.ambient__glow--3 {
  width: 34vw; height: 34vw; top: 40%; left: 42%;
  background: radial-gradient(circle, #7a5cff 0%, transparent 70%);
  opacity: 0.1;
  animation: drift 26s ease-in-out infinite alternate;
}

.ambient__particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: sparkle var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.ambient__floaters span {
  position: absolute;
  font-size: var(--size, 42px);
  line-height: 1;
  opacity: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
  animation: floatUp var(--dur, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: translateY(0); }
  40% { opacity: 0.85; }
  70% { opacity: 0.2; transform: translateY(-46px); }
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(20px) rotate(0deg); }
  10% { opacity: 0.5; }
  90% { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-120vh) rotate(220deg); }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background-position 400ms var(--ease);
}
.btn--sm { min-height: 40px; padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.btn--lg { min-height: 54px; padding: 0.95rem 1.9rem; font-size: 1.02rem; }

.btn--gold {
  background: var(--gold-foil);
  background-size: 200% 200%;
  color: #0a0a0a;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.7), transparent);
  transform: skewX(-20deg);
  animation: sheen 3.5s ease-in-out infinite;
}
.btn--gold:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 36px rgba(212, 175, 55, 0.4); background-position: 100% 0; }

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(212, 175, 55, 0.12); transform: translateY(-2px); }

.btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

@keyframes sheen {
  0%, 60% { left: -60%; }
  100% { left: 140%; }
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid transparent;
  color: var(--gold-bright);
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.icon-btn:hover { border-color: var(--line); background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }

/* -------------------------------------------------------------------------- */
/* Nav                                                                         */
/* -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  transition: background 250ms var(--ease), border-color 250ms var(--ease), backdrop-filter 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.nav__logo { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.nav__name {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav__tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

.nav__links { display: none; gap: 1.5rem; margin-left: auto; }
.nav__links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; padding: 0.25rem 0;
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold-foil);
  transition: width 220ms var(--ease);
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }

.nav__toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; }
.nav__toggle span { display: block; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 200ms var(--ease), opacity 200ms var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav__mobile[hidden] { display: none !important; }
.nav__mobile a { padding: 0.85rem 0.5rem; font-size: 1rem; color: var(--text); border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.nav__mobile .btn { margin-top: 0.75rem; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__actions { margin-left: 0; }
  .nav__toggle { display: none; }
}
@media (max-width: 520px) {
  .nav__brand-text { display: none; }
  .nav__play { display: none; }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroZoom 28s ease-in-out infinite alternate;
  z-index: -2;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.74) 55%, rgba(5, 5, 5, 0.94) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, transparent 30%, rgba(5, 5, 5, 0.9) 100%);
}

.hero__content {
  position: relative;
  width: min(920px, 92vw);
  padding: calc(var(--nav-h) + 1.5rem) 1rem 6rem;
  display: flex; flex-direction: column; align-items: center;
}

.hero__logo-wrap {
  position: relative;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
}
.hero__logo-wrap::before {
  content: "";
  position: absolute;
  width: 130%; height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 65%);
  filter: blur(6px);
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero__logo {
  position: relative;
  width: clamp(130px, 24vw, 200px);
  height: auto;
  filter: drop-shadow(0 12px 44px rgba(212, 175, 55, 0.45));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.hero__title { margin-bottom: 0.75rem; }
.hero__brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.05;
  background: linear-gradient(180deg, #fff 18%, var(--gold-bright) 60%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
}

.hero__slogan {
  font-size: clamp(1.55rem, 4.6vw, 2.9rem);
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 0.65rem;
  display: flex; gap: 0.5em; justify-content: center; flex-wrap: wrap;
}
.hero__slogan .word {
  display: inline-block;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__slogan .word:nth-child(2) { animation-delay: 0.2s; color: var(--gold-bright); }
.hero__slogan .word:nth-child(3) { animation-delay: 0.4s; }

.hero__sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 0.85rem; border-bottom: 1px solid var(--gold); margin-bottom: 1.4rem;
}

.jackpot {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 0.15rem; margin-bottom: 1.6rem;
  padding: 0.7rem 1.6rem; border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(0,0,0,0.5));
  box-shadow: inset 0 0 30px rgba(212,175,55,0.08);
}
.jackpot__label { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.jackpot__amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.hero__scroll {
  position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
  width: 28px; height: 44px; border: 1px solid var(--line); border-radius: 999px;
  display: grid; place-items: center; z-index: 3;
}
.hero__scroll span { width: 4px; height: 8px; background: var(--gold); border-radius: 999px; animation: scrollDot 1.6s ease-in-out infinite; }

@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.1); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.5; transform: scale(0.95); } 50% { opacity: 0.9; transform: scale(1.05); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes scrollDot { 0% { transform: translateY(-6px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }

/* Reveal on load */
.reveal { opacity: 0; transform: translateY(18px); animation: revealIn 0.9s var(--ease) forwards; }
.reveal--delay-1 { animation-delay: 0.1s; }
.reveal--delay-2 { animation-delay: 0.2s; }
.reveal--delay-3 { animation-delay: 0.35s; }
.reveal--delay-4 { animation-delay: 0.5s; }
.reveal--delay-5 { animation-delay: 0.65s; }
@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------------------- */
/* Ticker (recent wins)                                                        */
/* -------------------------------------------------------------------------- */

.ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  overflow: hidden;
  height: 46px;
  display: flex; align-items: center;
}
.ticker__track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  padding-left: 100%;
  animation: marquee 32s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.ticker__item b { color: var(--gold-bright); font-weight: 600; }
.ticker__item .dot { width: 7px; height: 7px; border-radius: 50%; background: #37d67a; box-shadow: 0 0 8px #37d67a; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------- */
/* Sections                                                                    */
/* -------------------------------------------------------------------------- */

.section { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 5.5rem 1.25rem; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section__title {
  font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section__desc { color: var(--text-muted); font-size: 1.05rem; }

/* -------------------------------------------------------------------------- */
/* Games — logo cards                                                          */
/* -------------------------------------------------------------------------- */

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}
@media (min-width: 640px) { .games__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; } }
@media (min-width: 1024px) { .games__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.game {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  isolation: isolate;
  opacity: 0;
  transform: translateY(24px);
  transform-style: preserve-3d;
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    opacity 520ms var(--ease);
}
.game.is-in { opacity: 1; transform: translateY(0); }

.game::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 30%), rgba(212,175,55,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
  z-index: 4;
  pointer-events: none;
}
.game:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 36px rgba(212,175,55,0.3);
}
.game:hover::before { opacity: 1; }
.game:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.game__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}
.game__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.game:hover .game__logo { transform: scale(1.08); }

.game__shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.game:hover .game__shine {
  animation: cardShine 0.85s var(--ease);
}
@keyframes cardShine {
  to { transform: translateX(120%); }
}

.game__meta {
  position: relative;
  z-index: 3;
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: linear-gradient(180deg, rgba(16,16,16,0.92), #0c0c0c);
}
.game__tags { display: inline-flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.game__badge {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.26rem 0.6rem; background: rgba(0, 0, 0, 0.5);
}
.game__hot {
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: #fff; border-radius: 999px; padding: 0.26rem 0.55rem;
  background: linear-gradient(135deg, #ff5e3a, #ff2d55);
  box-shadow: 0 0 14px rgba(255, 45, 85, 0.55);
  animation: hotPulse 1.6s ease-in-out infinite;
}
@keyframes hotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.game__name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.03em; line-height: 1.2;
}
.game__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-bright);
}
.game__cta svg { transition: transform 200ms var(--ease); }
.game:hover .game__cta svg { transform: translateX(5px); }

/* -------------------------------------------------------------------------- */
/* Spinning wheel                                                              */
/* -------------------------------------------------------------------------- */

.wheel-section {
  position: relative;
  overflow: hidden;
}

.wheel-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.wheel-stage.is-in { opacity: 1; transform: translateY(0); }

@media (min-width: 900px) {
  .wheel-stage {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.wheel-stage__glow {
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}
@media (min-width: 900px) {
  .wheel-stage__glow { left: 28%; }
}

.wheel-wrap {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--gold-bright);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.wheel-pointer::after {
  content: "";
  position: absolute;
  top: -28px; left: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-foil);
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
}

.wheel-rim {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 200ms var(--ease);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.55));
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.wheel-hub {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 3px solid #f5e6a8;
  background: var(--gold-foil);
  background-size: 200% 200%;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 30px rgba(212,175,55,0.55), inset 0 1px 0 rgba(255,255,255,0.5);
  z-index: 6;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.wheel-hub:hover:not(:disabled) {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 40px rgba(212,175,55,0.75);
}
.wheel-hub:disabled { cursor: wait; opacity: 0.9; }
.wheel-hub.is-spinning {
  animation: hubPulse 0.5s ease-in-out infinite;
}
.wheel-hub__label { position: relative; z-index: 1; }
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(212,175,55,0.5); }
  50% { box-shadow: 0 0 48px rgba(212,175,55,0.95); }
}

.wheel-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}

.wheel-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  background: linear-gradient(160deg, rgba(212,175,55,0.12), rgba(0,0,0,0.55));
  text-align: center;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.wheel-result.is-win {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.35);
  animation: winPop 0.55s var(--ease);
}
.wheel-result.is-lose {
  border-color: rgba(255,255,255,0.15);
}
@keyframes winPop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.wheel-result__eyebrow {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.wheel-result__prize {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.35rem;
}
.wheel-result__hint { color: var(--text-muted); font-size: 0.95rem; }

.wheel-prizes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.wheel-prizes li {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.wheel-prizes li:hover {
  border-color: var(--line);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 8;
}
.confetti-canvas.is-on { opacity: 1; }

/* -------------------------------------------------------------------------- */
/* Bonuses                                                                     */
/* -------------------------------------------------------------------------- */

.bonuses { max-width: none; padding-left: 0; padding-right: 0; overflow: hidden; }
.bonuses .section__head, .bonuses__row, .bonuses__fine {
  position: relative; z-index: 1; max-width: 1200px; margin-left: auto; margin-right: auto;
  padding-left: 1.25rem; padding-right: 1.25rem;
}
.bonuses__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; pointer-events: none; }
.bonuses::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  pointer-events: none;
}
.bonuses__row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .bonuses__row { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; } }

.bonus {
  position: relative; border: 1px solid var(--gold); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.65));
  padding: 2rem 1.25rem 1.5rem; text-align: center; min-height: 150px;
  display: grid; place-content: center;
  box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.05);
  opacity: 0; transform: translateY(18px);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 520ms var(--ease);
}
.bonus.is-in { opacity: 1; transform: translateY(0); }
.bonus.is-in:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-gold); }
.bonus--featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.55));
  box-shadow: 0 0 0 1px rgba(240, 215, 140, 0.35), var(--shadow-gold);
}
.bonus__ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold-foil); color: #0a0a0a;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.bonus__value { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.bonus__value span {
  display: block; font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; line-height: 1.05;
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 0.2rem;
}
.bonuses__fine { text-align: center; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* -------------------------------------------------------------------------- */
/* Payments                                                                    */
/* -------------------------------------------------------------------------- */

.payments__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 700px) { .payments__list { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.pay {
  display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
  padding: 1.5rem 0.75rem; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07); background: var(--bg-elevated);
  opacity: 0; transform: translateY(14px);
  transition: border-color 200ms var(--ease), transform 220ms var(--ease), opacity 500ms var(--ease), box-shadow 220ms var(--ease);
}
.pay.is-in { opacity: 1; transform: translateY(0); }
.pay.is-in:hover { border-color: var(--line); transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0,0,0,0.4); }

.pay__chip {
  width: 62px; height: 62px; border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 220ms var(--ease);
}
.pay.is-in:hover .pay__chip { transform: scale(1.08) rotate(-4deg); }
.pay__chip--cashapp { background: #00d54b; }
.pay__chip--chime { background: #1ec677; }
.pay__chip--venmo { background: #008cff; }
.pay__chip--zelle { background: #6d1ed4; }
.pay__chip--apple { background: #111; border: 1px solid #333; }
.pay__name { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em; }

/* -------------------------------------------------------------------------- */
/* Connect                                                                     */
/* -------------------------------------------------------------------------- */

.connect__panel {
  text-align: center; border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px); padding: 3rem 1.5rem;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12), transparent 55%), var(--bg-elevated);
}
.connect__links { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 720px; margin: 2rem auto 0; }
@media (min-width: 640px) { .connect__links { grid-template-columns: 1fr 1fr; } }

.social {
  display: flex; align-items: center; gap: 1rem; text-align: left;
  padding: 1.15rem 1.25rem; border-radius: var(--radius); border: 1px solid transparent;
  opacity: 0; transform: translateY(14px);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 500ms var(--ease);
}
.social.is-in { opacity: 1; transform: translateY(0); }
.social.is-in:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4); }
.social strong { display: block; font-size: 1.05rem; }
.social span { display: block; font-size: 0.85rem; opacity: 0.85; }
.social--fb { background: #1877f2; color: #fff; }
.social--tg { background: #229ed9; color: #fff; }
.social:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */

.footer { position: relative; z-index: 10; margin-top: 2rem; }
.footer__bar {
  background: var(--gold-foil); color: #0a0a0a;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 1rem 1.25rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.9rem;
}
.footer__fb, .footer__tg { display: inline-flex; align-items: center; gap: 0.55rem; transition: opacity 200ms var(--ease); }
.footer__fb:hover, .footer__tg:hover { opacity: 0.75; }
.footer__meta { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 2rem 1.25rem 2.5rem; color: var(--text-muted); font-size: 0.85rem; }
.footer__logo { width: 44px; height: 44px; object-fit: contain; }

/* -------------------------------------------------------------------------- */
/* Reduced motion                                                              */
/* -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg, .hero__logo, .hero__logo-wrap::before, .ambient__glow, .ambient__particles span,
  .ambient__floaters span, .hero__scroll span, .hero__slogan .word, .reveal, .btn--gold::after,
  .ticker__track, .game__hot { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .game, .bonus, .pay, .social, .wheel-stage { opacity: 1; transform: none; }
  .wheel-hub.is-spinning, .game__hot { animation: none !important; }
}
