.slots {
    --slot-gap: 18px;
    --slot-radius: 18px;
    min-width: 0;
}

.content-area:has(.slots) { min-width: 0; }

.slots .gx-head { margin-bottom: 20px; }

.slots-controls { margin-bottom: 24px; }

.slots-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.slots-search {
    position: relative;
    flex: 1 1 220px;
    min-width: 0;
}
.slots-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gx-muted);
    pointer-events: none;
    line-height: 0;
}

.slots-search input {
    width: 100%;
    height: 46px;
    padding: 0 40px 0 42px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.slots-search input::placeholder { color: var(--text-faint); }
.slots-search input:focus {
    background: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}
.slots-search__clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-2);
    cursor: pointer;
    line-height: 1;
    display: none;
    place-items: center;
}
.slots-search__clear.show { display: grid; }
.slots-search__clear:hover { background: var(--border-strong); }

.slots-select {
    height: 46px;
    padding: 0 16px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.slots-select:hover { border-color: var(--border-strong); }
.slots-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.slots-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;

    margin: 18px -24px -6px;
    padding: 18px 24px 6px;
    border-top: 1px solid var(--border-soft);
    scrollbar-width: none;
}
.slots-cats::-webkit-scrollbar { width: 0; height: 0; display: none; }

.slots-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: var(--surface-2);
    color: var(--text-2);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.slots-cat:hover {
    background: var(--surface-accent);
    border-color: rgba(37, 99, 235, .18);
    color: var(--accent);
}
.slots-cat.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, .24);
}
.slots-cat__count {
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}
.slots-cat:hover .slots-cat__count { background: var(--surface); color: var(--accent); }
.slots-cat.active .slots-cat__count { background: rgba(255, 255, 255, .2); color: #fff; }

.slots-section {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin: 26px 0 14px;
    min-width: 0;
}
.slots-section:first-of-type { margin-top: 0; }
.slots-section h2 { margin: 0; font-size: 17px; font-weight: 800; color: var(--gx-ink); }
.slots-section p { margin: 3px 0 0; font-size: 13px; color: var(--gx-muted); }
.slots-section__count { font-size: 13px; color: var(--gx-muted); font-variant-numeric: tabular-nums; }

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
    gap: var(--slot-gap);
    min-width: 0;
}

.slot {
    position: relative;

    min-width: 0;
    border-radius: var(--slot-radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--gx-bg);
    border: 1px solid var(--gx-line);
    box-shadow: 0 3px 10px rgba(15, 23, 42, .04);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s, border-color .3s;
}
.slot:hover {
    transform: translateY(-5px);
    box-shadow: var(--gx-shadow-lg);
    border-color: rgba(37, 99, 235, .2);
}

.slot__art {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.slot__art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.slot:hover .slot__art img { transform: scale(1.07); }

.slot__art--stub {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--stub-a, #2563eb), var(--stub-b, #38bdf8));
}
.slot__stub-text {
    font-size: 30px;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.slot__badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
}
.slot__badge {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}
.slot__badge--new { background: rgba(14, 164, 114, .92); }
.slot__badge--hot { background: rgba(226, 59, 82, .92); }
.slot__badge--jackpot { background: rgba(245, 158, 11, .95); }
.slot__badge--fs { background: rgba(37, 99, 235, .92); }

.slot__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 8px;
    align-content: center;
    background: linear-gradient(to top, rgba(11, 26, 51, .88), rgba(11, 26, 51, .35));
    opacity: 0;
    transition: opacity .25s ease;
}
.slot:hover .slot__overlay { opacity: 1; }

.slot__play {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--gx-blue-d);
    display: grid;
    place-items: center;
    font-size: 17px;
    padding-left: 3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    transform: scale(.85);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.slot:hover .slot__play { transform: scale(1); }

.slot__demo {
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.slot__demo:hover { background: rgba(255, 255, 255, .16); }

.slot__info { padding: 10px 12px 12px; }
.slot__name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gx-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slot__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 3px;
    font-size: 11.5px;
    color: var(--gx-muted);
}
.slot__provider { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.slot__rtp { font-variant-numeric: tabular-nums; white-space: nowrap; flex-shrink: 0; }

.slot--skeleton { pointer-events: none; border-color: var(--gx-line-2); }
.slot--skeleton .slot__art {
    background: var(--gx-bg-2);
}
.slot--skeleton .slot__line {
    height: 10px;
    border-radius: 5px;
    background: var(--gx-bg-3);
    margin-top: 8px;
}
.slot--skeleton .slot__line--short { width: 55%; }

.slot--skeleton .slot__art,
.slot--skeleton .slot__line {
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: slot-shimmer 1.3s infinite;
}
@keyframes slot-shimmer {
    from { background-position: -120% 0; }
    to   { background-position: 220% 0; }
}

.slots-empty {
    display: none;
    text-align: center;
    padding: 56px 20px;
    border: 1px dashed var(--gx-line);
    border-radius: var(--gx-r);
    background: var(--gx-bg-2);
}
.slots-empty.show { display: block; }
.slots-empty__icon { font-size: 38px; line-height: 1; }
.slots-empty h3 { margin: 12px 0 4px; font-size: 16px; color: var(--gx-ink); }
.slots-empty p { margin: 0 0 16px; font-size: 13.5px; color: var(--gx-muted); }

.slots-more {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.slots-more__btn {
    padding: 12px 28px;
    border-radius: 12px;
    border: 1px solid var(--gx-line);
    background: var(--gx-bg);
    color: var(--gx-ink);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s cubic-bezier(.4, 0, .2, 1);
}
.slots-more__btn:hover {
    border-color: var(--gx-blue-l);
    color: var(--gx-blue);
    box-shadow: 0 6px 18px rgba(37, 99, 235, .1);
}
.slots-more__btn[hidden] { display: none; }

@media (hover: none) {

    .slot__overlay { opacity: 1; background: linear-gradient(to top, rgba(11, 26, 51, .8), transparent 55%); }
    .slot__play { transform: scale(1); }
}

@media (max-width: 640px) {
    .slots {
        --slot-gap: 12px;
        --slot-radius: 14px;
    }
    .slots-grid { grid-template-columns: repeat(auto-fill, minmax(min(132px, 100%), 1fr)); }
    .slots .gx-id__txt h1 { font-size: 19px; }

    .slots-controls { padding: 16px; }
    .slots-cats { margin: 14px -16px -4px; padding: 14px 16px 4px; }

    .slot__info { padding: 8px 10px 10px; }
    .slot__name { font-size: 12.5px; }
}

.fs-side-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    border: none;
    border-radius: 16px;
    background: var(--accent);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fs-side-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .22);
    transform: translateY(-1px);
}

.fs-side-btn + .btn-show-all { margin-top: 12px; }

.fs-modal { max-width: 620px; }

.fs-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 8px 20px rgba(124, 58, 237, .28);
}

.fs-modal__body {
    max-height: min(58vh, 520px);
    overflow-y: auto;
    padding: 16px;
    border-radius: 16px;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, .14) 0%, transparent 55%),
        linear-gradient(135deg, #4f46e5 0%, #7c3aed 52%, #a855f7 100%);
    color: #fff;
    scrollbar-width: thin;
}

.fs-modal__body::-webkit-scrollbar { width: 6px; }
.fs-modal__body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .28);
    border-radius: 3px;
}
.fs-modal__body::-webkit-scrollbar-track { background: transparent; }

.fs-modal__note {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dim);
    text-align: center;
}

.fs-modal__note[hidden] { display: none; }

.fs-modal__body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
    align-content: start;
}

.fs-modal__body > .fs-batches,
.fs-modal__body > .fs-active { grid-column: 1 / -1; }

.fs-slot {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 11px 13px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    color: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.fs-slot:hover {
    background: rgba(255, 255, 255, .2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
    transform: translateY(-1px);
}

.fs-slot:active { transform: translateY(0); }

.fs-slot__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 2.6em;
}

.fs-slot__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.fs-slot__mark {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
}

.fs-slot:hover .fs-slot__mark { color: #fff; }

.fs-slot__bet {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .62);
    white-space: nowrap;
}

.fs-active {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    color: #fff;
}

.fs-active__row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fs-active__left {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.fs-active__of {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.fs-active__bar {
    height: 5px;
    margin: 9px 0 7px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .25);
    overflow: hidden;
}

.fs-active__bar i {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: #fff;
    transition: width .3s ease;
}

.fs-active__meta {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .68);
}

.fs-active__actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.fs-btn {
    flex: 1;
    padding: 8px 10px;
    border: none;
    border-radius: 9px;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease;
}

.fs-btn:hover { background: rgba(255, 255, 255, .26); }

.fs-btn--go { background: #fff; color: #10141f; box-shadow: none; }
.fs-btn--go:hover { background: rgba(255, 255, 255, .88); }

.fs-batches {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 9px 11px;
    border-radius: 11px;
    background: rgba(0, 0, 0, .18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.fs-batches__head {
    margin-bottom: 3px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.fs-batch {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.fs-batch--next { color: #fff; }

.fs-batch__name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fs-batch__only {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .58);
    white-space: nowrap;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fs-batch__only--go {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.fs-batch__only--go:hover { color: rgba(255, 209, 102, .95); }

.fs-batch__spins {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.fs-batch__wager {
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
    color: rgba(255, 209, 102, .95);
}

.slots-controls {
    position: sticky;
    top: 12px;
    z-index: 5;
}

@media (max-width: 480px) {

    .fs-modal__body {
        max-height: 62vh;
        padding: 12px;

        grid-template-columns: 1fr;
        gap: 6px;
    }

    .fs-slot { padding: 10px 12px; gap: 5px; }

    .fs-slot__name { -webkit-line-clamp: 1; min-height: 0; }
    .fs-active__left { font-size: 22px; }

    .slots-controls { position: static; }
}

.fs-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
    margin-bottom: 6px;
}

.fs-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: border-color .18s ease, transform .18s ease;
}

.fs-card:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .18); }

.fs-card.is-next { border-color: var(--accent, #2563eb); }

.fs-card__art {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, .25);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.fs-card__art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fs-card__noart {
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, .6);
}

.fs-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--accent, #2563eb);
    color: #fff;
}

.fs-card__pick {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: repeating-linear-gradient(
        45deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 10px,
        transparent 10px, transparent 20px);
    color: rgba(255, 255, 255, .75);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .15s ease, background-color .15s ease;
}

.fs-card__pick:hover { color: #fff; background-color: rgba(255, 255, 255, .05); }
.fs-card__pick-ico svg { width: 26px; height: 26px; }

.fs-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px 14px;
    flex: 1;
}

.fs-card__name {
    margin: 0;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs-card__sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
}

.fs-card__rows { margin: 2px 0 0; display: grid; gap: 4px; }

.fs-card__rows > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.fs-card__rows dt { font-size: 12px; color: rgba(255, 255, 255, .45); }

.fs-card__rows dd {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.fs-card__foot { margin-top: auto; padding-top: 8px; }

.fs-card__state {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
}

.fs-card__state.is-win { background: rgba(16, 185, 129, .14); color: #34d399; }
.fs-card__state.is-run { background: rgba(245, 158, 11, .14); color: #fbbf24; }
.fs-card__state.is-bad { background: rgba(239, 68, 68, .14); color: #f87171; }

.fs-card__go {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    border-radius: 10px;
    background: var(--accent, #2563eb);
    color: #fff;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transition: filter .15s ease;
}

.fs-card__go:hover { filter: brightness(1.1); }

@media (prefers-reduced-motion: reduce) {
    .fs-card:hover { transform: none; }
}

@media (max-width: 520px) {
    .fs-cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .fs-card__body { padding: 10px 11px 12px; }
}

.fs-pick-modal { max-width: 780px; }

.fs-pick__search { margin: 0 0 14px; position: relative; }

.fs-pick__search input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-3);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color .15s ease, background-color .15s ease;
}

.fs-pick__search::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: currentColor;
    color: var(--text-faint);
    -webkit-mask: no-repeat center / contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
    mask: no-repeat center / contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.fs-pick__search input::placeholder { color: var(--text-faint); }

.fs-pick__search input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
}

.fs-pick__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 14px;
    max-height: min(64vh, 620px);
    max-height: min(64dvh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
    scrollbar-gutter: stable;
}

.fs-pick__grid::-webkit-scrollbar { width: 6px; }
.fs-pick__grid::-webkit-scrollbar-track { background: transparent; }
.fs-pick__grid::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
}

.fs-pick__card {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0 0 11px;
    border: 0;
    border-radius: 16px;
    background: var(--surface-2, var(--surface));
    color: var(--text);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.fs-pick__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}

.fs-pick__card:active { transform: translateY(-1px); }

.fs-pick__art {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    background: var(--surface-3);
    overflow: hidden;
}

.fs-pick__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.fs-pick__card:hover .fs-pick__art img { transform: scale(1.06); }

.fs-pick__art::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
    background: rgba(15, 23, 42, .45);
    opacity: 0;
    transition: opacity .18s ease;
}

.fs-pick__card:hover .fs-pick__art::after { opacity: 1; }

.fs-pick__noart {
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: var(--text-faint);
}

.fs-pick__name {
    padding: 0 11px;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs-pick__bet {
    padding: 0 11px;
    font-size: 11px;
    color: var(--text-dim);
}

.fs-pick__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 30px 10px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
}

.fs-card__queued { color: rgba(255, 255, 255, .3); }
.fs-card__queued svg { width: 30px; height: 30px; }

.fs-card__go--pick {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.fs-card__go--pick:hover { background: rgba(255, 255, 255, .22); filter: none; }

@media (max-width: 560px) {
    .fs-pick__grid { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 10px; }
    .fs-pick__name { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .fs-pick__card:hover { transform: none; }
    .fs-pick__card:hover .fs-pick__art img { transform: none; }
}
