:root {
  --ink: #070914;
  --navy: #0b1024;
  --panel: #11172d;
  --panel-2: #17112b;
  --glass: rgba(20, 27, 55, .72);
  --line: rgba(255, 255, 255, .12);
  --gold: #ffd56a;
  --gold-2: #ff9f2f;
  --emerald: #29f0a0;
  --blue: #36c9ff;
  --purple: #a45cff;
  --text: #f7f8ff;
  --muted: #b7c0dc;
  --danger: #ff6b8b;
  --ok: #5df0a9;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 15% -10%, rgba(164, 92, 255, .24), transparent 32rem),
    radial-gradient(circle at 90% 5%, rgba(54, 201, 255, .18), transparent 28rem),
    linear-gradient(180deg, #060711 0%, #0a0e1f 38%, #090913 100%);
  background-size: 84px 84px, 84px 84px, auto, auto, auto;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 213, 106, .14), transparent 14rem),
    radial-gradient(circle at 82% 28%, rgba(164, 92, 255, .16), transparent 17rem),
    radial-gradient(circle at 54% 78%, rgba(41, 240, 160, .10), transparent 18rem);
  animation: ambientShift 13s ease-in-out infinite alternate;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); margin: 0 0 1rem; max-width: 72ch; }
strong { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 8, 20, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--emerald), var(--blue), transparent);
  opacity: .75;
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #07101a;
  background: conic-gradient(from 140deg, var(--gold), var(--emerald), var(--blue), var(--purple), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 213, 106, .25);
  font-weight: 950;
  position: relative;
  isolation: isolate;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, transparent, rgba(255,213,106,.55), transparent, rgba(54,201,255,.55), transparent);
  z-index: -1;
  animation: spinGlow 5s linear infinite;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .94rem;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 22px rgba(54,201,255,.12);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  color: #07101a;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  box-shadow: 0 0 0 1px rgba(255,255,255,.15) inset, 0 14px 34px rgba(41, 240, 160, .18);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.65) 50%, transparent 65% 100%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px rgba(41, 240, 160, .38), 0 0 22px rgba(255,213,106,.25);
  filter: saturate(1.12);
}
.cta:hover::before { transform: translateX(130%); }
.cta.secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.cta.purple { background: linear-gradient(135deg, var(--purple), var(--blue)); color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 213, 106, .12), transparent 18rem),
    radial-gradient(circle at 72% 20%, rgba(41, 240, 160, .09), transparent 20rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(255,213,106,.16), transparent 65%);
  filter: blur(24px);
  opacity: .75;
}

.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.home-hero .hero-grid {
  grid-template-columns: 1.05fr .92fr;
  padding: 48px;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 106, .22);
  background:
    repeating-radial-gradient(ellipse at 86% 27%, rgba(255,213,106,.24) 0 1px, transparent 2px 18px),
    repeating-linear-gradient(102deg, rgba(255,213,106,.16) 0 2px, transparent 2px 24px),
    radial-gradient(circle at 84% 12%, rgba(255,169,66,.20), transparent 16rem),
    radial-gradient(circle at 84% 78%, rgba(41,240,160,.11), transparent 18rem),
    linear-gradient(135deg, rgba(16,18,42,.96), rgba(12,26,45,.92) 58%, rgba(37,24,60,.88));
  box-shadow: 0 30px 90px rgba(0,0,0,.56), inset 0 0 0 1px rgba(255,255,255,.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(2rem, 5vw, 4.25rem); max-width: 860px; }
.home-hero h1 { font-size: clamp(3rem, 6vw, 5.05rem); line-height: 1.08; max-width: 640px; }
h2 { font-size: clamp(1.55rem, 3.1vw, 2.55rem); margin-bottom: 18px; }
h3 { font-size: 1.22rem; margin-bottom: 10px; }

.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 690px; margin-top: 18px; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.rating-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.metric, .card, .table-wrap, .cta-band, .toc {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.metric {
  border-radius: 18px;
  padding: 15px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.metric:hover { transform: translateY(-4px); border-color: rgba(255,213,106,.38); box-shadow: 0 18px 42px rgba(255,213,106,.10); }
.metric b { display: block; font-size: 1.3rem; color: #fff; }
.metric span { color: var(--muted); font-size: .86rem; }

.hero-card {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,213,106,.16), rgba(54,201,255,.08) 36%, rgba(164,92,255,.18)),
    rgba(13,18,39,.72);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.5), 0 0 60px rgba(164,92,255,.18);
  transform-style: preserve-3d;
}

.home-hero .hero-card {
  min-height: auto;
  border-radius: 24px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--gold);
  box-shadow:
    72px 36px 0 var(--emerald),
    190px 12px 0 var(--blue),
    286px 82px 0 var(--purple),
    360px 42px 0 var(--gold);
  width: 8px;
  height: 8px;
  top: 20px;
  left: 38px;
  animation: blinkLights 1.15s steps(2, end) infinite;
}

.hero-card::after {
  top: auto;
  left: auto;
  right: 400px;
  bottom: 18px;
  animation-delay: .45s;
}

.casino-orbit {
  position: absolute;
  inset: 40px 22px auto;
  height: 250px;
  background: url("../images/casino-orbit.svg") center/contain no-repeat;
  filter: drop-shadow(0 26px 45px rgba(0,0,0,.35));
}

.hero-offer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-radius: 24px;
  padding: 20px;
  background: rgba(5, 8, 20, .76);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 32px rgba(54,201,255,.12) inset;
}

.home-hero .hero-offer {
  position: static;
  padding: 22px;
  border-radius: 18px;
  background: rgba(8, 10, 24, .82);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 55px rgba(0,0,0,.42);
}

.scorecard {
  display: grid;
  gap: 14px;
}

.score-row {
  display: grid;
  grid-template-columns: 104px 1fr 34px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
  font-size: .95rem;
}

.bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #21e6a0, #36c9ff, #a45cff);
  box-shadow: 0 0 16px rgba(54,201,255,.32);
}

.score-row b { color: var(--gold); text-align: right; }

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.hero-mini {
  min-height: 148px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}

.hero-mini strong {
  display: block;
  color: var(--gold);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 8px;
}

.coin-badge {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a1205;
  font-size: 2rem;
  font-weight: 950;
  background:
    radial-gradient(circle at 34% 28%, #fff3aa, transparent 26%),
    repeating-conic-gradient(from 0deg, #ffcf5d 0 10deg, #bd7924 10deg 18deg),
    linear-gradient(135deg, #ffd76b, #ff9f2f);
  box-shadow: 0 0 42px rgba(255,213,106,.45), inset 0 0 0 8px rgba(120,72,17,.22);
  animation: coinFloat 2.6s ease-in-out infinite;
}
.stars { color: var(--gold); letter-spacing: .08em; }
.score { font-size: 2.5rem; font-weight: 950; color: #fff; }

.section { padding: 52px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); border-block: 1px solid rgba(255,255,255,.06); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.card {
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.12), transparent 32%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(54,201,255,.34);
  box-shadow: var(--shadow), 0 0 35px rgba(54,201,255,.16);
}
.card:hover::after { opacity: 1; }
.card.glow { box-shadow: var(--shadow), 0 0 35px rgba(54,201,255,.10); }
.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(41, 240, 160, .12);
  color: var(--emerald);
  font-size: .78rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.list { padding: 0; margin: 16px 0 0; list-style: none; }
.list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--muted);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  box-shadow: 0 0 16px rgba(41,240,160,.5);
}

.table-wrap { border-radius: 22px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.09); vertical-align: top; }
th { color: #fff; background: rgba(255,255,255,.08); font-size: .9rem; }
td { color: var(--muted); }
tr.highlight td { background: rgba(255, 213, 106, .08); color: #eef3ff; }
tbody tr:hover td { background: rgba(54,201,255,.055); color: #f7f8ff; }

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 18px;
  margin: 12px 0;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.faq-item:hover { transform: translateX(4px); border-color: rgba(41,240,160,.35); background: rgba(255,255,255,.065); }
.faq-item h3 { font-size: 1.05rem; }

.cta-band {
  border-radius: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 16% 0%, rgba(255,213,106,.18), transparent 19rem),
    radial-gradient(circle at 86% 0%, rgba(41,240,160,.16), transparent 18rem),
    rgba(11,16,36,.78);
}

.toc {
  border-radius: 20px;
  padding: 18px;
  position: sticky;
  top: 96px;
}
.toc a { display: block; color: var(--muted); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.toc a:hover { color: #fff; }

.breadcrumbs { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.breadcrumbs a { color: var(--blue); }

.trust-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-pill {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(54,201,255,.22);
  background: linear-gradient(180deg, rgba(21,31,73,.8), rgba(15,17,43,.74));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

.trust-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), #fff2a0);
  box-shadow: 0 0 16px rgba(255,213,106,.55);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: min(430px, calc(100% - 28px));
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,213,106,.28);
  background: rgba(8, 10, 24, .92);
  box-shadow: 0 0 42px rgba(255,159,47,.20), 0 20px 70px rgba(0,0,0,.46);
  backdrop-filter: blur(16px);
}

.floating-cta strong { display: block; line-height: 1.15; }
.floating-cta span { color: var(--muted); font-size: .92rem; }
.floating-cta .cta { min-width: 130px; background: linear-gradient(135deg, #ffd56a, #ff7a45); }

.jackpot-rail {
  border-block: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(255,213,106,.10), rgba(41,240,160,.10), rgba(164,92,255,.10)),
    rgba(5,8,20,.82);
  overflow: hidden;
}

.jackpot-track {
  display: flex;
  width: max-content;
  animation: jackpotSlide 28s linear infinite;
}

.jackpot-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.jackpot-track b { color: var(--gold); text-shadow: 0 0 18px rgba(255,213,106,.65); }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.logo-tile {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,213,106,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  transition: transform .22s ease, box-shadow .22s ease;
}

.logo-tile span { display: block; color: var(--muted); font-size: .75rem; font-weight: 750; margin-top: 2px; }
.logo-tile:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 0 0 34px rgba(255,213,106,.16); }

.slot-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,213,106,.24);
  background: linear-gradient(180deg, rgba(255,213,106,.12), rgba(164,92,255,.09));
  box-shadow: inset 0 0 28px rgba(255,213,106,.08), 0 18px 54px rgba(0,0,0,.34);
}

.slot-reel {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #080b18;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.12);
  text-shadow: 0 0 18px rgba(255,213,106,.55);
  animation: reelPulse 1.8s ease-in-out infinite;
}

.slot-reel:nth-child(2) { color: var(--emerald); animation-delay: .2s; }
.slot-reel:nth-child(3) { color: var(--blue); animation-delay: .4s; }

.mini-copy {
  max-width: 58ch;
  font-size: .98rem;
}

.home-hero + .section {
  padding-top: 38px;
}

.site-footer {
  background: #050712;
  border-top: 1px solid var(--line);
  padding: 42px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 22px; }
.footer-links a { display: block; color: var(--muted); margin: 8px 0; }
.legal { font-size: .88rem; color: #95a0bd; margin-top: 24px; }

@media (max-width: 880px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav .cta { display: none; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 8, 20, .96);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero-grid, .split, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .home-hero .hero-grid { grid-template-columns: 1fr; padding: 30px 22px; min-height: auto; }
  .coin-badge { width: 68px; height: 68px; font-size: 1.55rem; right: 18px; top: 18px; }
  .trust-pills { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .rating-strip { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .hero-card { min-height: 390px; }
  .table-wrap { overflow-x: auto; }
}

@media (max-width: 520px) {
  .wrap, .nav { width: min(100% - 24px, 1160px); }
  .brand span:last-child { max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding-top: 42px; }
  .rating-strip { grid-template-columns: 1fr; }
  .hero-actions .cta, .actions .cta, .cta-band .cta { width: 100%; }
  .home-hero h1 { font-size: clamp(2.35rem, 14vw, 3.3rem); }
  .home-hero .hero-grid { padding-top: 86px; }
  .hero-mini-grid, .trust-pills { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 84px 1fr 30px; font-size: .86rem; }
  .floating-cta { left: 14px; right: 14px; bottom: 12px; gap: 10px; }
  .floating-cta .cta { min-width: 108px; padding-inline: 14px; }
  .logo-wall { grid-template-columns: 1fr; }
  .slot-reel { min-height: 84px; font-size: 1.45rem; }
}

@keyframes ambientShift {
  from { transform: translate3d(0,0,0) scale(1); opacity: .78; }
  to { transform: translate3d(0,-18px,0) scale(1.04); opacity: 1; }
}

@keyframes spinGlow { to { transform: rotate(360deg); } }

@keyframes blinkLights {
  0%, 100% { opacity: .35; filter: brightness(.9); }
  50% { opacity: 1; filter: brightness(1.8); }
}

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

@keyframes reelPulse {
  0%, 100% { transform: translateY(0); box-shadow: inset 0 0 22px rgba(255,255,255,.04); }
  50% { transform: translateY(-3px); box-shadow: inset 0 0 28px rgba(255,213,106,.13), 0 0 22px rgba(255,213,106,.12); }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

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