/* onlineslot.red — demo lobby. Garnet & gold palette, dark by default, light theme via [data-theme="light"]. */
:root {
    color-scheme: dark;
    --ink: #0B0910;
    --panel: #16111C;
    --panel-2: #1D1520;
    --field: #130F17;
    --line: rgba(217, 164, 65, 0.16);
    --line-2: rgba(243, 236, 226, 0.10);
    --garnet: #A81030;
    --ember: #DA1F45;
    --gold: #D9A441;
    --gold-soft: #B98A3A;
    --cream: #F3ECE2;
    --on-accent: #F3ECE2;
    --muted: #99899A;
    --success: #5FD98A;
    --header-bg: rgba(11, 9, 16, 0.7);
    --shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6);
    --font-display: 'Tenor Sans', 'Didot', Georgia, serif;
    --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

:root[data-theme="light"] {
    color-scheme: light;
    --ink: #F7F1E8;
    --panel: #FFFFFF;
    --panel-2: #FBF5EC;
    --field: #FFFFFF;
    --line: rgba(168, 16, 48, 0.20);
    --line-2: rgba(36, 20, 20, 0.12);
    --gold: #B07A2A;
    --gold-soft: #9A6C28;
    --cream: #241A1D;
    --muted: #7C6B6E;
    --success: #2FA85F;
    --header-bg: rgba(247, 241, 232, 0.8);
    --shadow: 0 20px 40px -18px rgba(36, 20, 20, 0.25);
}

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

html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background-color .25s ease, color .25s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(52% 38% at 88% -4%, rgba(168, 16, 48, 0.24), transparent 62%),
        radial-gradient(40% 30% at 2% 22%, rgba(217, 164, 65, 0.09), transparent 65%);
}

:root[data-theme="light"] body::before {
    background:
        radial-gradient(52% 38% at 88% -4%, rgba(168, 16, 48, 0.10), transparent 62%),
        radial-gradient(40% 30% at 2% 22%, rgba(217, 164, 65, 0.10), transparent 65%);
}

main, header, footer { position: relative; z-index: 1; }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 30px; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button, a, select, input { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
[hidden] { display: none !important; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; letter-spacing: 0.01em; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: fixed; top: 12px; left: 12px; z-index: 100;
    padding: 10px 14px; border-radius: 8px;
    background: var(--gold); color: #0B0910; font-weight: 700;
    transform: translateY(-160%); transition: transform .18s ease;
}
.skip-link:focus { transform: none; }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    border-bottom: 1px solid var(--line-2);
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    max-width: 1220px; margin: 0 auto; padding: 20px 30px;
}

.brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-size: 1.02rem;
    letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap;
}
.brand .word { display: inline-flex; }
.brand b { font-weight: 400; }
.brand .word > span, .accent-text { color: var(--ember); }
.brand .mark {
    position: relative; flex-shrink: 0;
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--gold);
}
.brand .mark::before, .brand .mark::after { content: ""; position: absolute; background: var(--gold); }
.brand .mark::before { top: 50%; left: 15%; right: 15%; height: 1px; transform: translateY(-50%); }
.brand .mark::after { left: 50%; top: 15%; bottom: 15%; width: 1px; transform: translateX(-50%); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-right .link { font-size: 0.86rem; color: var(--muted); transition: color .18s ease; }
.nav-right .link:hover { color: var(--gold); }

.env-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 999px;
    font-size: 0.82rem; color: var(--muted);
}
.env-badge i, .mini-pick .dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
    background: var(--success); box-shadow: 0 0 8px var(--success);
}

.theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line-2); background: transparent; color: var(--muted);
    cursor: pointer; transition: border-color .18s ease, color .18s ease;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle .sun { display: none; }
:root[data-theme="light"] .theme-toggle .moon { display: none; }
:root[data-theme="light"] .theme-toggle .sun { display: block; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: 8px; border: 1px solid transparent;
    font-weight: 700; font-size: 0.92rem; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
}
.btn-ghost { color: var(--cream); border-color: var(--line-2); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-solid {
    background: linear-gradient(155deg, var(--ember), var(--garnet)); color: var(--on-accent);
    box-shadow: 0 10px 26px -12px rgba(218, 31, 69, 0.6);
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(218, 31, 69, 0.75); }
.btn:disabled { opacity: .6; cursor: progress; transform: none; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; }

.kicker, .eyebrow {
    display: block; font-family: var(--font-display);
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-size: 0.8rem;
}
.kicker { margin-bottom: 20px; }

.hero h1 { font-size: clamp(2.5rem, 4.6vw, 3.9rem); line-height: 1.06; }
.hero h1 em { font-style: normal; color: var(--gold); }
.lede { margin: 22px 0 0; max-width: 50ch; font-size: 1.08rem; line-height: 1.68; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin: 26px 0 0; font-size: 0.88rem; color: var(--muted); }
.hero-note b { color: var(--cream); font-weight: 700; }

.mini-pick {
    display: none; align-items: center; gap: 10px; width: fit-content; margin-top: 20px;
    padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel);
    font-size: 0.84rem; color: var(--muted); cursor: pointer; text-align: left;
}
.mini-pick b { color: var(--cream); font-weight: 700; }
.mini-pick .gold { color: var(--gold); }

.preview { position: relative; }
.glow {
    position: absolute; top: 0; right: 6%; z-index: -1;
    width: 260px; height: 260px; border-radius: 50%;
    background: var(--ember); filter: blur(64px); opacity: 0.5;
}
:root[data-theme="light"] .glow { opacity: 0.22; }
.preview-card {
    position: relative; width: min(340px, 92%); margin: 26px 0 0 auto;
    border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
    background: linear-gradient(165deg, #2A1220, #170F1A);
    box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
    color: #F3ECE2;
}
.preview-top { padding: 20px 22px 0; font-size: 0.8rem; color: #99899A; }
.preview-art {
    position: relative; display: grid; place-items: center; overflow: hidden;
    margin: 16px 22px 0; aspect-ratio: 4 / 3; border-radius: 12px; border: 1px solid var(--line);
    background:
        radial-gradient(60% 60% at 30% 20%, rgba(217, 164, 65, 0.35), transparent 60%),
        linear-gradient(160deg, #3A1220, #1D1220);
}
.preview-art svg { width: 72px; height: 72px; }
.preview-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.preview-body { padding: 16px 22px 22px; }
.preview-body h3 { font-size: 1.2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.preview-body p { margin: 4px 0 0; font-size: 0.85rem; color: #99899A; }
.float-tag {
    position: absolute; top: -14px; right: 18px; z-index: 2;
    padding: 7px 13px; border-radius: 999px;
    background: var(--panel); border: 1px solid var(--gold); color: var(--gold);
    font-size: 0.76rem; font-weight: 700; box-shadow: 0 8px 20px -8px rgba(217, 164, 65, 0.4);
}

/* ---------- library head & toolbar ---------- */
.library { padding: 44px 0 64px; border-top: 1px solid var(--line-2); }
.section-head {
    display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
    gap: 24px; margin-bottom: 30px;
}
.section-head h2 { margin-top: 8px; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.count { font-size: 0.9rem; color: var(--muted); }
.count b { color: var(--cream); }

.toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.dd-row { display: flex; flex-wrap: wrap; gap: 10px; flex: 1 1 auto; }

.search {
    flex: 1 1 260px; display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border: 1px solid var(--line-2); border-radius: 9px;
    background: var(--field); color: var(--muted); transition: border-color .18s ease;
}
.search:focus-within { border-color: var(--gold); }
.search svg { flex-shrink: 0; }
.search input {
    width: 100%; border: none; outline: none; background: none;
    color: var(--cream); font-size: 0.92rem;
}
.search input::placeholder { color: var(--muted); }
.search input::-webkit-search-cancel-button { filter: grayscale(1); opacity: .6; }

.dd { position: relative; }
/* Native <select> stays in the DOM as the source of truth; JS builds the custom toggle + menu over it. */
.dd.enhanced .dd-native {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; pointer-events: none;
}
.dd-native {
    min-width: 158px; padding: 12px 16px; border: 1px solid var(--line-2); border-radius: 9px;
    background: var(--field); color: var(--cream);
}
.dd-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; min-width: 158px; padding: 12px 16px;
    border: 1px solid var(--line-2); border-radius: 9px; background: var(--field);
    color: var(--cream); font-size: 0.88rem; cursor: pointer; text-align: left;
    transition: border-color .18s ease, background-color .18s ease;
}
.dd-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd-toggle svg { flex-shrink: 0; color: var(--muted); transition: transform .18s ease, color .18s ease; }
.dd-toggle:hover { border-color: rgba(217, 164, 65, 0.4); }
.dd.open .dd-toggle { border-color: var(--gold); background-color: var(--panel-2); }
.dd.open .dd-toggle svg { transform: rotate(180deg); color: var(--gold); }

.dd-menu {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 30;
    min-width: max(100%, 190px); max-height: 320px; overflow-y: auto;
    margin: 0; padding: 6px; list-style: none;
    background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-6px); pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}
.dd.open .dd-menu { opacity: 1; transform: none; pointer-events: auto; }
.dd-menu li {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 7px;
    font-size: 0.88rem; white-space: nowrap; cursor: pointer;
}
.dd-menu li::before { content: ""; width: 14px; flex-shrink: 0; color: var(--gold); font-size: 0.78rem; }
.dd-menu li.active { color: var(--gold); }
.dd-menu li.active::before { content: "✓"; }
.dd-menu li:hover, .dd-menu li.focused { background: rgba(217, 164, 65, 0.10); }

.subrow {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
    margin-bottom: 38px; border-bottom: 1px solid var(--line-2);
}
.tabs { display: flex; gap: 28px; }
.tab {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 0; border: none; background: none;
    font-size: 0.92rem; color: var(--muted); cursor: pointer; transition: color .18s ease;
}
.tab:hover { color: var(--cream); }
.tab.active { color: var(--cream); }
.tab.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); }
.shelf-count {
    min-width: 20px; padding: 1px 6px; border-radius: 999px;
    background: rgba(217, 164, 65, 0.14); color: var(--gold);
    font-size: 0.72rem; font-weight: 700; text-align: center;
}
.surprise {
    padding: 9px 16px; margin-bottom: 8px; border: 1px solid var(--line); border-radius: 999px;
    background: transparent; color: var(--gold); font-size: 0.86rem; cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease;
}
.surprise:hover { border-color: var(--gold); background: rgba(217, 164, 65, 0.08); }
.surprise:disabled { opacity: .6; cursor: progress; }

/* ---------- game grid ---------- */
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

.game-card {
    display: flex; flex-direction: column; overflow: hidden;
    border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel);
    transition: transform .2s ease, border-color .2s ease;
    animation: card-in .35s ease both;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--gold); }
:root[data-theme="light"] .game-card { box-shadow: 0 1px 2px rgba(36, 20, 20, 0.05); }

@keyframes card-in { from { opacity: 0; transform: translateY(6px); } }

.game-thumbnail {
    position: relative; aspect-ratio: 4 / 3; overflow: hidden;
    background: linear-gradient(160deg, #2A1420, #170F1A);
}
.game-cover {
    display: block; width: 100%; height: 100%; object-fit: cover;
    filter: saturate(115%) contrast(105%) brightness(0.95);
    transition: transform .4s ease;
}
.game-card:hover .game-cover { transform: scale(1.04); }
.cover-broken .game-cover { visibility: hidden; }
/* garnet tint over any provider artwork so the grid reads as one palette */
.game-thumbnail::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(160deg, rgba(168, 16, 48, 0.28), rgba(11, 9, 16, 0.45) 75%);
    mix-blend-mode: multiply;
}
/* bottom fade so the overlay label reads on any art */
.game-thumbnail::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(0deg, rgba(11, 9, 16, 0.75) 0%, transparent 55%);
}
.thumbnail-label {
    position: absolute; left: 12px; bottom: 10px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #F3ECE2;
}
.thumbnail-label::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #5FD98A; box-shadow: 0 0 6px #5FD98A;
}
.favorite-button {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(243, 236, 226, 0.18); background: rgba(11, 9, 16, 0.55);
    color: #D6CBD0; font-size: 0.85rem; cursor: pointer;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.favorite-button:hover { color: #D9A441; border-color: #D9A441; }
.favorite-button.active { color: #D9A441; border-color: #D9A441; }
.favorite-button:active { transform: scale(.92); }

.game-info { display: flex; flex-direction: column; flex: 1; padding: 14px 16px 16px; }
.game-meta {
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
    margin-bottom: 8px; font-size: 0.72rem; color: var(--muted);
}
.game-provider { display: inline-flex; align-items: center; gap: 6px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-provider::before { content: ""; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.game-name {
    margin-bottom: 8px; font-size: 1rem; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.game-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
    padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px;
    font-size: 0.68rem; color: var(--gold-soft); text-transform: lowercase;
}
.tag-muted { border-color: var(--line-2); color: var(--muted); }

.play-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; margin-top: auto; padding: 10px;
    border: 1px solid var(--line); border-radius: 8px; background: transparent;
    color: var(--cream); font-size: 0.86rem; font-weight: 600; cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.play-btn svg { width: 14px; height: 14px; }
.play-btn:hover, .play-btn:focus-visible {
    background: linear-gradient(155deg, var(--ember), var(--garnet)); border-color: transparent; color: var(--on-accent);
}
.play-btn:disabled { opacity: .7; cursor: progress; }

.more { display: flex; justify-content: center; margin-top: 32px; }

/* ---------- states ---------- */
.state-card {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    padding: 28px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel);
}
.state-card > div { flex: 1 1 220px; }
.state-card strong { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; }
.state-card p { margin: 4px 0 0; font-size: 0.9rem; color: var(--muted); }
.state-icon {
    display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--line); color: var(--gold); font-size: 1.1rem; font-weight: 700;
}
.error-state .state-icon { color: var(--ember); border-color: rgba(218, 31, 69, 0.4); }
.spinner {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--line-2); border-top-color: var(--gold);
    animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- footer ---------- */
.site-footer { padding: 56px 0 40px; border-top: 1px solid var(--line-2); }
.foot-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; margin-bottom: 44px; }
.foot-brand p { max-width: 32ch; margin: 14px 0 0; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }
.foot-col h5 { margin: 0 0 16px; font-size: 0.85rem; font-weight: 700; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; list-style: none; }
.foot-col a { font-size: 0.88rem; color: var(--muted); transition: color .18s ease; }
.foot-col a:hover { color: var(--gold); }
.providers-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.providers-row a { padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 9px; font-size: 0.76rem; }
.providers-row a:hover { border-color: var(--gold); }
.foot-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    padding-top: 24px; border-top: 1px solid var(--line-2); font-size: 0.82rem; color: var(--muted);
}

/* ---------- toast ---------- */
.toast {
    position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 80;
    max-width: calc(100% - 32px); padding: 12px 18px; transform: translateX(-50%);
    border: 1px solid rgba(218, 31, 69, 0.45); border-radius: 10px;
    background: var(--panel-2); color: var(--cream); font-size: 0.9rem; box-shadow: var(--shadow);
    animation: toast-in .2s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
    .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .preview-card { margin: 26px auto 0; }
    .glow { right: 30%; }
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .toolbar { flex-direction: column; }
    .search { flex: 0 0 auto; }
    .nav-right .link { display: none; }
}
@media (max-width: 560px) {
    .wrap, .nav { padding-left: 16px; padding-right: 16px; }
    .nav { padding-top: 14px; padding-bottom: 14px; }
    .nav-right { gap: 10px; }
    .brand { gap: 8px; font-size: 0.82rem; letter-spacing: 0.1em; }
    .brand .mark { width: 24px; height: 24px; }
    .env-badge { padding: 7px; }
    .env-badge span { display: none; }
    .hero { padding: 48px 0 36px; }
    .hero h1 { line-height: 1.12; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .preview { display: none; }
    .mini-pick:not([hidden]) { display: flex; }
    #heroPickPlay { display: none; }
    .library { padding-top: 32px; }
    .section-head { margin-bottom: 22px; }
    .grid { gap: 12px; }
    .game-info { padding: 12px; }
    .game-tags .tag-muted { display: none; }
    .subrow { flex-direction: column; align-items: stretch; gap: 14px; }
    .tabs { flex-wrap: wrap; gap: 20px; }
    .surprise { width: 100%; }
    .dd { flex: 1 1 130px; }
    .dd-toggle, .dd-native { min-width: 0; padding: 11px 14px; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 360px) {
    .grid { grid-template-columns: 1fr; }
}

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