:root {
    --bg:           #0e1116;
    --bg-soft:      #141a22;
    --surface:      #18202a;
    --surface-2:    #1e2833;
    --line:         #2a3644;
    --line-soft:    #222d39;

    --text:         #e9e6df;
    --text-dim:     #9aa6b4;
    --text-faint:   #6f7d8c;

    --gold:         #f0a828;
    --gold-deep:    #d98a15;
    --ember:        #e2622a;
    --bronze:       #c08a3e;
    --green:        #4ea672;

    --radius:       14px;
    --radius-sm:    9px;
    --wrap:         1140px;
    --measure:      74ch;

    --shadow:       0 18px 40px rgba(0, 0, 0, .45);
    --shadow-soft:  0 8px 22px rgba(0, 0, 0, .3);

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 17px/1.65 var(--font);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.05rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .55vw, 1.4rem); margin-top: 1.8em; }
p  { margin: 0 0 1.1em; }

code {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: .88em;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: 5px;
    padding: .1em .38em;
    color: #d7c9a8;
    overflow-wrap: anywhere;
}

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--gold); color: #12161d; padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.site-head {
    position: sticky; top: 0; z-index: 40;
    background: rgba(16, 22, 30, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}

.site-head__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 62px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand img { width: auto; height: 34px; }

@media (max-width: 420px) { .brand img { height: 29px; } }

.brand--foot { width: auto; height: 30px; margin-bottom: .2rem; }

.nav { display: flex; align-items: center; gap: .3rem; }

.nav__item {
    color: var(--text-dim);
    font-size: .875rem; font-weight: 600;
    padding: .45rem .62rem; border-radius: 8px;
    white-space: nowrap;
    display: inline-flex; align-items: center; min-height: 40px;
}
.nav__item:hover { color: var(--text); background: rgba(255, 255, 255, .05); text-decoration: none; }
.nav__item.is-active { color: var(--gold); background: rgba(240, 168, 40, .12); }

.burger { display: none; }

@media (max-width: 1099px) {
    .burger {
        display: inline-grid; place-items: center;
        width: 46px; height: 46px; margin-right: -.4rem;
        background: none; border: 1px solid var(--line); border-radius: 10px;
        color: var(--text); cursor: pointer;
    }
    .burger__box { position: relative; width: 20px; height: 14px; }
    .burger__bar, .burger__bar::before, .burger__bar::after {
        position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px;
        background: currentColor; transition: transform .18s ease, opacity .18s ease;
    }
    .burger__bar { top: 6px; }
    .burger__bar::before { content: ""; top: -6px; }
    .burger__bar::after  { content: ""; top: 6px; }

    .burger[aria-expanded="true"] .burger__bar { background: transparent; }
    .burger[aria-expanded="true"] .burger__bar::before { transform: translateY(6px) rotate(45deg); }
    .burger[aria-expanded="true"] .burger__bar::after  { transform: translateY(-6px) rotate(-45deg); }

    .nav {
        position: absolute; left: 0; right: 0; top: 100%;
        display: grid; gap: .25rem;
        padding: .6rem max(1.2rem, calc((100vw - var(--wrap)) / 2)) 1rem;
        background: #10161e;
        border-bottom: 1px solid var(--line-soft);
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0; visibility: hidden;
        transition: opacity .16s ease, transform .16s ease, visibility .16s;
    }
    .nav.is-open { opacity: 1; visibility: visible; transform: none; }

    .nav__item { font-size: 1rem; min-height: 48px; padding: .6rem .7rem; border-radius: var(--radius-sm); }
}

@media (prefers-reduced-motion: reduce) {
    .nav, .burger__bar, .burger__bar::before, .burger__bar::after { transition: none; }
}

.hero {
    background:
        radial-gradient(1100px 420px at 78% -12%, rgba(226, 98, 42, .28), transparent 62%),
        radial-gradient(760px 340px at 12% 0%, rgba(240, 168, 40, .14), transparent 60%),
        linear-gradient(180deg, #121821, var(--bg));
    border-bottom: 1px solid var(--line-soft);
    padding-block: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero__grid { display: block; position: static; }

.hero__body {
    position: relative; z-index: 2;
    max-width: var(--measure);
    margin-inline: auto;
}

.hero__eyebrow {
    text-transform: uppercase; letter-spacing: .11em;
    font-size: .76rem; font-weight: 700; color: var(--bronze); margin-bottom: .8rem;
}

.hero__title { font-size: clamp(1.9rem, 1.25rem + 2.9vw, 2.9rem); margin-bottom: .5em; }
.hero__lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem); color: var(--text-dim); max-width: 58ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

@media (max-width: 600px) {
    .hero__actions { flex-wrap: nowrap; gap: .55rem; }
    .hero__actions .btn {
        flex: 1 1 0; min-width: 0;
        padding: .7rem .8rem; font-size: .93rem; line-height: 1.2;
        text-align: center; white-space: normal;
    }
}

@media (max-width: 360px) {
    .hero__actions .btn { font-size: .87rem; padding-inline: .6rem; }
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 48px; padding: .78rem 1.4rem;
    border-radius: 10px; border: 1px solid transparent;
    font-weight: 700; font-size: 1rem; line-height: 1;
    cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--gold {
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    color: #14181f;
    box-shadow: 0 8px 20px rgba(217, 138, 21, .28);
}
.btn--gold:hover { box-shadow: 0 12px 26px rgba(217, 138, 21, .38); }

.btn--ghost { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, .02); }
.btn--ghost:hover { border-color: var(--bronze); color: var(--gold); }

.hero__art {
    position: absolute; z-index: 0;
    left: 50%; bottom: -8%;
    width: min(1320px, 112%);
    transform: translateX(-50%);
    opacity: .24; pointer-events: none;
    -webkit-mask-image: radial-gradient(115% 92% at 50% 100%, #000 42%, rgba(0, 0, 0, .35) 74%, transparent 100%);
    mask-image: radial-gradient(115% 92% at 50% 100%, #000 42%, rgba(0, 0, 0, .35) 74%, transparent 100%);
}

.hero__art img { width: 100%; height: auto; }

.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, rgba(14, 17, 22, .84) 0%, rgba(14, 17, 22, .55) 48%, rgba(14, 17, 22, .3) 100%);
}

@media (max-width: 899px) {
    .hero__art {
        top: -2%; bottom: auto;
        width: 128%; opacity: .18;
        -webkit-mask-image: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, .3) 76%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, .3) 76%, transparent 100%);
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(14, 17, 22, .55) 0%, rgba(14, 17, 22, .35) 45%, rgba(14, 17, 22, .8) 100%);
    }
}

.layout { padding-block: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); }
.content { max-width: var(--measure); margin-inline: auto; }
.content > .section + .section { margin-top: clamp(2.4rem, 1.8rem + 2.2vw, 3.6rem); }

.section { scroll-margin-top: 76px; }
.section p, .section li { color: #d5d3cc; }

.note {
    border-left: 3px solid var(--bronze);
    background: var(--bg-soft);
    padding: .9rem 1.1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-dim) !important;
    font-size: .96rem;
}

.proof { margin: 0 0 1.4rem; padding: 0; list-style: none; display: grid; gap: .7rem; }
.proof li {
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm); padding: .85rem 1rem;
}
.proof strong { color: var(--text); }

.spec { width: 100%; border-collapse: collapse; margin: 0 0 1.4rem; font-size: .96rem; }
.spec caption { text-align: left; color: var(--text-faint); font-size: .84rem; padding-bottom: .5rem; }
.spec th, .spec td { padding: .7rem .8rem; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.spec thead th { color: var(--bronze); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; border-bottom-color: var(--line); }
.spec tbody tr:hover { background: rgba(255, 255, 255, .02); }

@media (max-width: 640px) {
    .spec, .spec tbody, .spec tr, .spec td { display: block; width: 100%; }
    .spec thead { display: none; }

    .spec caption { display: block; width: 100%; padding-bottom: .6rem; text-align: left; }

    .spec tr {
        margin-bottom: .7rem; padding: .35rem .9rem .5rem;
        background: linear-gradient(180deg, var(--surface), var(--bg-soft));
        border: 1px solid var(--line); border-radius: var(--radius-sm);
    }
    .spec tr:hover { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); }

    .spec td {
        display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
        padding: .42rem 0; border-bottom: 1px solid var(--line-soft);
        text-align: right;
    }
    .spec tr td:last-child { border-bottom: 0; }

    .spec td::before {
        content: attr(data-label);
        flex: 0 0 auto; text-align: left;
        font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
        color: var(--bronze);
    }

    .spec tr td:first-child {
        font-weight: 700; font-size: 1.02rem; color: var(--text);
        text-align: left; padding-top: .5rem;
    }
    .spec tr td:first-child::before { display: none; }
}

.cabinet {
    margin: 1.6rem 0 1.4rem;
    scroll-margin-top: 76px;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cabinet__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .55rem .7rem;
    padding: .65rem .7rem;
    background: linear-gradient(180deg, #212c39, #1a232e);
    border-bottom: 1px solid var(--line);
}

.cabinet__game { display: flex; align-items: center; gap: .55rem; min-width: 0; }

.cabinet__mark {
    flex: 0 0 auto; width: 44px; height: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .5));
}

.cabinet__title { display: grid; min-width: 0; line-height: 1.25; }
.cabinet__title strong {
    font-size: .97rem; color: var(--text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cabinet__by { font-size: .74rem; color: var(--text-faint); }

.cabinet__tools { display: inline-flex; align-items: center; gap: .35rem; }

.cabinet__tool {
    width: 40px; height: 40px;
    display: inline-grid; place-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.cabinet__tool:hover { color: var(--gold); border-color: var(--bronze); background: rgba(240, 168, 40, .08); }

.cabinet__cta {
    grid-column: 1 / -1;
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 46px; padding: .5rem 1rem;
    border-radius: 9px;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    border: 1px solid rgba(255, 226, 170, .4);
    color: #17181c; font-weight: 800; font-size: .92rem;
    box-shadow: 0 6px 16px rgba(217, 138, 21, .25);
}
.cabinet__cta:hover { text-decoration: none; filter: brightness(1.05); }
.cabinet__cta span { white-space: nowrap; }

@media (min-width: 760px) {
    .cabinet__bar { grid-template-columns: minmax(0, 1fr) auto auto; padding: .7rem .8rem; }
    .cabinet__cta { grid-column: auto; order: 2; }
    .cabinet__tools { order: 3; }
}

.cabinet__screen {
    position: relative;
    aspect-ratio: var(--cabinet-ratio, 16 / 10);
    background: #0a0e13;
    display: grid; place-items: center;
    isolation: isolate;
}

.cabinet__poster {
    position: absolute; inset: 0; z-index: 0;
    display: block; width: 100%; height: 100%;
}
.cabinet__poster img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    opacity: .82;
}

.cabinet__screen::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(46% 52% at 50% 48%, rgba(6, 9, 13, .72), transparent 72%),
        linear-gradient(180deg, rgba(6, 9, 13, .32), rgba(6, 9, 13, .12) 45%, rgba(6, 9, 13, .55));
    pointer-events: none;
}

.cabinet__screen iframe { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; border: 0; }
.cabinet.is-live .cabinet__screen::after { display: none; }

.cabinet [hidden] { display: none !important; }

.cabinet__play {
    position: relative; z-index: 2;
    display: grid; justify-items: center; gap: .4rem;
    background: none; border: 0; cursor: pointer; color: var(--text);
    padding: 1rem;
}

.cabinet__play-ring {
    width: 74px; height: 74px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    color: #14181f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .55), 0 0 0 9px rgba(240, 168, 40, .16);
    transition: transform .15s ease, box-shadow .2s ease;
}
.cabinet__play:hover .cabinet__play-ring {
    transform: scale(1.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .6), 0 0 0 13px rgba(240, 168, 40, .2);
}

.cabinet__play-label {
    font-weight: 800; font-size: 1.06rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.cabinet__play-hint {
    font-size: .8rem; color: #cfd6de;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .85);
}

.cabinet__gift {
    position: absolute; z-index: 3; right: .6rem; top: .6rem;
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(180deg, #2a3442, #1d2530);
    border: 1px solid rgba(240, 168, 40, .45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
}
.cabinet__gift:hover { text-decoration: none; border-color: var(--gold); }
.cabinet__gift-glow {
    position: absolute; inset: -5px; border-radius: 16px; z-index: -1;
    background: radial-gradient(circle, rgba(242, 103, 58, .5), transparent 70%);
    animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .45; } 50% { opacity: .95; } }
@media (prefers-reduced-motion: reduce) { .cabinet__gift-glow { animation: none; } }

.cabinet__exit { display: none; }

.cabinet__note {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .6rem .7rem;
    padding: .75rem .7rem;
    background: linear-gradient(180deg, var(--bg-soft), #11161d);
    border-top: 1px solid var(--line-soft);
}

.cabinet__bonus {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    min-height: 48px; padding: .6rem 1.1rem;
    border-radius: 9px;
    background: linear-gradient(180deg, #2b3542, #1e2733);
    border: 1px solid var(--bronze);
    color: var(--gold); font-weight: 800; font-size: .95rem;
}
.cabinet__bonus:hover {
    text-decoration: none;
    background: linear-gradient(180deg, #35404f, #232d3a);
    border-color: var(--gold);
}

.cabinet__age { justify-self: end; display: inline-flex; }

.cabinet__warn {
    grid-column: 1 / -1;
    font-size: .78rem; color: var(--text-faint); line-height: 1.5;
}

@media (min-width: 760px) {
    .cabinet__note { grid-template-columns: auto auto minmax(0, 1fr); padding: .8rem; }
    .cabinet__bonus { min-height: 44px; }
    .cabinet__age { justify-self: start; }
    .cabinet__warn { grid-column: auto; }
}

.ic { flex: 0 0 auto; display: block; }
.ic--dollar { width: 23px; height: 23px; }
.ic--gift { width: 24px; height: 24px; }
.ic--age  { width: 30px; height: 30px; filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .45)); }

.cabinet__gift .ic--gift { width: 27px; height: 27px; }

@media (max-width: 719px) {

    .cabinet__screen {
        width: 100%;
        aspect-ratio: var(--cabinet-ratio-m, 3 / 4);
        max-height: 78vh;
    }
}

@media (max-width: 480px) {
    .cabinet__play-ring { width: 66px; height: 66px; }
    .cabinet__play-label { font-size: 1rem; }
    .cabinet__gift { width: 44px; height: 44px; border-radius: 11px; }
    .cabinet__gift .ic--gift { width: 24px; height: 24px; }
.ic--age  { width: 30px; height: 30px; filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .45)); }

    .cabinet__bonus { width: 100%; }
}

.cabinet:fullscreen,
.cabinet.is-full {
    margin: 0; border-radius: 0; border: 0;
    display: flex; flex-direction: column;
    background: #05080c;
}
.cabinet.is-full { position: fixed; inset: 0; z-index: 90; }

.cabinet:fullscreen .cabinet__screen,
.cabinet.is-full .cabinet__screen { flex: 1; aspect-ratio: auto; }

.cabinet:fullscreen .cabinet__gift,
.cabinet.is-full .cabinet__gift { top: 4rem; }

.cabinet:fullscreen .cabinet__warn,
.cabinet.is-full .cabinet__warn { display: none; }

.cabinet:fullscreen .cabinet__note,
.cabinet.is-full .cabinet__note { grid-template-columns: 1fr auto; }

.cabinet:fullscreen .cabinet__exit,
.cabinet.is-full .cabinet__exit {
    position: absolute; z-index: 5; top: .6rem; right: .6rem;
    display: grid; place-items: center; width: 44px; height: 44px;
    border-radius: 11px; cursor: pointer;
    background: rgba(10, 14, 19, .8); border: 1px solid var(--line); color: var(--text);
}
body.is-locked { overflow: hidden; }

.cta {
    display: grid; gap: .8rem 1.1rem; align-items: center;
    grid-template-columns: 96px minmax(0, 1fr);
    margin: 1.8rem 0;
    padding: 1.3rem;
    background:
        radial-gradient(560px 200px at 88% -30%, rgba(226, 98, 42, .3), transparent 66%),
        linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}
@media (min-width: 720px) {
    .cta { grid-template-columns: 150px minmax(0, 1fr); gap: 1rem 1.6rem; padding: 1.5rem 1.6rem; }
}

.cta__art {
    grid-row: 1 / span 2; align-self: center;
    width: 100%; height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .55));
}

.cta__body   { grid-column: 2; }
.cta__action { grid-column: 2; display: grid; justify-items: center; }
.cta__action .btn { width: 100%; max-width: 22rem; }

@media (max-width: 719px) {
    .cta { grid-template-columns: 58px minmax(0, 1fr); gap: .7rem .8rem; }
    .cta__body { display: contents; }

    .cta__art {
        grid-row: 1; grid-column: 1;
        align-self: center; justify-self: center;
        width: 100%; max-width: 58px;
    }
    .cta__title {
        grid-row: 1; grid-column: 2;
        align-self: center;
        margin: 0; font-size: 1.1rem; line-height: 1.25;
    }
    .cta__text   { grid-row: 2; grid-column: 1 / -1; margin: 0; }
    .cta__action { grid-row: 3; grid-column: 1 / -1; }

    .cta__action .btn { max-width: none; }
}

.cta__title { font-size: 1.2rem; margin-bottom: .35em; }
.cta__text  { margin: 0; color: var(--text-dim) !important; font-size: .96rem; }
.cta__meta {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .76rem; color: var(--text-faint);
}

.faq { display: grid; gap: .6rem; }

.faq__item {
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm); overflow: hidden;
}
.faq__item[open] { border-color: var(--line); }

.faq__q {
    cursor: pointer; list-style: none;
    padding: .95rem 2.6rem .95rem 1rem; position: relative;
    font-weight: 650; font-size: 1.02rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: ""; position: absolute; right: 1.1rem; top: 50%;
    width: 9px; height: 9px; margin-top: -6px;
    border-right: 2px solid var(--bronze); border-bottom: 2px solid var(--bronze);
    transform: rotate(45deg); transition: transform .18s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__a { padding: 0 1rem .3rem; }

.rg-band {
    display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.1rem;
    margin: 0 0 2.4rem;
    padding: .95rem 1.2rem;
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-left: 3px solid var(--ember);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.rg-band__age { display: inline-flex; }
.rg-band__text { margin: 0; flex: 1 1 24rem; font-size: .88rem; color: var(--text-dim); }
.rg-band__links { display: flex; flex-wrap: wrap; gap: .55rem; font-size: .84rem; }
.rg-band__links a {
    padding: .35rem .7rem; border-radius: 8px;
    border: 1px solid var(--line); color: var(--text-dim);
}
.rg-band__links a:hover { color: var(--gold); border-color: var(--bronze); text-decoration: none; }

.site-foot { background: #0b0e13; border-top: 1px solid var(--line-soft); padding-block: 2.2rem 1.4rem; }
.site-foot__grid { display: grid; gap: 1.8rem; }
@media (min-width: 760px) { .site-foot__grid { grid-template-columns: 2fr 1fr 1fr; gap: 2.4rem; } }

.site-foot__col { display: grid; gap: .45rem; align-content: start; }
.site-foot__col a { color: var(--text-dim); font-size: .92rem; }
.site-foot__col a:hover { color: var(--gold); }
.site-foot__title { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--bronze); margin: 0 0 .3rem; }
.site-foot__about { margin: .5rem 0 0; color: var(--text-faint); font-size: .9rem; max-width: 46ch; }
.brand--foot .brand__text { font-size: 1rem; }

.site-foot__bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.site-foot__bottom p { color: var(--text-faint); font-size: .82rem; margin-bottom: .7rem; }
.site-foot__copy { color: var(--text-faint); }

.crumbs { font-size: .86rem; color: var(--text-faint); margin-bottom: 1.4rem; }
.crumbs a { color: var(--text-dim); }
.crumbs span[aria-hidden] { padding-inline: .35rem; }

.content h1 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem); margin-bottom: .7em; }
.content ul, .content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.content li { margin-bottom: .45em; }

.contact-mail {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 1rem 1.1rem;
    font-size: 1.08rem; font-weight: 650;
}

.shot { margin: 1.5rem 0; }

.shot img {
    width: 100%; height: auto;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: #0b0f14;
}

.shot figcaption {
    margin-top: .55rem;
    font-size: .85rem; color: var(--text-faint); line-height: 1.5;
}

.shot--tall img { background: #000; }

.shot-pair { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 700px) { .shot-pair { grid-template-columns: 1fr 1fr; } }
.shot-pair .shot { margin: 0; }

.clip { margin: 1.6rem 0; }

.clip__frame {
    position: relative;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    overflow: hidden; background: #0b0f14;
}

.clip video { display: block; width: 100%; height: auto; }

.clip__poster {
    position: absolute; inset: 0; z-index: 1;
    width: 100%; height: 100%; object-fit: cover;
}
.clip__frame.is-playing .clip__poster { display: none; }

.clip__play {
    position: absolute; inset: 0; z-index: 2;
    display: grid; place-items: center;
    border: 0; cursor: pointer;
    background: rgba(11, 15, 20, .32);
    color: #14181f;
}
.clip__play span {
    width: 70px; height: 70px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}
.clip__frame.is-playing .clip__play { display: none; }

.clip figcaption { margin-top: .55rem; font-size: .85rem; color: var(--text-faint); line-height: 1.5; }

.log { border-left: 2px solid var(--line); margin: 1.5rem 0; padding-left: 1.1rem; display: grid; gap: 1rem; }

.log__row { position: relative; }
.log__row::before {
    content: ""; position: absolute; left: -1.45rem; top: .45rem;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--bronze);
}
.log__row--hit::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(240, 168, 40, .18); }

.log__spin { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--bronze); font-weight: 700; }
.log__text { margin: .15rem 0 0; }

.result {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: .1rem;
    margin: 1.5rem 0; padding: 1.1rem;
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line); border-radius: var(--radius);
}
@media (min-width: 620px) { .result { grid-template-columns: repeat(4, 1fr); } }

.result div { padding: .55rem .4rem; }
.result dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-faint); }
.result dd { margin: .2rem 0 0; font-size: 1.15rem; font-weight: 700; color: var(--text); }

.to-top {
    position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
    width: 48px; height: 48px; display: grid; place-items: center;
    border-radius: 14px; cursor: pointer;
    color: #14181f;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    border: 1px solid rgba(255, 226, 170, .35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .45), 0 0 0 6px rgba(240, 168, 40, .1);
    opacity: 0; visibility: hidden; transform: translateY(10px) scale(.94);
    transition: opacity .18s ease, transform .18s ease, visibility .18s, box-shadow .2s ease;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, .5), 0 0 0 9px rgba(240, 168, 40, .16); }
.to-top:active { transform: translateY(1px); }

@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity .18s ease; } }

@keyframes gift-nudge {
    0%, 74%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    78%  { transform: translateY(-5px) rotate(-8deg) scale(1.06); }
    83%  { transform: translateY(0)    rotate(7deg)  scale(1.03); }
    88%  { transform: translateY(-3px) rotate(-4deg) scale(1.04); }
    93%  { transform: translateY(0)    rotate(2deg)  scale(1); }
}

.cabinet__gift .ic--gift {
    animation: gift-nudge 5.5s ease-in-out infinite;
    transform-origin: 50% 70%;
}
.cabinet__gift:hover .ic--gift { animation-play-state: paused; transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
    .cabinet__gift .ic--gift { animation: none; }
}

.verdict {
    margin: 1.6rem 0;
    padding: 1.3rem;
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.verdict__score { display: grid; gap: .7rem; }

.verdict__rating { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem .9rem; }

.verdict__value {
    font-size: 1.5rem; font-weight: 800; color: var(--text);
    letter-spacing: -.01em;
}

.verdict__stars { display: inline-flex; gap: .15rem; }

.verdict__star { width: 22px; height: 22px; fill: var(--line); }
.verdict__star.is-on { fill: var(--gold); }

.verdict__body { margin: 0; color: #d5d3cc !important; }

.verdict__cols { display: grid; gap: 1rem; margin-top: 1.2rem; }
@media (min-width: 700px) { .verdict__cols { grid-template-columns: 1fr 1fr; gap: 1.4rem; } }

.verdict__col h3 {
    margin: 0 0 .6rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
}
.verdict__col--pro h3 { color: var(--green); }
.verdict__col--con h3 { color: var(--ember); }

.verdict__col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }

.verdict__col li { position: relative; padding-left: 1.5rem; font-size: .95rem; }
.verdict__col li::before {
    position: absolute; left: 0; top: -.05em; font-weight: 700;
}
.verdict__col--pro li::before { content: "+"; color: var(--green); font-size: 1.15rem; }
.verdict__col--con li::before { content: "\2212"; color: var(--ember); font-size: 1.15rem; }
