@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/assets/fonts/inter-500.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/inter-600.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/inter-700.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/assets/fonts/inter-800.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/assets/fonts/inter-900.ttf") format("truetype");
}

:root {
    --purple-950: #360343;
    --purple-850: #4c075f;
    --purple-650: #7b2d94;
    --purple-150: #eadff1;
    --ink: #21172d;
    --muted: #776b82;
    --page: #f5f4f7;
    --card: #ffffff;
    --line: #e7e1ec;
    --yellow: #f2ff00;
    --shadow: 0 18px 40px rgba(36, 13, 51, .12);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--page);
    font-size: 15px;
    letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell {
    width: min(100% - 28px, 1120px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--purple-950);
    color: #fff;
    box-shadow: 0 2px 16px rgba(30, 0, 45, .18);
}
.header-inner {
    width: min(100%, 1160px);
    min-height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    flex: 0 0 auto;
    font-weight: 900;
    color: #fff;
    font-size: 26px;
}
.brand span { color: #fff; }
.brand strong { color: #ffe000; }
.brand small {
    font-size: 11px;
    color: #fff;
    opacity: .8;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}
.main-nav a {
    color: rgba(255,255,255,.88);
    font-weight: 800;
    font-size: 13px;
}
.main-nav a:hover { color: #fff; }
.login-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}
.icon-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 8px;
}
.icon-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 2px;
}

.hero { padding: 14px 0 34px; }
.hero-card {
    min-height: 254px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr .85fr 1.2fr;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border: 7px solid #20a7bd;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 22% 20%, rgba(255,255,255,.34), transparent 19%),
        linear-gradient(120deg, rgba(0,139,164,.95), rgba(19,71,121,.96) 52%, #2f0d52 53%, #2c0b49);
    box-shadow: var(--shadow);
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 82%, rgba(255,255,255,.12) 0 2px, transparent 3px),
        radial-gradient(circle at 42% 18%, rgba(255,225,0,.35) 0 3px, transparent 4px);
    background-size: 46px 46px, 82px 82px;
    opacity: .8;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-game {
    width: 210px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    text-align: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at center, #fff56a 0 7%, transparent 8%),
        linear-gradient(145deg, #ff7300, #ffce00 45%, #03a780);
    box-shadow: inset 0 -16px 24px rgba(0,0,0,.24), 0 18px 30px rgba(0,0,0,.2);
    text-transform: uppercase;
    transform: rotate(-5deg);
}
.hero-game span {
    display: block;
    font-size: 34px;
    line-height: .9;
    font-weight: 900;
    color: #ffea00;
    text-shadow: 3px 4px 0 #5b1b07;
}
.hero-game strong {
    display: block;
    width: min-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e73322;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}
.hero-character {
    height: 230px;
    position: relative;
    justify-self: center;
    width: 220px;
}
.hero-character .face {
    position: absolute;
    width: 128px;
    height: 128px;
    top: 58px;
    left: 54px;
    border-radius: 46% 46% 52% 52%;
    background: #f0824b;
    box-shadow: inset 0 -20px 0 rgba(96,38,20,.25);
}
.hero-character .face::before {
    content: "";
    position: absolute;
    width: 74px;
    height: 38px;
    left: 26px;
    top: 66px;
    border-radius: 0 0 40px 40px;
    background: #5b2b22;
    box-shadow: 18px -34px 0 -15px #fff, 52px -34px 0 -15px #fff;
}
.hero-character .hat {
    position: absolute;
    width: 152px;
    height: 58px;
    top: 20px;
    left: 36px;
    border-radius: 50% 50% 18px 18px;
    background: linear-gradient(#d7a06d, #b06f3e);
    box-shadow: 0 22px 0 -10px #e7ba86;
}
.hero-character .phone {
    position: absolute;
    width: 54px;
    height: 92px;
    top: 58px;
    left: 6px;
    border-radius: 9px;
    border: 5px solid #1d1636;
    background: linear-gradient(#21b5c8, #5c1b86);
    transform: rotate(-8deg);
}
.hero-copy {
    padding: 24px;
    border-radius: 12px;
    background: rgba(33, 12, 58, .84);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-copy span,
.jackpot-feature span {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    opacity: .9;
}
.hero-copy h1 {
    margin: 4px 0 18px;
    max-width: 430px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: 0;
}
.hero-copy p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 10px;
    line-height: 1.45;
}
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: var(--radius);
    border: 0;
    background: #efe9f5;
    color: #3b184d;
    font-weight: 900;
    text-align: center;
}

.content-section { padding: 24px 0; }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.section-head h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
}
.section-head a {
    color: var(--purple-650);
    font-weight: 900;
    font-size: 12px;
    text-decoration: underline;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.game-grid--popular { grid-auto-rows: 190px; }
.game-card,
.mini-tile,
.scratch-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    min-height: 176px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 12px 22px rgba(39, 15, 54, .16);
    isolation: isolate;
}
.game-card::before,
.mini-tile::before,
.scratch-card::before,
.bingo-card__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 24%, rgba(255,255,255,.65), transparent 10%),
        radial-gradient(circle at 18% 16%, rgba(255,255,255,.24), transparent 18%),
        linear-gradient(145deg, rgba(0,0,0,0), rgba(0,0,0,.55));
    z-index: -1;
}
.game-card__art {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.game-card__orb {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,0) 58%);
}
.game-card__coins {
    position: absolute;
    width: 72px;
    height: 50px;
    right: 10px;
    bottom: 42px;
    background:
        radial-gradient(circle at 20% 65%, #ffe86d 0 11px, transparent 12px),
        radial-gradient(circle at 52% 54%, #ffb000 0 11px, transparent 12px),
        radial-gradient(circle at 82% 68%, #ffe86d 0 11px, transparent 12px);
    opacity: .88;
}
.game-card__badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
    padding: 4px 7px;
    border-radius: 999px;
    background: #ffef00;
    color: #2c1738;
    font-size: 10px;
    font-weight: 900;
}
.game-card__title {
    font-size: 22px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 7px rgba(0,0,0,.45);
}
.game-card__studio {
    margin: 9px -12px -12px;
    padding: 7px 8px;
    background: rgba(28, 11, 42, .76);
    text-transform: uppercase;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
}
.payments,
.studios,
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #4b3f58;
    margin-top: 18px;
}
.payments span,
.studios span {
    width: 100%;
    text-align: center;
    color: #b2a9ba;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 900;
}
.payments strong,
.studios strong,
.footer-logos span {
    font-weight: 900;
}

.jackpot-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 14px;
}
.jackpot-feature,
.progressive-feature {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 382px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    box-shadow: var(--shadow);
}
.jackpot-feature::before,
.progressive-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 66%, rgba(255,255,255,.8), transparent 8%),
        radial-gradient(circle at 38% 72%, rgba(255,187,0,.95), transparent 16%),
        radial-gradient(circle at 72% 30%, rgba(255,255,255,.18), transparent 24%),
        linear-gradient(150deg, rgba(0,0,0,0), rgba(0,0,0,.56));
    z-index: 0;
}
.jackpot-feature > *,
.progressive-feature > * { position: relative; z-index: 1; }
.jackpot-feature strong {
    display: block;
    color: #ffea00;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .95;
    font-weight: 900;
}
.jackpot-feature p {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.mini-tile {
    min-height: 185px;
}
.mini-tile__art {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 56% 38%, rgba(255,255,255,.5), transparent 12%),
        radial-gradient(circle at 36% 55%, rgba(255,205,0,.8), transparent 14%);
    z-index: -1;
}
.mini-tile strong {
    font-size: 17px;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.mini-tile span {
    color: #ffe500;
    font-weight: 900;
    font-size: 12px;
}
.progressive-feature {
    background:
        radial-gradient(circle at 30% 68%, #37c17e, transparent 17%),
        radial-gradient(circle at 70% 70%, #914fc5, transparent 16%),
        linear-gradient(145deg, #0e3048, #188b86);
}
.progressive-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.progressive-stats span {
    display: grid;
    gap: 4px;
    padding: 18px 10px;
    border-radius: var(--radius);
    background: #07162f;
    color: #dff4ff;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}
.progressive-stats strong {
    color: #ffea00;
    font-size: 25px;
}
.horizontal-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(154px, 1fr);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.horizontal-list > * { scroll-snap-align: start; }
.game-card--live {
    min-height: 178px;
}
.lottery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.lottery-card {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 6px 18px rgba(36, 13, 51, .08);
}
.lottery-card__label {
    display: block;
    color: #9b90a6;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
}
.lottery-card strong {
    display: block;
    margin-top: 3px;
    font-size: 22px;
    line-height: 1.1;
}
.lottery-card small {
    display: block;
    margin-top: 4px;
    color: #9b90a6;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
}
.rollover {
    padding: 5px 7px;
    border-radius: 999px;
    background: #2e1740;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.info-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--purple-650);
    font-size: 12px;
    font-weight: 800;
}
.scratch-card {
    min-height: 184px;
    min-width: 154px;
}
.scratch-card span {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #2d183b;
    font-size: 10px;
    font-weight: 900;
}
.scratch-card strong {
    font-size: 21px;
    line-height: 1;
    text-transform: uppercase;
}
.scratch-card em {
    color: #ffea00;
    font-style: normal;
    font-size: 19px;
    font-weight: 900;
}
.bingo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.bingo-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 18px rgba(36, 13, 51, .09);
}
.bingo-card__scene {
    position: relative;
    height: 116px;
    overflow: hidden;
}
.bingo-card__scene span {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffea00;
    color: #28123c;
    font-size: 11px;
    font-weight: 900;
}
.bingo-card__body {
    padding: 10px 12px 12px;
}
.bingo-card strong {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}
.bingo-card p {
    margin: 8px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #6d5d78;
    font-size: 11px;
    font-weight: 800;
}

.tone-sea { background: linear-gradient(145deg, #007d97, #09224f); }
.tone-pink { background: linear-gradient(145deg, #ff8fc5, #6532b1); }
.tone-gold { background: linear-gradient(145deg, #f7b100, #713f10); }
.tone-orange { background: linear-gradient(145deg, #ff8a00, #5b2308); }
.tone-violet { background: linear-gradient(145deg, #8b31d5, #1e0738); }
.tone-lime { background: linear-gradient(145deg, #40c27a, #075b65); }
.tone-amber { background: linear-gradient(145deg, #ffd331, #903816); }
.tone-red { background: linear-gradient(145deg, #e93535, #380d20); }
.tone-cyan { background: linear-gradient(145deg, #31cee3, #292077); }
.tone-black { background: linear-gradient(145deg, #34303d, #08050e); }
.tone-teal { background: linear-gradient(145deg, #00a386, #0f3a58); }
.tone-sky { background: linear-gradient(145deg, #63cdf1, #305bbd); }
.tone-slate { background: linear-gradient(145deg, #748095, #1e2838); }

.responsible-band {
    margin-top: 120px;
    min-height: 82px;
    display: grid;
    place-items: center;
    align-content: center;
    background: var(--yellow);
    color: #090909;
    text-align: center;
    text-transform: uppercase;
}
.responsible-band strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}
.responsible-band strong::before {
    content: "||";
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-right: 8px;
    border-radius: 50%;
    background: #050505;
    color: var(--yellow);
    font-size: 15px;
}
.responsible-band span {
    display: block;
    font-size: 13px;
    font-weight: 900;
}
.site-footer {
    padding: 20px 0 44px;
    background: #f0eef3;
    color: #6e6178;
}
.footer-logos {
    margin-top: 0;
    padding-bottom: 22px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding: 10px 0 22px;
}
.footer-toggle {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4b3e58;
    text-align: left;
    font-weight: 900;
}
.footer-column ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.footer-column li + li { margin-top: 8px; }
.footer-column a {
    color: #6e6178;
    font-size: 12px;
    font-weight: 700;
}
.legal {
    color: #8c8393;
    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 58px;
        padding: 0 14px;
        gap: 10px;
    }
    .icon-btn { display: block; }
    .brand {
        font-size: 23px;
        margin-right: auto;
    }
    .main-nav {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        display: none;
        padding: 14px;
        background: var(--purple-950);
        border-top: 1px solid rgba(255,255,255,.1);
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main-nav.is-open { display: grid; }
    .main-nav a {
        padding: 11px;
        border-radius: var(--radius);
        background: rgba(255,255,255,.08);
    }
    .login-pill {
        padding: 8px 9px;
        font-size: 11px;
    }
    .hero {
        width: 100%;
        padding-top: 12px;
    }
    .hero-card {
        width: min(100% - 24px, 430px);
        min-height: 332px;
        margin-inline: auto;
        display: block;
        padding: 16px;
        border-width: 0;
        border-radius: 16px;
        background: linear-gradient(180deg, #078aa6, #122d60 54%, #301149);
    }
    .hero-game {
        width: 112px;
        position: absolute;
        top: 40px;
        left: 22px;
    }
    .hero-game span { font-size: 20px; }
    .hero-game strong { font-size: 10px; }
    .hero-character {
        position: absolute;
        top: 12px;
        right: 18px;
        transform: scale(.78);
        transform-origin: top right;
    }
    .hero-copy {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .hero-copy h1 {
        font-size: 34px;
        max-width: 330px;
        margin-bottom: 10px;
    }
    .hero-copy .primary-btn {
        position: absolute;
        right: 0;
        bottom: 70px;
        width: 34px;
        min-height: 34px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
    }
    .hero-copy .primary-btn::after {
        content: ">";
        font-size: 18px;
    }
    .hero-copy p {
        max-width: 330px;
        font-size: 8px;
    }
    .section-head h2 { font-size: 20px; }
    .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .game-grid--popular { grid-auto-rows: 132px; }
    .game-card {
        min-height: 132px;
        padding: 8px;
    }
    .game-card__title { font-size: 15px; }
    .game-card__studio {
        margin: 7px -8px -8px;
        font-size: 7px;
    }
    .game-card__badge { font-size: 8px; }
    .jackpot-layout,
    .jackpot-layout--reverse {
        display: block;
    }
    .jackpot-feature,
    .progressive-feature {
        min-height: 318px;
        padding: 16px;
        margin-bottom: 8px;
    }
    .jackpot-feature strong { font-size: 44px; }
    .mini-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 104px;
        overflow-x: auto;
        grid-template-columns: none;
        gap: 8px;
        padding-bottom: 6px;
    }
    .mini-tile {
        min-height: 134px;
        padding: 8px;
    }
    .mini-tile strong { font-size: 12px; }
    .horizontal-list {
        grid-auto-columns: 112px;
        gap: 8px;
    }
    .game-card--live,
    .scratch-card {
        min-height: 132px;
        min-width: 112px;
    }
    .scratch-card strong,
    .scratch-card em { font-size: 14px; }
    .lottery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .lottery-card {
        min-height: 76px;
        padding: 12px;
    }
    .lottery-card strong { font-size: 18px; }
    .bingo-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 190px;
        grid-template-columns: none;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
    }
    .responsible-band { margin-top: 80px; }
    .responsible-band strong { font-size: 17px; }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .footer-column {
        border-radius: var(--radius);
        background: #e5ddef;
    }
    .footer-toggle {
        padding: 14px;
    }
    .footer-toggle::after {
        content: "+";
        float: right;
    }
    .footer-column ul {
        display: none;
        padding: 0 14px 14px;
    }
    .footer-column.is-open ul { display: block; }
}

@media (max-width: 420px) {
    .shell { width: min(100% - 22px, 390px); }
    .game-grid--popular { grid-auto-rows: 122px; }
    .hero-copy h1 { font-size: 31px; }
    .payments { gap: 10px; }
}

.hero-card--image {
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
}
.hero-card--image::before,
.jackpot-feature--image::before {
    display: none;
}
.hero-card--image img,
.jackpot-feature--image img,
.mini-image-card img,
.image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card--image img {
    aspect-ratio: 2053 / 578;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.image-card,
.mini-image-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 12px 22px rgba(39, 15, 54, .16);
}
.image-card {
    aspect-ratio: 320 / 424;
}
.game-grid .image-card {
    aspect-ratio: auto;
    min-height: 190px;
}
.casino-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 160px;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.casino-row .image-card {
    width: 100%;
    scroll-snap-align: start;
}
.jackpot-feature--image {
    min-height: 0;
    padding: 0;
    background: transparent;
}
.jackpot-feature--image img {
    aspect-ratio: 1003 / 858;
    border-radius: 14px;
}
.mini-image-card {
    aspect-ratio: 320 / 424;
}
.category-tabs {
    width: min(100%, 1160px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: end;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs a {
    position: relative;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 8px 14px 12px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.category-tabs a.is-active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: #f5e400;
}
.category-tabs span {
    position: absolute;
    top: 1px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #f5e400;
    color: #2f1042;
    font-size: 9px;
    line-height: 1.2;
}
.casino-page {
    padding-top: 24px;
}
.casino-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 14px;
}
.casino-title h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
}
.search-box {
    position: relative;
    display: block;
    width: min(100%, 470px);
}
.search-box input {
    width: 100%;
    height: 64px;
    border: 2px solid #1f8bff;
    border-radius: var(--radius);
    padding: 0 58px 0 26px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    outline: none;
}
.search-box span:not(.sr-only) {
    position: absolute;
    top: 50%;
    right: 25px;
    width: 22px;
    height: 22px;
    border: 3px solid #91a1b1;
    border-radius: 50%;
    transform: translateY(-50%);
}
.search-box span:not(.sr-only)::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 3px;
    right: -7px;
    bottom: -4px;
    border-radius: 3px;
    background: #91a1b1;
    transform: rotate(45deg);
}
.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;
}
.live-page {
    padding-top: 72px;
}
.live-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.live-title h1 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}
.live-search {
    width: min(100%, 360px);
}
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.scratchcards-page {
    padding: 82px 0 64px;
}
.scratch-hero {
    text-align: center;
    margin-bottom: 24px;
}
.scratch-hero h1 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.15;
}
.scratch-hero p {
    margin: 0 auto 26px;
    color: #3e3447;
    font-size: 13px;
    font-weight: 600;
}
.sort-select {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #4a3d55;
    font-size: 13px;
    font-weight: 700;
}
.sort-select select {
    min-width: 120px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    color: var(--ink);
    padding: 0 28px 0 10px;
    font-weight: 700;
}
.scratch-products {
    width: min(100% - 28px, 1940px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.scratch-product {
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(38, 21, 48, .08);
}
.scratch-product img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 901px) {
    .casino-row {
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-flow: row;
        overflow: visible;
    }
}

@media (max-width: 900px) {
    .hero-card--image {
        min-height: 0;
        padding: 0;
        background: transparent;
    }
    .hero-card--image img {
        aspect-ratio: 2053 / 578;
    }
    .game-grid .image-card {
        min-height: 0;
        aspect-ratio: 320 / 424;
    }
    .jackpot-feature--image,
    .progressive-feature.jackpot-feature--image {
        min-height: 0;
        padding: 0;
        margin-bottom: 8px;
    }
    .mini-image-card {
        min-width: 104px;
    }
    .category-tabs {
        padding: 0 12px;
        gap: 14px;
    }
    .category-tabs a {
        min-height: 52px;
        padding: 14px 0 12px;
        font-size: 13px;
    }
    .category-tabs a:nth-child(n+5) {
        display: none;
    }
    .casino-title {
        align-items: center;
        padding-bottom: 4px;
    }
    .casino-title h1 {
        font-size: 25px;
    }
    .search-box {
        width: 48px;
        flex: 0 0 48px;
    }
    .search-box input {
        height: 48px;
        padding: 0;
        color: transparent;
        caret-color: transparent;
    }
    .search-box input::placeholder {
        color: transparent;
    }
    .search-box span:not(.sr-only) {
        right: 15px;
    }
    .casino-row {
        grid-auto-columns: 112px;
        gap: 8px;
    }
    .live-page {
        padding-top: 46px;
    }
    .live-title {
        margin-bottom: 18px;
    }
    .live-title h1 {
        font-size: 19px;
    }
    .live-search {
        display: none;
    }
    .live-games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .scratchcards-page {
        padding: 24px 0 42px;
    }
    .scratch-hero {
        width: min(100% - 24px, 430px);
        text-align: left;
        margin-bottom: 12px;
    }
    .scratch-hero h1 {
        font-size: 17px;
        margin-bottom: 14px;
    }
    .scratch-hero p {
        margin: 0 0 18px;
        font-size: 12px;
    }
    .sort-select {
        font-size: 12px;
    }
    .sort-select select {
        height: 34px;
    }
    .scratch-products {
        width: min(100% - 24px, 430px);
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
