/* Social Casino Slots: Vegas — promo site · scv layer
   Design: late-night Vegas marquee. Ink-indigo ground, gold marquee bulbs,
   cherry-red CTA, a live idle reel as the hero signature. */

:root {
  --ink: #10131f;
  --ink-2: #171b2c;
  --panel: #1b2036;
  --line: #2a3050;
  --gold: #e8b84b;
  --gold-dim: rgba(232, 184, 75, 0.35);
  --cherry: #e1483f;
  --cherry-dim: rgba(225, 72, 63, 0.35);
  --teal: #34d6c4;
  --paper: #f3efe4;
  --muted: #9099b8;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --play-url: "https://play.google.com/store/apps/details?id=com.gamebuddy.socialcasinoslots&hl=en";
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.scv-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.scv-skip:focus { left: 0; }

/* ---------- Backdrop: marquee bulb field ---------- */
.scv-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(232,184,75,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(225,72,63,0.09), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(52,214,196,0.06), transparent 60%),
    var(--ink);
}
.scv-bulb {
  position: absolute;
  width: var(--sz, 5px);
  height: var(--sz, 5px);
  border-radius: 50%;
  background: var(--gold);
  opacity: var(--op, 0.5);
  box-shadow: 0 0 6px 1px rgba(232, 184, 75, 0.6);
  animation: scv-twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes scv-twinkle {
  0%, 100% { opacity: var(--op, 0.5); }
  50% { opacity: calc(var(--op, 0.5) * 0.25); }
}

/* ---------- Shell / type basics ---------- */
.scv-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.scv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.scv-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.scv-page-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
}

.scv-lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.scv-lede-tight { margin-bottom: 1.5rem; }

/* ---------- Header ---------- */
.scv-head-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 19, 31, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.scv-head {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.scv-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin-right: auto;
  white-space: nowrap;
}
.scv-logo strong { color: var(--gold); }
.scv-logo span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: none;
}

.scv-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  border-radius: 8px;
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

.scv-nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.88rem;
}
.scv-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.scv-nav a:hover, .scv-nav a[aria-current="page"] { color: var(--paper); }

.scv-install {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cherry);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.scv-install:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(225,72,63,0.35); }

@media (max-width: 760px) {
  .scv-nav-toggle { display: inline-block; }
  .scv-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem;
    gap: 0.85rem;
    display: none;
  }
  .scv-nav.is-open { display: flex; }
}

/* ---------- Hero ---------- */
.scv-hero {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 1rem;
  align-items: center;
}
@media (min-width: 900px) {
  .scv-hero { grid-template-columns: 1.05fr 0.95fr; padding: 4rem 0 2rem; }
}

.scv-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0.6rem 0 1rem;
}
.scv-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.scv-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
}
.scv-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.scv-trust .scv-star { color: var(--gold); }

.scv-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.5rem; }

.scv-play-badge img { height: 54px; width: auto; }
.scv-play-badge { display: inline-block; transition: transform 0.2s, filter 0.2s; }
.scv-play-badge:hover { transform: scale(1.03); filter: drop-shadow(0 4px 18px rgba(232,184,75,0.3)); }

.scv-fineprint { font-size: 0.78rem; color: var(--muted); max-width: 42ch; }

/* ---------- Signature: live reel cabinet ---------- */
.scv-cabinet {
  position: relative;
  background: linear-gradient(180deg, #232a46, #171a2b);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.scv-cabinet::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(120deg, var(--gold), transparent 35%, transparent 65%, var(--cherry));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}
.scv-cabinet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scv-cabinet__lamps { display: flex; gap: 5px; }
.scv-cabinet__lamps span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px 1px rgba(232,184,75,0.7);
  animation: scv-twinkle 2.2s ease-in-out infinite;
}
.scv-cabinet__lamps span:nth-child(2) { animation-delay: 0.4s; }
.scv-cabinet__lamps span:nth-child(3) { animation-delay: 0.8s; }

.scv-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  background: #0b0d17;
  border-radius: 10px;
  padding: 0.6rem;
  border: 1px solid rgba(232,184,75,0.15);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}
.scv-reel {
  height: 168px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 20%, transparent 80%, rgba(0,0,0,0.35)), #12162a;
  position: relative;
}
.scv-reel__strip {
  display: flex;
  flex-direction: column;
  animation: scv-spin var(--spd, 6s) linear infinite;
}
.scv-reel__sym {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
@keyframes scv-spin {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.scv-cabinet__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.scv-cabinet__foot strong { color: var(--gold); }

/* ---------- Stat ticker ---------- */
.scv-ticker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1rem 0 3rem;
}
.scv-ticker__item {
  background: var(--panel);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.scv-ticker__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.scv-ticker__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---------- Paytable feature list ---------- */
.scv-paytable {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.5rem 0 3rem;
  background: var(--panel);
}
.scv-paytable__row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.4rem;
  border-top: 1px solid var(--line);
}
.scv-paytable__row:first-child { border-top: none; }
.scv-paytable__sym {
  font-size: 1.9rem;
  text-align: center;
}
.scv-paytable__text h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
}
.scv-paytable__text p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.scv-paytable__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--teal);
  border: 1px solid rgba(52,214,196,0.35);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ---------- Screenshot rail ---------- */
.scv-rail-wrap { margin: 1.5rem 0 3rem; }
.scv-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.scv-rail::-webkit-scrollbar { height: 8px; }
.scv-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.scv-rail figure {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0d17;
}
.scv-rail img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.scv-rail figcaption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- FAQ ---------- */
.scv-faq { margin: 1.5rem 0 3rem; border-top: 1px solid var(--line); }
.scv-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.scv-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.scv-faq summary::-webkit-details-marker { display: none; }
.scv-faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.scv-faq details[open] summary::after { transform: rotate(45deg); }
.scv-faq p { color: var(--muted); margin: 0.75rem 0 0; max-width: 68ch; }

/* ---------- Inline / final CTA ---------- */
.scv-cta-band {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(232,184,75,0.14), transparent 70%), var(--panel);
  border: 1px solid var(--line);
  margin: 2rem 0;
}
.scv-cta-band .scv-eyebrow { justify-content: center; margin-bottom: 0.75rem; }
.scv-cta-band .scv-eyebrow::before { display: none; }

/* ---------- Disclaimer aside ---------- */
.scv-aside {
  border-left: 3px solid var(--gold);
  background: var(--panel);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 2rem 0;
}
.scv-aside strong { color: var(--paper); }

/* ---------- Prose (legal pages) ---------- */
.scv-prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2rem 0 0.6rem;
}
.scv-prose h2:first-child { margin-top: 0; }
.scv-prose p, .scv-prose li { color: var(--muted); }
.scv-prose a { color: var(--teal); }
.scv-prose code {
  font-family: var(--font-mono);
  background: var(--panel);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--paper);
}

/* ---------- Footer ---------- */
.scv-foot {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 3rem 1.5rem 2rem;
}
.scv-foot__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 0.7fr 1fr;
}
@media (max-width: 760px) {
  .scv-foot__inner { grid-template-columns: 1fr; }
}
.scv-foot h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.scv-foot__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
}
.scv-foot__logo strong { color: var(--gold); }
.scv-foot p { color: var(--muted); font-size: 0.88rem; }
.scv-foot__links { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.88rem; }
.scv-foot__links a { text-decoration: none; color: var(--muted); }
.scv-foot__links a:hover { color: var(--paper); }
.scv-foot__pub { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.scv-foot__pub strong { color: var(--paper); }
.scv-foot__bottom {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Age / cookie modal ---------- */
.scv-age, .scv-cookies {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.scv-age.is-visible { display: flex; }
.scv-age__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,9,15,0.86);
  backdrop-filter: blur(3px);
}
.scv-age__card {
  position: relative;
  max-width: 420px;
  margin: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.scv-age__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.scv-age__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}
.scv-age__text { color: var(--paper); font-size: 0.95rem; }
.scv-age__fine { color: var(--muted); font-size: 0.8rem; }
.scv-age__actions { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.scv-age__btn {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.92rem;
}
.scv-age__btn--yes { background: var(--gold); color: var(--ink); }
.scv-age__btn--no { background: transparent; color: var(--muted); border: 1px solid var(--line); }

.scv-cookies {
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
}
.scv-cookies.is-visible { display: flex; }
.scv-cookies__inner {
  max-width: 720px;
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6);
}
.scv-cookies__title { font-weight: 700; margin: 0 0 0.2rem; }
.scv-cookies__text { color: var(--muted); font-size: 0.85rem; margin: 0; }
.scv-cookies__accept {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
body.scv-modal-open { overflow: hidden; }

/* ---------- Slot demo (Vegas Spin) ---------- */
.scv-demo-wrap { margin: 2rem 0 3rem; }
.scv-demo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(180deg, #232a46, #12162a);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.scv-demo__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
}
.scv-demo__head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0;
}
.scv-demo__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
}
.scv-demo__hud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.scv-demo__stat {
  background: #0b0d17;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.4rem;
  text-align: center;
}
.scv-demo__stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
}
.scv-demo__stat strong { font-family: var(--font-mono); color: var(--gold); font-size: 1.05rem; }

.scv-demo__window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #0b0d17;
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
  margin-bottom: 0.9rem;
}
.scv-demo-reel {
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  background: #12162a;
  position: relative;
}
.scv-demo-reel.is-spinning::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(255,255,255,0.03) 6px 12px);
}
.scv-demo-reel__strip { will-change: transform; }
.scv-demo-symbol {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
}
.scv-demo.is-shake { animation: scv-shake 0.4s ease; }
@keyframes scv-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}
.scv-demo.is-win .scv-demo__window { box-shadow: inset 0 0 30px rgba(232,184,75,0.35), 0 0 0 2px var(--gold); }
.scv-demo.is-jackpot .scv-demo__window { box-shadow: inset 0 0 40px rgba(225,72,63,0.4), 0 0 0 2px var(--cherry); }

.scv-demo__bet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
}
.scv-demo__bet button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--paper);
  font-size: 1rem;
  cursor: pointer;
}
.scv-demo__bet strong { color: var(--gold); min-width: 3ch; text-align: center; }
.scv-demo__bet label { position: absolute; left: -9999px; }

.scv-demo__actions { display: flex; gap: 0.6rem; }
.scv-demo__btn {
  flex: 1;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}
.scv-demo__btn--spin { background: var(--cherry); color: #fff; }
.scv-demo__btn--spin:disabled { opacity: 0.5; cursor: not-allowed; }
.scv-demo__btn--muted { background: transparent; border: 1px solid var(--line); color: var(--muted); }

.scv-demo__msg {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.9rem 0 0.3rem;
  min-height: 1.2em;
}
.scv-demo__msg.is-win { color: var(--gold); }
.scv-demo__msg.is-lose { color: var(--muted); }
.scv-demo__fine {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  opacity: 0.75;
}
.scv-demo__confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
  opacity: 0;
}
.scv-demo__confetti.is-active { opacity: 1; }
.scv-confetti-piece {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  animation: scv-confetti-fall 2s ease-out forwards;
}
@keyframes scv-confetti-fall {
  to { transform: translateY(100vh) rotate(540deg); opacity: 0; }
}
