/* Neon Shuffle — main stylesheet (no external resources, system fonts only) */

:root {
  --bg: #0a0918;
  --bg2: #110f25;
  --panel: #17152f;
  --panel2: #1e1b3d;
  --line: rgba(190, 180, 255, .13);
  --text: #f1eeff;
  --muted: #aba6cf;
  --dim: #7d79a3;
  --pink: #ff4fa3;
  --cyan: #3ee8ff;
  --lime: #c8ff4d;
  --violet: #8f6bff;
  --amber: #ffc94d;
  --radius: 18px;
  --wrap: 1180px;
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 88% -8%, rgba(255, 79, 163, .16), transparent 62%),
    radial-gradient(760px 520px at -12% 18%, rgba(62, 232, 255, .10), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font: 16px/1.6 var(--font);
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-underline-offset: 3px; }
a:hover { color: #fff; }
h1, h2, h3 { font-family: var(--display); line-height: 1.14; margin: 0 0 .55em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
::selection { background: var(--pink); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.muted { color: var(--muted); }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--lime); color: #000; padding: 8px 14px; border-radius: 8px; font-weight: 700; }
.skip:focus { left: 12px; }

/* ---------- Notice strip ---------- */
.strip { background: linear-gradient(90deg, #2c0f40, #0f2940); border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 600; }
.strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 18px; padding-block: 7px; }
.strip__item::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); vertical-align: 2px; }
.strip__age { background: var(--pink); color: #fff; border-radius: 6px; padding: 1px 8px; font-weight: 800; }

/* ---------- Top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 40; background: rgba(10, 9, 24, .86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar__row { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; }
.logo svg { width: 36px; height: 36px; flex: none; }
.logo b { color: var(--pink); font-weight: 800; text-shadow: 0 0 14px rgba(255, 79, 163, .55); }
.logo:hover { color: #fff; }
.menu { margin-left: auto; }
.menu ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu a { display: block; padding: 8px 14px; border-radius: 999px; color: var(--muted); text-decoration: none; font-weight: 600; font-size: .95rem; }
.menu a:hover { color: #fff; background: rgba(255, 255, 255, .05); }
.menu a[aria-current="page"] { color: #fff; background: rgba(62, 232, 255, .12); box-shadow: inset 0 0 0 1px rgba(62, 232, 255, .35); }
.topbar__tools { display: flex; align-items: center; gap: 10px; }
.sparks { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px 6px 9px; border-radius: 999px; background: rgba(200, 255, 77, .08); border: 1px solid rgba(200, 255, 77, .32); color: var(--lime); font-weight: 700; font-size: .9rem; text-decoration: none; font-variant-numeric: tabular-nums; white-space: nowrap; }
.sparks svg { width: 16px; height: 16px; }
.sparks:hover { color: var(--lime); background: rgba(200, 255, 77, .14); }
.age-chip { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 50%; border: 2px solid var(--pink); color: #fff; font-weight: 800; font-size: .82rem; box-shadow: 0 0 12px rgba(255, 79, 163, .45); }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
.burger span:not(.sr) { display: block; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .menu { position: absolute; left: 0; right: 0; top: 100%; margin: 0; background: var(--bg2); border-bottom: 1px solid var(--line); display: none; }
  .menu.is-open { display: block; }
  .menu ul { flex-direction: column; padding: 10px 20px 18px; }
  .menu a { padding: 12px 14px; border-radius: 12px; }
  .topbar__tools { margin-left: auto; }
}
@media (max-width: 440px) {
  .sparks__unit { display: none; }
  .logo { font-size: 1.05rem; }
  .logo svg { width: 30px; height: 30px; }
  .topbar__row { gap: 10px; }
  .age-chip { width: 34px; height: 34px; font-size: .75rem; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 0; border-radius: 999px; font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, opacity .15s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.btn--pink { background: linear-gradient(135deg, #ff4fa3, #ff7b5c); color: #fff; box-shadow: 0 10px 26px -10px rgba(255, 79, 163, .8); }
.btn--pink:hover { color: #fff; box-shadow: 0 14px 30px -10px rgba(255, 79, 163, .95); }
.btn--cyan { background: var(--cyan); color: #051219; }
.btn--cyan:hover { color: #051219; }
.btn--ghost { background: rgba(255, 255, 255, .06); color: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.btn--line { background: transparent; color: var(--cyan); box-shadow: inset 0 0 0 1px rgba(62, 232, 255, .5); }
.btn--line:hover { color: #fff; }
.btn--sm { padding: 8px 15px; font-size: .88rem; }
.btn--lg { padding: 15px 34px; font-size: 1.05rem; }
.linkbtn { padding: 0; border: 0; background: none; color: var(--muted); font: inherit; cursor: pointer; text-align: left; }
.linkbtn:hover { color: #fff; }

/* ---------- Layout helpers ---------- */
.band { padding-block: 60px; }
.band--alt { background: rgba(255, 255, 255, .018); border-block: 1px solid var(--line); }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 24px; margin-bottom: 28px; }
.sec-head h2 { margin: 0; }
.sec-head p { margin: 8px 0 0; color: var(--muted); max-width: 46em; }
.kicker { display: inline-block; margin-bottom: 10px; color: var(--lime); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel h2 { font-size: 1.12rem; }
.fineprint { color: var(--dim); font-size: .84rem; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { padding-block: 60px 44px; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.hero h1 .glow { color: var(--cyan); text-shadow: 0 0 22px rgba(62, 232, 255, .45); }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 38em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 16px; }
.hero__note { font-size: .92rem; color: var(--dim); }
.hero__note b { color: var(--lime); }
.hero__art img { width: 100%; height: auto; }
@media (max-width: 860px) {
  .hero { padding-block: 40px 30px; }
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__art { max-width: 420px; margin-inline: auto; order: -1; }
}

/* ---------- Notice tiles ---------- */
.notices { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.notice { position: relative; padding: 20px 18px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.notice::after { content: ""; position: absolute; inset: auto -30% -60% auto; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 79, 163, .22), transparent 70%); pointer-events: none; }
.notice:nth-child(2n)::after { background: radial-gradient(circle, rgba(62, 232, 255, .2), transparent 70%); }
.notice__mark { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 8px; margin-bottom: 12px; border-radius: 12px; background: rgba(255, 255, 255, .06); color: var(--lime); font-weight: 900; }
.notice strong { display: block; color: #fff; font-size: 1.02rem; line-height: 1.3; margin-bottom: 6px; }
.notice p { margin: 0; color: var(--muted); font-size: .9rem; }
@media (max-width: 1040px) { .notices { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .notices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .notices { grid-template-columns: 1fr; } }

/* ---------- Game cards ---------- */
.games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game { display: flex; flex-direction: column; overflow: hidden; border-radius: 22px; background: var(--panel); border: 1px solid var(--line); transition: transform .2s ease, border-color .2s, box-shadow .2s; }
.game:hover { transform: translateY(-3px); border-color: rgba(255, 79, 163, .45); box-shadow: 0 20px 44px -22px rgba(255, 79, 163, .6); }
.game__art { display: block; aspect-ratio: 40 / 26; background: #120f2a; }
.game__art img { width: 100%; height: 100%; object-fit: cover; }
.game__body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 18px 20px 20px; }
.game__tag { color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.game__body h3 { margin: 0; }
.game__body h3 a { color: var(--text); text-decoration: none; }
.game__body p { margin: 0; color: var(--muted); font-size: .94rem; }
.game__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; }
.game__min { color: var(--dim); font-size: .82rem; }
@media (max-width: 960px) { .games { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .games { grid-template-columns: 1fr; } }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filters button { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); font: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; }
.filters button:hover { color: #fff; }
.filters button[aria-pressed="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ---------- Steps / split lists ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; padding: 0; margin: 0 0 30px; counter-reset: st; }
.steps li { position: relative; padding: 24px 22px 22px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); counter-increment: st; }
.steps li::before { content: counter(st, decimal-leading-zero); display: block; margin-bottom: 10px; color: var(--pink); font-family: var(--display); font-size: 1.6rem; font-weight: 900; }
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: .94rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ticks, .crosses { list-style: none; padding: 0; margin: 0; }
.ticks li, .crosses li { position: relative; padding: 7px 0 7px 32px; color: #dcd8f5; }
.ticks li::before, .crosses li::before { position: absolute; left: 0; top: 8px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; font-size: .75rem; font-weight: 900; }
.ticks li::before { content: "\2713"; background: rgba(200, 255, 77, .15); color: var(--lime); }
.crosses li::before { content: "\2715"; background: rgba(255, 79, 163, .15); color: var(--pink); }
@media (max-width: 760px) { .steps, .split { grid-template-columns: 1fr; } }

.callout { margin: 0; padding: 18px 22px; border-left: 4px solid var(--amber); border-radius: 0 14px 14px 0; background: rgba(255, 201, 77, .07); color: #fff3d6; font-weight: 600; }
.duo { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }

.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 30px; border-radius: 24px; background: linear-gradient(120deg, rgba(255, 79, 163, .18), rgba(143, 107, 255, .16) 50%, rgba(62, 232, 255, .14)); border: 1px solid rgba(255, 255, 255, .12); }
.cta-band h2 { margin: 0 0 4px; font-size: 1.5rem; }
.cta-band p { margin: 0; color: var(--muted); }

/* ---------- Packs ---------- */
.packs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0 0 22px; }
.pack { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.pack__name { color: var(--muted); font-weight: 700; font-size: .9rem; }
.pack__amt { color: var(--lime); font-family: var(--display); font-size: 1.6rem; font-weight: 900; line-height: 1.2; }
.pack__amt small { font-size: .9rem; font-weight: 700; }
.pack__price { font-weight: 800; font-size: 1.1rem; margin-bottom: 10px; }
.pack .btn { margin-top: auto; }
@media (max-width: 960px) { .packs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .packs { grid-template-columns: 1fr; } }

/* ---------- Inner page head ---------- */
.pagehead { padding-block: 46px 26px; }
.pagehead--tight { padding-block: 30px 14px; }
.pagehead p { color: var(--muted); max-width: 46em; font-size: 1.07rem; }
.crumbs { margin-bottom: 12px; color: var(--dim); font-size: .86rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- Legal documents ---------- */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 44px; align-items: start; padding-bottom: 64px; }
.toc { position: sticky; top: 92px; padding: 18px 20px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); font-size: .9rem; }
.toc strong { display: block; margin-bottom: 8px; color: var(--dim); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 5px; color: var(--dim); }
.toc a { color: var(--muted); text-decoration: none; }
.toc a:hover { color: #fff; }
.doc { max-width: 780px; }
.doc h2 { margin-top: 1.9em; font-size: 1.32rem; scroll-margin-top: 96px; }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { margin-top: 1.4em; font-size: 1.05rem; }
.doc p, .doc li { color: #dad6f3; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 6px; }
.meta-line { color: var(--dim); font-size: .9rem; }
@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; }
}

/* ---------- Tables ---------- */
.tbl-wrap { overflow-x: auto; margin: 0 0 1.2em; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th, td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: rgba(255, 255, 255, .04); color: #fff; font-weight: 700; }
tr:last-child td { border-bottom: 0; }
.paytbl td:last-child, .paytbl th:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.paytbl tr.is-hit td { background: rgba(200, 255, 77, .16); color: #fff; }

/* ---------- Operator card ---------- */
.opcard { display: grid; grid-template-columns: max-content 1fr; gap: 10px 22px; margin: 0; }
.opcard dt { color: var(--dim); font-size: .86rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding-top: 2px; }
.opcard dd { margin: 0; color: #fff; overflow-wrap: anywhere; }
@media (max-width: 480px) { .opcard { grid-template-columns: 1fr; gap: 2px; } .opcard dd { margin-bottom: 10px; } }

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 34px; }
.faq-group h2 { font-size: 1.3rem; }
.faq details { margin-bottom: 10px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.faq details[open] { border-color: rgba(255, 79, 163, .4); }
.faq summary { position: relative; padding: 16px 52px 16px 20px; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--pink); font-size: 1.4rem; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 20px 16px; color: var(--muted); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 28px; align-items: start; padding-bottom: 64px; }
.contact-grid aside { display: grid; gap: 18px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 18px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .row2 { grid-template-columns: 1fr; } }
.field label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(190, 180, 255, .22); background: #0f0d22; color: var(--text); font: inherit; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(62, 232, 255, .18); }
.field [aria-invalid="true"] { border-color: #ff6fae; }
.field small { display: block; margin-top: 5px; color: var(--dim); font-size: .82rem; }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .92rem; cursor: pointer; }
.check input { flex: none; width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--pink); }
.err { display: block; margin-top: 5px; color: #ff8fbd; font-size: .85rem; font-weight: 600; }
.alert { margin-bottom: 20px; padding: 14px 18px; border-radius: 14px; }
.alert--ok { background: rgba(200, 255, 77, .1); border: 1px solid rgba(200, 255, 77, .4); color: #eaffc2; }
.alert--bad { background: rgba(255, 79, 163, .1); border: 1px solid rgba(255, 79, 163, .45); color: #ffd6ea; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.foot { margin-top: 48px; padding-block: 50px 28px; background: #07061a; border-top: 1px solid var(--line); font-size: .92rem; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr; gap: 30px; }
.foot h2 { margin-bottom: 12px; color: var(--dim); font-family: var(--font); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.foot ul { display: grid; gap: 8px; list-style: none; margin: 0; padding: 0; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: #fff; }
.foot__brand p { margin: 14px 0; color: var(--muted); }
.foot__op { color: var(--muted); font-style: normal; line-height: 1.8; overflow-wrap: anywhere; }
.foot__op strong { color: #fff; }
.foot__legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: .85rem; }
.foot__warn { color: #fff3d6; font-weight: 700; }
.chips { display: flex !important; flex-wrap: wrap; gap: 6px !important; }
.chip { padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: .76rem; font-weight: 600; }
.chip--pink { background: var(--pink); border-color: var(--pink); color: #fff; font-weight: 800; }
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }

/* ---------- Age gate ---------- */
.gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(6, 5, 16, .93); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); overflow-y: auto; }
.gate__box { width: 100%; max-width: 440px; padding: 34px 28px; border-radius: 24px; background: var(--panel); border: 1px solid var(--line); text-align: center; box-shadow: 0 30px 80px -20px rgba(255, 79, 163, .45); }
.gate__badge { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; border: 3px solid var(--pink); font-size: 1.5rem; font-weight: 900; box-shadow: 0 0 30px rgba(255, 79, 163, .6); }
.gate__box p { color: var(--muted); }
.gate__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 22px 0 16px; }
.gate__fine { font-size: .84rem; margin: 0; }

/* ---------- Cookie bar / modals / toasts ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: flex; align-items: center; gap: 18px; max-width: 1000px; margin-inline: auto; padding: 18px 20px; border-radius: 18px; background: var(--panel2); border: 1px solid rgba(62, 232, 255, .3); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8); }
.cookie p { margin: 0; color: var(--muted); font-size: .9rem; }
.cookie p strong { color: #fff; }
.cookie__btns { display: flex; flex-wrap: wrap; gap: 8px; flex: none; }
@media (max-width: 780px) { .cookie { flex-direction: column; align-items: stretch; } .cookie__btns .btn { flex: 1; } }

.modal { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; background: rgba(6, 5, 16, .8); overflow-y: auto; }
.modal__box { width: 100%; max-width: 540px; padding: 28px; border-radius: 22px; background: var(--panel); border: 1px solid var(--line); box-shadow: 0 30px 80px -30px rgba(143, 107, 255, .6); }
.modal__box h2 { font-size: 1.35rem; }
.modal__btns { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.pref { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.pref small { display: block; color: var(--dim); font-size: .84rem; }
.switch { position: relative; flex: none; width: 48px; height: 28px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #2b2750; transition: background .2s; pointer-events: none; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .2s; }
.switch input:checked + span { background: var(--pink); }
.switch input:checked + span::after { transform: translateX(20px); }
.switch input:disabled + span { opacity: .6; }
.switch input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.summary-list { margin: 14px 0; padding: 14px 18px; border-radius: 14px; background: rgba(0, 0, 0, .25); list-style: none; }
.summary-list li { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.summary-list b { color: #fff; }

.toasts { position: fixed; right: 16px; bottom: 16px; z-index: 97; display: grid; gap: 10px; max-width: min(360px, calc(100vw - 32px)); }
.toast { padding: 13px 16px; border-radius: 14px; background: #221e47; border: 1px solid rgba(200, 255, 77, .35); color: #fff; font-size: .92rem; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .7); animation: toastIn .25s ease; transition: opacity .4s, transform .4s; }
.toast.is-out { opacity: 0; transform: translateY(8px); }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

/* =====================================================================
   Game pages
   ===================================================================== */
.play { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; padding-bottom: 40px; }
.side { display: grid; gap: 18px; }
@media (max-width: 1000px) { .play { grid-template-columns: 1fr; } }

.wallet { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding: 12px 14px 12px 18px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); }
.wallet__bal { color: var(--lime); font-family: var(--display); font-size: 1.35rem; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.2; }
.wallet__bal small { display: block; color: var(--dim); font-family: var(--font); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.wallet__btns { display: flex; flex-wrap: wrap; gap: 8px; }

.felt { position: relative; min-height: 440px; padding: 26px 22px 20px; border-radius: 26px; background: radial-gradient(ellipse at 50% 0%, #2c2066 0%, #17133a 55%, #110e2b 100%); border: 1px solid rgba(143, 107, 255, .35); box-shadow: inset 0 0 70px rgba(0, 0, 0, .45), 0 34px 70px -40px rgba(143, 107, 255, .7); }
.g-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 22px; }
.g-status { min-height: 1.6em; margin: 16px 0 0; color: var(--muted); text-align: center; font-weight: 700; }
.g-status.is-good { color: var(--lime); }
.g-status.is-bad { color: #ff8fbd; }
.g-status.is-warn { color: var(--amber); }

.stake { display: inline-flex; align-items: center; gap: 6px; padding: 5px; border-radius: 999px; background: rgba(0, 0, 0, .32); border: 1px solid var(--line); }
.stake__label { padding-left: 10px; color: var(--dim); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.stake__btn { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .09); color: #fff; font-size: 1.15rem; line-height: 1; cursor: pointer; }
.stake__btn:hover:not(:disabled) { background: rgba(255, 255, 255, .18); }
.stake__btn:disabled { opacity: .35; cursor: not-allowed; }
.stake__val { min-width: 64px; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }

/* Slots */
.reels { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 460px; margin: 6px auto 0; padding: 14px; border-radius: 22px; background: #0b0920; border: 2px solid rgba(255, 79, 163, .45); box-shadow: 0 0 40px rgba(255, 79, 163, .18), inset 0 0 30px rgba(0, 0, 0, .6); }
.reels::after { content: ""; position: absolute; left: 6px; right: 6px; top: 50%; height: 2px; background: var(--pink); box-shadow: 0 0 10px var(--pink); opacity: .65; pointer-events: none; }
.reel { display: grid; grid-template-rows: repeat(3, 1fr); overflow: hidden; border-radius: 12px; background: linear-gradient(#15123a, #241e57 50%, #15123a); }
.reel__cell { display: grid; place-items: center; aspect-ratio: 1; padding: 16%; }
.reel__cell svg { width: 100%; height: 100%; }
.reel__cell:first-child, .reel__cell:last-child { opacity: .32; transform: scale(.82); }
.reel.is-spinning .reel__cell { filter: blur(1.6px); }
.reels.is-hit { animation: hit .7s ease 2; }
@keyframes hit { 50% { box-shadow: 0 0 70px rgba(200, 255, 77, .55), inset 0 0 30px rgba(0, 0, 0, .6); border-color: var(--lime); } }

/* Playing cards */
.hand-label { margin: 12px 0 8px; color: var(--dim); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.hand-label b { margin-left: 6px; color: #fff; font-size: .95rem; letter-spacing: 0; }
.hand { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; min-height: 120px; }
.pcard { position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 82px; height: 116px; padding: 8px 10px; border-radius: 12px; background: #fdfbff; color: #1a1636; font-family: var(--display); font-weight: 800; box-shadow: 0 10px 22px -8px rgba(0, 0, 0, .65); animation: deal .25s ease-out; user-select: none; }
.pcard__r { font-size: 1.35rem; line-height: 1; }
.pcard__s { align-self: flex-end; font-size: 2rem; line-height: 1; }
.pcard--red { color: #df2f6e; }
.pcard--back { background: repeating-linear-gradient(45deg, #ff4fa3 0 8px, #8f6bff 8px 16px); border: 4px solid #fdfbff; }
.pcard--back > * { visibility: hidden; }
@keyframes deal { from { opacity: 0; transform: translateY(-14px) rotate(-3deg); } }
@media (max-width: 520px) {
  .pcard { width: 60px; height: 86px; padding: 6px 7px; border-radius: 9px; }
  .pcard__r { font-size: 1.05rem; }
  .pcard__s { font-size: 1.45rem; }
  .hand { min-height: 90px; gap: 7px; }
}

/* Video poker */
.vp-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; max-width: 540px; margin: 10px auto 0; }
.vp-slot { display: flex; flex-direction: column; align-items: stretch; gap: 8px; padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.vp-slot:disabled { cursor: default; }
.vp-slot .pcard { width: 100%; height: auto; aspect-ratio: 5 / 7; }
.vp-hold { padding: 3px 0; border-radius: 6px; color: transparent; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-align: center; }
.vp-slot.is-held .vp-hold { background: var(--lime); color: #0b0a1a; }
.vp-slot.is-held .pcard { box-shadow: 0 0 0 3px var(--lime), 0 10px 22px -8px rgba(0, 0, 0, .65); }
@media (max-width: 520px) { .vp-cards { gap: 5px; } .vp-slot .pcard { padding: 5px; } }

/* Hi-Lo */
.hl { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px; margin-top: 8px; }
.hl .pcard { width: 124px; height: 174px; padding: 12px 14px; }
.hl .pcard__r { font-size: 2.1rem; }
.hl .pcard__s { font-size: 3.2rem; }
.hl-pot { min-width: 150px; text-align: center; }
.hl-pot small { display: block; color: var(--dim); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hl-pot b { display: block; color: var(--lime); font-family: var(--display); font-size: 2.1rem; font-variant-numeric: tabular-nums; }
.hl-pot span { color: var(--muted); font-size: .9rem; }
.hl-trail { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; min-height: 34px; margin-top: 18px; }
.hl-trail span { display: grid; place-items: center; min-width: 34px; height: 30px; padding: 0 6px; border-radius: 7px; background: #fdfbff; color: #1a1636; font-size: .8rem; font-weight: 800; }
.hl-trail span.r { color: #df2f6e; }

/* Wheel */
.wheel-area { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 26px; align-items: center; }
@media (max-width: 760px) { .wheel-area { grid-template-columns: 1fr; } }
.wheel-wrap { position: relative; width: min(300px, 78vw); margin: 0 auto; }
.wheel-wrap::before { content: ""; position: absolute; top: -8px; left: 50%; z-index: 2; transform: translateX(-50%); border: 11px solid transparent; border-top: 18px solid var(--lime); filter: drop-shadow(0 0 6px var(--lime)); }
.wheel { display: block; width: 100%; height: auto; transform-origin: 50% 50%; transition: transform 4.2s cubic-bezier(.12, .7, .12, 1); }
.wheel-result { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.wheel-result span { display: grid; place-items: center; width: 30%; aspect-ratio: 1; border-radius: 50%; background: #0b0920; border: 2px solid var(--line); font-family: var(--display); font-size: 1.7rem; font-weight: 900; }
.wheel-result span.c-pink { background: #d4337f; }
.wheel-result span.c-dark { background: #2b245c; }
.wheel-result span.c-zero { background: #12a8bf; }
.history { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; min-height: 30px; margin-top: 14px; }
.history span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; font-size: .78rem; font-weight: 800; }
.c-pink { background: #d4337f; }
.c-dark { background: #2b245c; }
.c-zero { background: #12a8bf; }

.rb { display: grid; grid-template-columns: 44px repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(3, 42px); gap: 4px; }
.rb__cell { position: relative; display: grid; place-items: center; min-width: 0; padding: 0; border: 0; border-radius: 8px; color: #fff; font: inherit; font-size: .88rem; font-weight: 800; cursor: pointer; grid-column: var(--c); grid-row: var(--r); transition: filter .15s, box-shadow .2s; }
.rb__cell:hover:not(:disabled) { filter: brightness(1.25); }
.rb__cell:disabled { cursor: default; }
.rb__cell--pink { background: #c42b78; }
.rb__cell--dark { background: #262052; }
.rb__cell--zero { background: #128ea3; grid-column: 1; grid-row: 1 / 4; }
.rb__out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 4px; }
.rb__out--six { grid-template-columns: repeat(6, 1fr); }
.rb__out .rb__cell { height: 42px; background: #1d1942; grid-column: auto; grid-row: auto; font-size: .82rem; }
.rb__out .rb__cell--pink { background: #c42b78; }
.rb__cell.is-win { box-shadow: 0 0 0 3px var(--lime), 0 0 22px var(--lime); z-index: 1; }
.rb__chip { position: absolute; top: -7px; right: -5px; z-index: 2; display: grid; place-items: center; min-width: 24px; height: 22px; padding: 0 5px; border-radius: 11px; background: var(--lime); color: #0b0a1a; font-size: .66rem; font-weight: 900; box-shadow: 0 0 0 2px #0b0920; pointer-events: none; }
@media (max-width: 640px) {
  .rb { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: 36px; }
  .rb__cell { grid-column: var(--mc); grid-row: var(--mr); }
  .rb__cell--zero { grid-column: 1 / 4; grid-row: 1; }
  .rb__out--six { grid-template-columns: repeat(3, 1fr); }
}

/* Dice */
.dice { display: flex; justify-content: center; gap: 24px; margin: 14px 0 6px; }
.die { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); width: 96px; height: 96px; padding: 13px; border-radius: 20px; background: linear-gradient(145deg, #ffffff, #e2dbfb); box-shadow: 0 14px 30px -10px rgba(62, 232, 255, .55); }
.pip { width: 72%; height: 72%; margin: auto; border-radius: 50%; background: #1a1636; visibility: hidden; }
.pip.on { visibility: visible; }
.die.is-rolling { animation: shake .45s linear infinite; }
@keyframes shake { 25% { transform: rotate(-12deg) translateY(-5px); } 75% { transform: rotate(12deg) translateY(3px); } }
.dice-total { margin: 8px 0 18px; color: var(--muted); text-align: center; font-weight: 700; }
.dice-total b { color: #fff; font-size: 1.3rem; }
.calls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 620px; margin: 0 auto; }
@media (max-width: 560px) { .calls { grid-template-columns: repeat(2, 1fr); } .die { width: 80px; height: 80px; padding: 11px; } }
.call { position: relative; display: block; cursor: pointer; }
.call input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.call span { display: block; padding: 12px 8px; border-radius: 14px; border: 1px solid var(--line); background: rgba(0, 0, 0, .25); text-align: center; transition: background .15s, box-shadow .15s; }
.call b { display: block; font-size: 1.02rem; }
.call small { color: var(--muted); font-size: .8rem; }
.call input:checked + span { background: rgba(255, 79, 163, .14); box-shadow: inset 0 0 0 2px var(--pink); }
.call input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.call input:disabled + span { opacity: .55; cursor: not-allowed; }

.mini-list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.mini-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, .04); color: var(--text); text-decoration: none; font-weight: 600; }
.mini-list a:hover { background: rgba(255, 255, 255, .08); }
.mini-list small { color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.rules { padding-left: 20px; color: var(--muted); font-size: .93rem; }
.rules li { margin-bottom: 7px; }

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