:root {
    --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bg: #02080c;
    --bg-deep: #000407;
    --panel: rgba(8, 22, 27, .86);
    --panel-strong: rgba(13, 30, 36, .94);
    --panel-soft: rgba(255, 255, 255, .045);
    --line: rgba(153, 190, 207, .14);
    --line-strong: rgba(153, 190, 207, .24);
    --text: #f4f7f8;
    --muted: #9ca8b4;
    --muted-soft: #7c8894;
    --green: #12f27d;
    --green-soft: rgba(18, 242, 125, .15);
    --green-glow: rgba(18, 242, 125, .34);
    --yellow: #ffd322;
    --orange: #ff9f23;
    --red: #ff313d;
    --purple: #a846ff;
    --neutral-game-image:
        linear-gradient(135deg, rgba(18, 242, 125, .10) 0%, rgba(18, 242, 125, 0) 42%),
        linear-gradient(155deg, #101b21 0%, #071014 56%, #02080c 100%);
    --sidebar: 202px;
    --topbar: 88px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.join-card .join-primary,
.join-card .join-secondary {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    text-align: center;
}

.join-card .join-primary {
    background: linear-gradient(135deg, #35e58f, #02f874);
    color: #00120a;
    box-shadow: 0 12px 28px rgba(0, 232, 113, .22);
}

.join-card .join-secondary {
    margin-top: 9px;
    border: 1px solid rgba(153, 190, 207, .24);
    background: rgba(255, 255, 255, .045);
    color: #dce6ed;
}

.pricing-button {
    border-color: rgba(18, 242, 125, .24);
    background:
        linear-gradient(180deg, rgba(18, 242, 125, .16), rgba(12, 22, 28, .84));
}

.sales-dashboard-band {
    display: grid;
    grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
    gap: 18px;
    margin: 8px 0 30px;
    padding: 18px;
    border: 1px solid rgba(18, 242, 125, .16);
    border-radius: 10px;
    background:
        radial-gradient(circle at 12% 12%, rgba(18, 242, 125, .13), transparent 38%),
        linear-gradient(135deg, rgba(8, 28, 24, .9), rgba(8, 16, 22, .9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.sales-band-copy {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 12px;
}

.sales-band-copy h2,
.sales-page-hero h1 {
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.02;
    font-weight: 950;
}

.sales-band-copy p,
.sales-page-hero p {
    max-width: 720px;
    color: #bdc7cf;
    font-size: 15px;
}

.sales-band-actions,
.sales-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sales-band-grid {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.sales-band-grid article,
.sales-pricing-card,
.sales-form-card,
.sales-mini-plan {
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        radial-gradient(circle at 85% 0, rgba(18, 242, 125, .08), transparent 36%),
        rgba(8, 22, 27, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.sales-band-grid article {
    min-height: 112px;
    padding: 13px;
}

.sales-band-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #f6fbff;
    font-size: 13px;
    line-height: 1.2;
}

.sales-band-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.sales-page-hero {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid rgba(18, 242, 125, .16);
    border-radius: 12px;
    background:
        radial-gradient(circle at 78% 10%, rgba(18, 242, 125, .16), transparent 32%),
        linear-gradient(135deg, rgba(8, 28, 24, .95), rgba(6, 15, 20, .95));
}

.sales-page-hero.compact {
    align-self: start;
    margin-bottom: 0;
}

.sales-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sales-pricing-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.sales-pricing-card.is-featured {
    border-color: rgba(18, 242, 125, .48);
    background:
        radial-gradient(circle at 60% 0, rgba(18, 242, 125, .18), transparent 38%),
        rgba(8, 27, 24, .94);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .28), 0 0 0 1px rgba(18, 242, 125, .14);
}

.sales-plan-badge {
    width: fit-content;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(18, 242, 125, .13);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.sales-pricing-card h2,
.sales-form-card h2 {
    color: #f6fbff;
    font-size: 24px;
    line-height: 1.1;
}

.sales-pricing-card > strong {
    color: var(--green);
    font-size: 30px;
}

.sales-pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 auto;
    padding: 0;
    list-style: none;
}

.sales-pricing-card li {
    position: relative;
    padding-left: 18px;
    color: #cbd5dd;
    font-size: 13px;
    line-height: 1.35;
}

.sales-pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(18, 242, 125, .72);
}

.sales-pricing-card .primary-cta,
.sales-pricing-card .secondary-cta,
.sales-form-card .primary-cta {
    width: 100%;
}

.sales-form-layout {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(360px, 520px);
    gap: 18px;
    align-items: start;
}

.sales-form-card {
    padding: 22px;
}

.sales-form {
    display: grid;
    gap: 13px;
    margin-top: 16px;
}

.sales-form label {
    display: grid;
    gap: 7px;
    color: #c8d2da;
    font-size: 13px;
    font-weight: 750;
}

.sales-account-summary {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(18, 242, 125, .24);
    border-radius: 8px;
    background: rgba(18, 242, 125, .08);
}

.sales-account-summary strong {
    color: #f6fbff;
}

.sales-account-summary span {
    color: var(--muted);
    font-size: 13px;
}

.sales-card-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.sales-form input,
.sales-form select,
.sales-form textarea {
    width: 100%;
    min-height: 43px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    outline: none;
}

.sales-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #8fa0ad 50%) calc(100% - 18px) 18px / 6px 6px no-repeat,
        linear-gradient(135deg, #8fa0ad 50%, transparent 50%) calc(100% - 12px) 18px / 6px 6px no-repeat,
        rgba(255, 255, 255, .045);
}

.sales-form textarea {
    min-height: 112px;
    padding-top: 11px;
    resize: vertical;
}

.country-picker {
    position: relative;
    display: block;
}

.country-picker-toggle {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 38px 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 0, rgba(18, 242, 125, .13), transparent 34%),
        rgba(255, 255, 255, .045);
    color: var(--text);
    font: inherit;
    font-weight: 760;
    text-align: left;
    cursor: pointer;
    outline: 0;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.country-picker-toggle::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9fb0bd;
    border-bottom: 2px solid #9fb0bd;
    transform: rotate(45deg);
    transition: transform .16s ease, border-color .16s ease;
}

.country-picker.is-open .country-picker-toggle,
.country-picker-toggle:focus {
    border-color: rgba(18, 242, 125, .58);
    box-shadow: 0 0 0 4px rgba(18, 242, 125, .11), 0 14px 34px rgba(0, 0, 0, .22);
}

.country-picker.is-open .country-picker-toggle::after {
    top: 21px;
    border-color: var(--green);
    transform: rotate(225deg);
}

.country-picker-panel {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    overflow: hidden;
    border: 1px solid rgba(18, 242, 125, .28);
    border-radius: 10px;
    background:
        radial-gradient(circle at 88% 0, rgba(18, 242, 125, .16), transparent 34%),
        rgba(4, 13, 17, .98);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.country-picker.is-open .country-picker-panel {
    display: block;
}

.country-picker-search {
    padding: 10px;
    border-bottom: 1px solid rgba(153, 190, 207, .16);
    background: rgba(5, 16, 20, .96);
}

.country-picker-search input {
    min-height: 40px;
    padding: 0 12px;
    border-color: rgba(153, 190, 207, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    color: var(--text);
}

.country-picker-groups {
    max-height: min(390px, 54vh);
    overflow: auto;
    padding: 8px;
}

.country-picker-group {
    display: grid;
    gap: 4px;
}

.country-picker-group + .country-picker-group {
    margin-top: 10px;
}

.country-picker-group h3 {
    position: sticky;
    top: -8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 8px 8px 6px;
    background: rgba(4, 13, 17, .96);
    color: var(--green);
    font-size: 11px;
    font-weight: 930;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.country-picker-group h3 span {
    color: #78909d;
    letter-spacing: 0;
}

.country-picker-option {
    width: 100%;
    min-height: 37px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: #dce6ed;
    font: inherit;
    font-size: 13px;
    font-weight: 720;
    text-align: left;
    cursor: pointer;
}

.country-picker-option:hover,
.country-picker-option:focus,
.country-picker-option.is-selected {
    border-color: rgba(18, 242, 125, .24);
    background: rgba(18, 242, 125, .11);
    color: #fff;
    outline: 0;
}

.country-picker-option.is-selected {
    box-shadow: inset 3px 0 0 var(--green);
}

.country-picker-option em {
    color: #7f929f;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.country-picker-empty,
.country-picker-error {
    margin: 0;
    color: #ffb4bc;
    font-size: 12px;
    font-weight: 760;
}

.country-picker-empty {
    padding: 16px 10px;
    text-align: center;
}

.country-picker-error {
    margin-top: 6px;
}

.country-picker.is-invalid .country-picker-toggle {
    border-color: rgba(255, 49, 61, .68);
    box-shadow: 0 0 0 4px rgba(255, 49, 61, .12);
}

.site-check-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 9px;
}

.site-check-field .secondary-cta {
    min-height: 43px;
    border-radius: 8px;
}

.site-check-result {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(153, 190, 207, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .045);
    color: #cbd5dd;
    font-size: 12px;
    line-height: 1.35;
}

.site-check-result[hidden] {
    display: none;
}

.site-check-result strong {
    color: #f6fbff;
    font-size: 13px;
}

.site-check-result.is-good {
    border-color: rgba(18, 242, 125, .32);
    background: rgba(18, 242, 125, .08);
}

.site-check-result.is-warning {
    border-color: rgba(255, 159, 35, .38);
    background: rgba(255, 159, 35, .08);
}

.site-check-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.site-check-actions .secondary-cta {
    width: auto;
    min-width: 132px;
}

.sales-error {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 49, 61, .26);
    border-radius: 8px;
    background: rgba(255, 49, 61, .08);
    color: #ffc7cc;
    font-size: 13px;
}

.sales-signal-list,
.sales-mini-plan {
    display: grid;
    gap: 8px;
}

.sales-signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-signal-list span,
.sales-mini-plan span {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(153, 190, 207, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: #dce6ed;
    font-size: 12px;
    font-weight: 720;
}

.sales-mini-plan {
    margin-top: 4px;
    padding: 14px;
}

.sales-mini-plan strong {
    color: var(--green);
    font-size: 25px;
}

@media (max-width: 1420px) {
    .sales-band-grid,
    .sales-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .pricing-button {
        display: none;
    }

    .sales-dashboard-band,
    .sales-form-layout {
        grid-template-columns: 1fr;
    }

    .sales-dashboard-band {
        margin-top: 14px;
    }
}

@media (max-width: 560px) {
    .sales-dashboard-band,
    .sales-page-hero,
    .sales-form-card {
        padding: 14px;
        border-radius: 10px;
    }

    .sales-band-copy h2,
    .sales-page-hero h1 {
        font-size: 28px;
    }

    .sales-band-grid,
    .sales-pricing-grid,
    .sales-signal-list {
        grid-template-columns: 1fr;
    }

    .sales-band-grid article {
        min-height: 0;
    }

    .sales-hero-actions,
    .sales-band-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-check-field {
        grid-template-columns: 1fr;
    }

    .sales-pricing-card {
        min-height: 0;
        padding: 16px;
    }
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at 50% 18%, rgba(8, 110, 55, .18), transparent 26%),
        radial-gradient(circle at 82% 6%, rgba(21, 103, 96, .12), transparent 20%),
        linear-gradient(180deg, #000305 0%, #030a0e 54%, #041013 100%);
    font-synthesis-weight: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(8, 110, 55, .18), transparent 26%),
        radial-gradient(circle at 82% 6%, rgba(21, 103, 96, .12), transparent 20%),
        linear-gradient(180deg, #000305 0%, #030a0e 54%, #041013 100%);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0;
}

button,
input {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    color: inherit;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.app-shell {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: var(--sidebar) minmax(0, 1fr);
    background:
        radial-gradient(circle at 50% 18%, rgba(8, 110, 55, .18), transparent 26%),
        radial-gradient(circle at 82% 6%, rgba(21, 103, 96, .12), transparent 20%),
        linear-gradient(180deg, #000305 0%, #030a0e 54%, #041013 100%);
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 20;
    width: var(--sidebar);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 17px 15px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 1px solid var(--line-strong);
    background:
        linear-gradient(180deg, rgba(3, 10, 14, .95), rgba(2, 7, 10, .97)),
        var(--bg-deep);
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 242, 125, .42) rgba(255, 255, 255, .04);
}

.sidebar::-webkit-scrollbar {
    width: 7px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .04);
}

.sidebar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(18, 242, 125, .42);
}

.brand,
.side-nav,
.join-card,
.sidebar-footer {
    flex: 0 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    height: 42px;
    margin: 0 9px 28px;
}

.brand img {
    width: 148px;
    height: auto;
}

.side-nav {
    display: grid;
    gap: 8px;
}

.side-nav a {
    min-height: 39px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #c9d3dc;
    font-size: 13px;
    font-weight: 520;
}

.side-nav a.active {
    border-color: rgba(18, 242, 125, .12);
    background: linear-gradient(90deg, rgba(18, 242, 125, .15), rgba(255, 255, 255, .035));
    color: var(--green);
    box-shadow: inset 3px 0 0 var(--green);
}

.side-nav svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    stroke-width: 2;
}

.side-nav-secondary {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.join-card {
    margin-top: auto;
    padding: 22px 19px 18px;
    border: 1px solid rgba(18, 242, 125, .10);
    border-radius: 10px;
    background:
        radial-gradient(circle at 85% 12%, rgba(18, 242, 125, .11), transparent 44%),
        rgba(10, 34, 31, .66);
}

.join-card h2 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.14;
}

.join-card p {
    max-width: none;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.join-card input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    outline: none;
}

.join-card button,
.sign-in,
.primary-cta {
    border: 0;
    background: linear-gradient(135deg, #35e58f, #02f874);
    color: #00120a;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 232, 113, .22);
}

.join-card button {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    text-align: center;
    white-space: nowrap;
}

.sidebar-footer {
    margin-top: 16px;
}

.sidebar.no-join-card .sidebar-footer {
    margin-top: auto;
}

.copyright {
    margin: 0 15px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-height: 840px) {
    .sidebar.has-join-card {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .sidebar.has-join-card .brand {
        height: 36px;
        margin-bottom: 18px;
    }

    .sidebar.has-join-card .side-nav {
        gap: 6px;
    }

    .sidebar.has-join-card .side-nav a {
        min-height: 34px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .sidebar.has-join-card .side-nav svg {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .sidebar.has-join-card .side-nav-secondary {
        margin-top: 16px;
        padding-top: 12px;
    }

    .sidebar.has-join-card .join-card {
        margin-top: 14px;
        padding: 14px;
        border-radius: 8px;
    }

    .sidebar.has-join-card .join-card h2 {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .sidebar.has-join-card .join-card p {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .sidebar.has-join-card .join-card input {
        height: 34px;
        margin-bottom: 8px;
        padding-inline: 11px;
    }

    .sidebar.has-join-card .join-card button {
        height: 36px;
    }

    .sidebar.has-join-card .sidebar-footer {
        display: none;
    }
}

@media (max-height: 760px) {
    .sidebar.has-join-card {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .sidebar.has-join-card .brand {
        height: 30px;
        margin-bottom: 10px;
    }

    .sidebar.has-join-card .brand img {
        width: 136px;
    }

    .sidebar.has-join-card .side-nav {
        gap: 4px;
    }

    .sidebar.has-join-card .side-nav a {
        min-height: 30px;
        gap: 10px;
        padding-inline: 11px;
        font-size: 11.5px;
    }

    .sidebar.has-join-card .side-nav svg {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }

    .sidebar.has-join-card .side-nav-secondary {
        margin-top: 10px;
        padding-top: 10px;
    }

    .sidebar.has-join-card .join-card {
        margin-top: 10px;
        padding: 12px;
    }

    .sidebar.has-join-card .join-card h2 {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .sidebar.has-join-card .join-card p,
    .sidebar.has-join-card .join-card input {
        display: none;
    }

    .sidebar.has-join-card .join-card button {
        height: 34px;
        font-size: 12px;
    }
}

.main {
    grid-column: 2;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0 24px 42px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 18;
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    background:
        linear-gradient(180deg, rgba(2, 8, 12, .96), rgba(2, 8, 12, .64) 76%, transparent);
    backdrop-filter: blur(12px);
}

.mobile-brand,
.mobile-search,
.mobile-search-button {
    display: none;
}

.search {
    justify-self: center;
    width: min(594px, 100%);
    height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background:
        linear-gradient(180deg, rgba(20, 34, 42, .82), rgba(7, 15, 20, .82));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .018);
}

.search.mobile-search {
    display: none;
}

.search svg {
    width: 19px;
    height: 19px;
    color: #8fa0ad;
}

.search input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    outline: 0;
}

.search input::placeholder {
    color: #8e9ba7;
}

.search kbd {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: #8e9ba7;
    font-size: 13px;
}

.top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.pill-button,
.icon-only,
.secondary-cta,
.time-select,
.small-select,
.section-actions button,
.wide-button {
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(180deg, rgba(28, 42, 49, .84), rgba(12, 22, 28, .84));
    color: var(--text);
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.pill-button {
    height: 43px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 9px;
    font-weight: 750;
}

.pill-button svg,
.secondary-cta svg,
.icon-only svg {
    width: 18px;
    height: 18px;
}

.icon-only svg {
    width: 27px;
    height: 27px;
}

.language-button {
    padding-inline: 14px;
}

.language-menu {
    position: relative;
    display: inline-flex;
    z-index: 70;
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 176px;
    display: grid;
    gap: 4px;
    padding: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background:
        linear-gradient(180deg, rgba(17, 31, 38, .98), rgba(7, 15, 20, .98));
    box-shadow: 0 18px 34px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.language-menu.is-open .language-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.language-options button {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.language-options button:hover,
.language-options button:focus-visible,
.language-options button.is-active {
    border-color: rgba(18, 242, 125, .22);
    background: rgba(18, 242, 125, .10);
    color: var(--green);
}

.language-options strong {
    font-size: 13px;
}

.language-options span {
    color: #aeb9c2;
    font-size: 12px;
}

.sign-in {
    height: 43px;
    min-width: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 9px;
    font-size: 15px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(390px, 460px) minmax(380px, 411px) minmax(300px, 328px);
    gap: 32px;
    align-items: start;
    justify-content: space-between;
    min-height: 340px;
    padding: 18px 0 24px;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    z-index: -1;
    background:
        radial-gradient(circle at 34% 55%, rgba(3, 210, 92, .18), transparent 28%),
        radial-gradient(circle at 56% 62%, rgba(226, 171, 23, .10), transparent 18%),
        linear-gradient(90deg, transparent, rgba(2, 8, 12, .22));
    opacity: .86;
}

.kicker {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 15px;
    padding: 0 12px;
    border: 1px solid rgba(18, 242, 125, .26);
    border-radius: 7px;
    background: rgba(18, 242, 125, .10);
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 580px;
    margin-bottom: 16px;
    font-size: clamp(34px, 3vw, 38px);
    line-height: 1.07;
    font-weight: 900;
}

.hero-copy h1 em {
    color: var(--green);
    font-style: normal;
}

.hero-copy p {
    max-width: 480px;
    margin-bottom: 24px;
    color: #bdc7cf;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
}

.primary-cta,
.secondary-cta {
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border-radius: 9px;
    text-align: center;
}

.primary-cta svg {
    width: 18px;
    height: 18px;
}

.secondary-cta {
    padding-inline: 22px;
    font-weight: 800;
}

.quick-stats {
    width: min(100%, 426px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 17px 20px;
    border: 1px solid rgba(18, 242, 125, .12);
    border-radius: 10px;
    background: rgba(10, 34, 31, .68);
}

.quick-stats div {
    text-align: center;
}

.quick-stats strong {
    display: block;
    color: var(--green);
    font-size: 20px;
}

.quick-stats span {
    display: block;
    color: #c7d0d7;
    font-size: 12px;
}

.radar-ghost {
    display: none;
}

.feature-card {
    position: relative;
    height: 296px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background-color: #121a20;
    background-image: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
}

.feature-card.has-fallback-image {
    background-color: #111b20;
}

.feature-card img {
    display: none;
}

.feature-card > :not(img) {
    display: none;
}

.feature-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02) 0 48%, rgba(0, 0, 0, .78) 86%, rgba(0, 0, 0, .93) 100%),
        radial-gradient(circle at 52% 18%, transparent 0 30%, rgba(0, 0, 0, .24) 80%);
}

.feature-badge,
.tag {
    position: absolute;
    z-index: 2;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(15, 27, 32, .88);
    color: #38ff83;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-badge {
    top: 24px;
    left: 24px;
}

.feature-menu,
.card-menu {
    position: absolute;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(9, 12, 16, .72);
    color: #fff;
}

.feature-menu,
.card-menu {
    display: none !important;
}

.feature-menu {
    display: none;
    top: 18px;
    right: 18px;
}

.slider-control {
    position: absolute;
    z-index: 5;
    top: 46%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(8, 14, 18, .76);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.slider-control svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.8;
}

.slider-control i {
    display: none;
}

.slider-control::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

.slider-control.left::before {
    transform: translateX(2px) rotate(-135deg);
}

.slider-control.right::before {
    transform: translateX(-2px) rotate(45deg);
}

.slider-control:hover,
.slider-control:focus-visible {
    border-color: rgba(18, 242, 125, .78);
    color: var(--green);
}

.slider-control.left {
    left: 20px;
}

.slider-control.right {
    right: 20px;
}

.feature-provider {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 750;
}

.feature-title {
    position: absolute;
    z-index: 3;
    left: 72px;
    right: 72px;
    bottom: 119px;
    color: #fff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .72);
    display: none;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.feature-title:hover {
    color: var(--green);
}

.provider-chip {
    width: 27px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 171, 28, .9);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.provider-chip-image {
    overflow: hidden;
    border-color: rgba(18, 242, 125, .75);
    background: rgba(255, 255, 255, .08);
}

.provider-chip-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.feature-bottom {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.feature-bottom span {
    display: block;
    color: #b6c2cb;
    font-size: 13px;
}

.feature-bottom strong {
    color: var(--green);
    font-size: 24px;
}

.feature-line {
    width: 100%;
    height: 50px;
}

.feature-line path,
.game-info svg path,
.rising-list svg path {
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.time-select,
.small-select {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 700;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -33px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.hero-dots span:first-child {
    width: 18px;
    border-radius: 99px;
    background: var(--green);
}

.panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        radial-gradient(circle at 85% 0, rgba(18, 242, 125, .07), transparent 35%),
        var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.live-pulse {
    align-self: stretch;
    min-height: 368px;
    max-height: 368px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 18px 19px 14px;
}

.panel-head h2,
.panel-title-row h2 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    color: var(--green);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.panel-head p,
.panel-title-row p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.pulse-items {
    min-height: 0;
    display: grid;
    gap: 0;
    margin-top: 12px;
    border-top: 1px solid var(--line);
}

.live-pulse .pulse-items {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 242, 125, .55) rgba(255, 255, 255, .06);
}

.live-pulse .pulse-items::-webkit-scrollbar {
    width: 5px;
}

.live-pulse .pulse-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 99px;
}

.live-pulse .pulse-items::-webkit-scrollbar-thumb {
    background: rgba(18, 242, 125, .55);
    border-radius: 99px;
}

.pulse-item {
    min-height: 68px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 54px;
    gap: 10px;
    align-items: start;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.pulse-item.signal-row,
.detail-row.signal-row {
    color: inherit;
}

.detail-row.signal-row {
    align-items: start;
}

.pulse-item.signal-row:hover,
.detail-row.signal-row:hover {
    border-color: rgba(18, 242, 125, .34);
    background: rgba(18, 242, 125, .055);
}

.pulse-item .provider-logo,
.detail-row .provider-logo {
    width: 32px;
    height: 32px;
    font-size: 9px;
    align-self: start;
}

.detail-row .provider-logo {
    width: 36px;
    height: 36px;
}

.pulse-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    align-self: start;
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.pulse-icon.br {
    background: linear-gradient(135deg, #7e37ff, #26d84d);
}

.pulse-icon.green {
    background: linear-gradient(135deg, #50e57d, #149d57);
}

.pulse-icon.gold {
    background: linear-gradient(135deg, #ffb019, #bc5b00);
}

.pulse-icon.purple {
    background: linear-gradient(135deg, #bd60ff, #6827c8);
}

.pulse-icon.yellow {
    background: linear-gradient(135deg, #ffe454, #f2b600);
}

.pulse-icon.gray {
    background: linear-gradient(135deg, #607080, #2c3741);
}

.pulse-icon svg {
    width: 20px;
    height: 20px;
}

.pulse-icon span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    font-size: 7px;
}

.pulse-item p {
    color: #f1f5f7;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.22;
}

.signal-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.pulse-item p.signal-copy,
.detail-row p.signal-copy {
    margin: 0;
    color: #f4f7f8;
    font-size: 13px;
    font-weight: 720;
    line-height: 1.25;
}

.signal-copy strong {
    min-width: 0;
    color: #f4f7f8;
    font-size: inherit;
    font-weight: 760;
    line-height: 1.25;
}

.signal-title-link {
    color: inherit;
}

.signal-title-link:hover {
    color: var(--green);
}

.signal-copy span:not(.signal-badge) {
    min-width: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 560;
    line-height: 1.3;
}

.signal-action-stack {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.signal-action-stack .evidence-button {
    margin-top: 0;
}

.signal-actions {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
}

.signal-link-pill {
    min-width: 0;
    max-width: 190px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(181, 190, 199, .26);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: #dce6ed;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.signal-link-pill:hover {
    border-color: rgba(18, 242, 125, .5);
    background: rgba(18, 242, 125, .1);
    color: var(--green);
}

.signal-badge {
    width: fit-content;
    display: inline-grid;
    place-items: center;
    margin: 0;
    padding: 2px 6px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    background: rgba(255, 255, 255, .065);
    color: #d6dde5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.signal-badge.new-entry {
    border-color: rgba(18, 242, 125, .35);
    background: rgba(18, 242, 125, .13);
    color: var(--green);
}

.signal-badge.featured-placement {
    border-color: rgba(182, 111, 255, .35);
    background: rgba(182, 111, 255, .13);
    color: #d8b6ff;
}

.signal-badge.provider-signal {
    border-color: rgba(190, 138, 255, .32);
    background: rgba(124, 77, 255, .14);
    color: #d2c0ff;
}

.signal-badge.category-shift,
.signal-badge.market-signal {
    border-color: rgba(255, 207, 89, .35);
    background: rgba(255, 207, 89, .12);
    color: #ffd56b;
}

.signal-badge.high-movement {
    border-color: rgba(255, 139, 76, .4);
    background: rgba(255, 139, 76, .14);
    color: #ffb184;
}

.signal-badge.operator-change {
    border-color: rgba(77, 214, 255, .32);
    background: rgba(77, 214, 255, .12);
    color: #9ce7ff;
}

.signal-badge.info {
    border-color: rgba(181, 190, 199, .24);
    background: rgba(181, 190, 199, .08);
    color: #c5cdd5;
}

.pulse-item time {
    color: #b5bec7;
    font-size: 12px;
    text-align: right;
    padding-top: 2px;
}

.signal-meta {
    min-width: 0;
    display: grid;
    gap: 6px;
    justify-items: end;
    align-self: start;
}

.signal-meta time {
    display: block;
}

.signal-meta .signal-actions {
    justify-content: end;
    margin-top: 0;
}

.live-pulse .pulse-item {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 62px;
    padding-block: 8px;
}

.live-pulse .pulse-item .signal-copy strong,
.live-pulse .pulse-item .signal-copy span:not(.signal-badge) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.live-pulse .pulse-item .signal-copy strong {
    -webkit-line-clamp: 2;
    line-height: 1.18;
}

.live-pulse .pulse-item .signal-copy span:not(.signal-badge) {
    -webkit-line-clamp: 1;
    line-height: 1.2;
}

.live-pulse .pulse-item .signal-badge {
    font-size: 7px;
    padding: 2px 5px;
}

.live-pulse .pulse-item time {
    white-space: nowrap;
}

.live-pulse .signal-link-pill {
    height: 23px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-pulse .wide-button {
    flex: 0 0 auto;
}

.wide-button {
    width: 100%;
    height: 35px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 720;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 26px 0 12px;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    font-size: 20px;
}

.panel-head h2 > span,
.panel-title-row h2 > span,
.section-heading h2 > span {
    white-space: nowrap;
}

.section-heading p {
    color: var(--muted);
    font-size: 13px;
}

.lobby-heading {
    width: calc(100% - 222px);
}

.section-heading svg,
.panel-title-row svg {
    width: 16px;
    height: 16px;
    color: #7f8d99;
}

.info-tip {
    position: relative;
    z-index: 5;
    width: 16px;
    height: 16px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(153, 190, 207, .34);
    border-radius: 50%;
    background: rgba(2, 8, 12, .52);
    color: #b9c8d1;
    cursor: help;
    vertical-align: middle;
}

.info-tip:hover,
.info-tip:focus-visible,
.info-tip.is-open {
    border-color: rgba(18, 242, 125, .5);
    color: var(--green);
    outline: none;
}

.info-tip svg {
    width: 11px;
    height: 11px;
}

.info-tip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 9px);
    left: 50%;
    width: min(245px, calc(100vw - 34px));
    padding: 9px 10px;
    border: 1px solid rgba(18, 242, 125, .22);
    border-radius: 8px;
    background: rgba(4, 14, 18, .98);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .42);
    color: #dce6eb;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition: opacity .16s ease, transform .16s ease;
}

.info-tip::before {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    width: 9px;
    height: 9px;
    border-left: 1px solid rgba(18, 242, 125, .22);
    border-top: 1px solid rgba(18, 242, 125, .22);
    background: rgba(4, 14, 18, .98);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px) rotate(45deg);
    transition: opacity .16s ease, transform .16s ease;
}

.info-tip:hover::after,
.info-tip:hover::before,
.info-tip:focus-visible::after,
.info-tip:focus-visible::before,
.info-tip.is-open::after,
.info-tip.is-open::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.info-tip:hover::before,
.info-tip:focus-visible::before,
.info-tip.is-open::before {
    transform: translate(-50%, 0) rotate(45deg);
}

.panel-head .info-tip,
.panel-title-row .info-tip,
.section-heading .info-tip {
    margin-left: 1px;
}

.metric-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.detail-metric .metric-label,
.seo-metric .metric-label {
    margin-top: 7px;
}

.detail-metric .metric-label span,
.seo-metric .metric-label span {
    margin-top: 0;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.section-actions a {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    font-weight: 750;
}

.section-actions a[aria-expanded="true"] {
    background: rgba(18, 242, 125, .12);
    color: var(--green);
}

.section-actions button {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 206px;
    gap: 16px;
    align-items: start;
}

.dashboard-primary {
    min-width: 0;
}

.game-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.game-row.is-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
    overflow: visible;
}

.game-row::-webkit-scrollbar {
    display: none;
}

.game-card {
    position: relative;
    flex: 0 0 clamp(178px, 15.4vw, 232px);
    min-height: 224px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: #091217;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 242, 125, .34);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.game-row.is-expanded .game-card {
    flex: none;
}

.game-card img {
    display: none;
}

.game-card::after,
.game-card > * {
    display: none;
}

.game-card:nth-child(1),
.game-card:nth-child(2),
.game-card:nth-child(3),
.game-card:nth-child(4),
.game-card:nth-child(5),
.game-card:nth-child(6) {
    background-image: var(--neutral-game-image);
}

.rank {
    position: absolute;
    z-index: 4;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e7f3fb;
    color: #10202a;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .28);
}

.rank.hot {
    background: var(--yellow);
}

.rank.hot-orange {
    background: var(--orange);
}

.rank.dark {
    background: rgba(28, 38, 48, .92);
    color: #fff;
}

.tag {
    top: 13px;
    right: 14px;
    min-height: 23px;
    padding: 0 9px;
    border-radius: 5px;
    font-size: 10px;
}

.card-menu {
    top: 9px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.game-info {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 13px 13px;
}

.game-info h3 {
    margin-bottom: 3px;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-info p {
    margin-bottom: 12px;
    color: #b8c2ca;
    font-size: 13px;
}

.game-info div {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
}

.game-info svg {
    width: 92px;
    height: 28px;
}

.game-info strong {
    color: var(--green);
    font-size: 16px;
}

.insight-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.08fr) minmax(260px, .95fr) minmax(330px, 1.22fr);
    gap: 16px;
    margin-top: 19px;
}

.heatmap-card,
.rising-card,
.volatility-card,
.provider-panel {
    min-width: 0;
    min-height: 244px;
    padding: 16px;
}

.panel-title-row {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.panel-title-row > div {
    min-width: 0;
}

.insight-grid .panel-title-row h2,
.provider-panel .panel-title-row h2 {
    min-width: 0;
    flex-wrap: nowrap;
    gap: 5px;
    font-size: 14px;
    line-height: 1.16;
}

.insight-grid .panel-title-row h2 > span,
.provider-panel .panel-title-row h2 > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: normal;
    white-space: nowrap;
}

.panel-title-row p {
    max-width: 100%;
    overflow-wrap: break-word;
}

.map-visual {
    position: relative;
    height: 138px;
    margin-top: 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 48% 58%, rgba(18, 242, 125, .12), transparent 34%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='150' viewBox='0 0 360 150'%3E%3Cdefs%3E%3Cpattern id='dots' width='5' height='5' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='1.1' cy='1.1' r='1.05' fill='%237ca293'/%3E%3C/pattern%3E%3Cmask id='world'%3E%3Cg fill='white'%3E%3Cpath d='M38 42l18-14 33 5 20 17-9 16 14 13-8 18-22 2-12 20-18-5-4-22-19-11 5-18-12-8zM96 84l19 8 4 21-8 26-16-2-9-24 5-16zM151 42l23-8 31 7 13 17-14 12-27-4-8 14-23-9 4-15zM179 82l31-2 18 18-5 33-26 4-18-25-15-13zM215 43l49-16 41 11 31 28-22 12-28-6-17 13 8 16-35 10-16-19-24-4 19-20zM292 105l31 7 12 17-28 9-23-11z'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Crect width='360' height='150' fill='url(%23dots)' opacity='.62' mask='url(%23world)'/%3E%3Cg fill='%2388b9aa' opacity='.38'%3E%3Ccircle cx='28' cy='86' r='2'/%3E%3Ccircle cx='95' cy='30' r='2'/%3E%3Ccircle cx='143' cy='109' r='2'/%3E%3Ccircle cx='226' cy='33' r='2'/%3E%3Ccircle cx='318' cy='98' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.map-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(18, 242, 125, .05) 50%, transparent),
        radial-gradient(circle at 50% 52%, transparent 0 56%, rgba(2, 8, 12, .16) 72%);
}

.heatmap-point {
    position: absolute;
    left: calc(var(--x) * 1%);
    top: calc(var(--y) * 1%);
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--green);
    box-shadow: 0 0 12px rgba(18, 242, 125, .95);
}

.heatmap-point::before,
.heatmap-point::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.heatmap-point::before {
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, rgba(18, 242, 125, .34), rgba(18, 242, 125, .08) 52%, transparent 72%);
}

.heatmap-point::after {
    width: 19px;
    height: 19px;
    border: 1px solid rgba(18, 242, 125, .58);
}

.heatmap-point-2 {
    background: #f4bf00;
    box-shadow: 0 0 12px rgba(244, 191, 0, .85);
}

.heatmap-point-2::before {
    background: radial-gradient(circle, rgba(244, 191, 0, .28), rgba(244, 191, 0, .08) 52%, transparent 72%);
}

.heatmap-point-2::after {
    border-color: rgba(244, 191, 0, .55);
}

.heatmap-point-3 {
    background: #8b98a5;
    box-shadow: 0 0 10px rgba(139, 152, 165, .72);
}

.heatmap-point-3::before {
    background: radial-gradient(circle, rgba(139, 152, 165, .22), rgba(139, 152, 165, .06) 52%, transparent 72%);
}

.heatmap-point-3::after {
    border-color: rgba(139, 152, 165, .48);
}

.legend {
    display: grid;
    min-width: 0;
    justify-content: stretch;
    grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    gap: 4px 12px;
    margin-top: -18px;
    color: #d5dde2;
    font-size: 12px;
}

.legend > span,
.volatility-legend > span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.legend > span > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.green-dot,
.yellow-dot,
.gray-dot,
.red-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    flex: 0 0 10px;
    border-radius: 50%;
}

.green-dot {
    background: var(--green);
}

.yellow-dot {
    background: #f4bf00;
}

.gray-dot {
    background: #8b98a5;
}

.red-dot {
    background: var(--red);
}

.rising-list {
    display: grid;
    gap: 12px;
}

.rising-list div,
.rising-list a {
    display: grid;
    grid-template-columns: 20px 34px minmax(0, 1fr) 52px 52px;
    gap: 8px;
    align-items: center;
}

.rising-list strong {
    font-size: 15px;
}

.rising-list img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
}

.rising-thumb-empty {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .035);
    background-position: center;
    background-size: cover;
}

.rising-list p {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rising-list p span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 550;
}

.rising-list b {
    color: var(--green);
    font-size: 14px;
    text-align: right;
}

.rising-list svg {
    width: 52px;
}

.volatility-card {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(108px, 136px);
    gap: 12px;
}

.volatility-card .panel-title-row {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.radar-chart {
    position: relative;
    width: min(204px, 100%);
    aspect-ratio: 1;
    align-self: center;
    justify-self: center;
    border-radius: 50%;
    background:
        linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)) 50% 0 / 1px 100% no-repeat,
        linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.12)) 0 50% / 100% 1px no-repeat,
        repeating-radial-gradient(circle, transparent 0 21px, rgba(132, 166, 153, .22) 22px 23px),
        conic-gradient(from -90deg, rgba(255,49,61,.28) 0 95deg, rgba(255,211,34,.26) 95deg 190deg, rgba(18,242,125,.20) 190deg 285deg, transparent 285deg 360deg);
}

.radar-chart::after {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    border: 2px solid rgba(18, 242, 125, .8);
    border-top-color: rgba(255, 211, 34, .8);
    border-right-color: rgba(255, 49, 61, .9);
    transform: rotate(25deg);
}

.volatility-legend {
    align-self: center;
    display: grid;
    min-width: 0;
    gap: 16px;
    color: #e2e8ed;
}

.volatility-legend > span {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
}

.volatility-legend > span > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.volatility-legend b {
    margin-left: 0;
    color: #fff;
}

.provider-panel {
    grid-row: span 1;
    min-height: 488px;
    margin-top: -58px;
}

.provider-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.provider-list div,
.provider-list a {
    display: grid;
    grid-template-columns: 18px 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.provider-list a {
    border-radius: 10px;
    transition: color .18s ease, transform .18s ease;
}

.provider-list a:hover {
    color: var(--green);
    transform: translateX(2px);
}

.provider-list strong {
    color: #c6d0d8;
    font-weight: 650;
}

.provider-logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    font-weight: 950;
    overflow: hidden;
}

.provider-logo-image {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .055);
}

.provider-logo-image img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.provider-logo-image .logo-fallback {
    grid-area: 1 / 1;
    display: none;
    place-items: center;
    color: var(--green);
    font-size: 9px;
}

.provider-logo-image.has-logo-error .logo-fallback {
    display: grid;
}

.provider-logo.orange {
    color: #ff9f23;
    border: 2px solid rgba(255, 159, 35, .3);
}

.provider-logo.black {
    background: #050607;
    color: #fff;
    font-size: 24px;
}

.provider-logo.yellow {
    background: #111;
    color: #ffe100;
    font-size: 26px;
}

.provider-logo.red {
    color: #ff3030;
    font-style: italic;
}

.provider-logo.dots {
    background:
        radial-gradient(circle at 30% 30%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 70% 30%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 30% 70%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 70% 70%, #fff 0 4px, transparent 5px),
        #111;
}

.provider-list p {
    min-width: 0;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.16;
}

.provider-list p span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 550;
    white-space: normal;
}

.provider-panel .panel-title-row h2 {
    font-size: 14px;
    white-space: nowrap;
}

.provider-list p {
    white-space: nowrap;
}

.bottom-nav {
    display: none;
}

.sp-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.sp-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sp-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 5, 8, .72);
    backdrop-filter: blur(12px);
}

.sp-modal-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(760px, 86vh);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background:
        radial-gradient(circle at 90% 0, rgba(18, 242, 125, .10), transparent 32%),
        rgba(8, 22, 27, .98);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .56);
}

.sp-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--line);
}

.sp-modal-head .kicker {
    margin-bottom: 8px;
}

.sp-modal-head h2 {
    font-size: 24px;
}

.sp-modal-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.sp-modal-body {
    max-height: calc(min(760px, 86vh) - 94px);
    overflow-y: auto;
    padding: 14px 20px 20px;
    color-scheme: dark;
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 242, 125, .62) rgba(255, 255, 255, .06);
}

.sp-modal-body::-webkit-scrollbar {
    width: 8px;
}

.sp-modal-body::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.sp-modal-body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18, 242, 125, .92), rgba(18, 242, 125, .30));
}

.sp-modal-body::-webkit-scrollbar-corner {
    background: transparent;
}

.detail-list {
    display: grid;
    gap: 10px;
}

.detail-row {
    min-height: 64px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}

.provider-detail-list .detail-row {
    grid-template-columns: 24px 42px minmax(0, 1fr) auto;
}

.detail-row p {
    min-width: 0;
    color: #f4f7f8;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.25;
}

.detail-row p span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 560;
}

.detail-row p.signal-copy {
    gap: 5px;
}

.detail-row p.signal-copy span {
    margin-top: 0;
}

.detail-row p.signal-copy .signal-badge {
    display: inline-grid;
    font-size: 9px;
}

.evidence-button {
    width: fit-content;
    height: 30px;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 242, 125, .38);
    border-radius: 8px;
    background: rgba(18, 242, 125, .11);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.evidence-button:hover {
    border-color: rgba(18, 242, 125, .70);
    background: rgba(18, 242, 125, .18);
}

.evidence-button--compact {
    height: 23px;
    margin-top: 0;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-pulse .evidence-button--compact {
    justify-self: end;
}

.detail-row b {
    color: var(--green);
    font-size: 14px;
}

.detail-row time {
    color: var(--muted);
    font-size: 12px;
    padding-top: 4px;
}

.signal-detail-list + .load-more {
    width: 100%;
    margin-top: 12px;
}

.empty-state {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
}

.sp-modal[data-panel-kind="slot-detail-panel"] .sp-modal-card,
.sp-modal[data-panel-kind="page-panel"] .sp-modal-card,
.sp-modal[data-panel-kind="search-panel"] .sp-modal-card,
.sp-modal[data-panel-kind="account-panel"] .sp-modal-card {
    width: min(980px, 100%);
}

.sp-modal[data-panel-kind="auth-panel"] .sp-modal-card {
    width: min(560px, 100%);
}

.sp-modal[data-panel-kind="evidence-panel"] .sp-modal-card {
    width: min(1120px, 100%);
}

.sp-modal[data-panel-kind="evidence-panel"] .sp-modal-body {
    padding: 16px 20px 22px;
}

.sp-modal[data-panel-kind="auth-panel"] .sp-modal-body {
    padding: 18px 20px 22px;
}

.evidence-view {
    display: grid;
    gap: 16px;
}

.evidence-summary {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid rgba(18, 242, 125, .22);
    border-radius: 10px;
    background:
        radial-gradient(circle at 92% 0, rgba(18, 242, 125, .10), transparent 34%),
        rgba(255, 255, 255, .035);
}

.evidence-summary h3 {
    color: #f8fbfc;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.1;
}

.evidence-summary p {
    max-width: 760px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.evidence-media {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.evidence-media figure {
    min-width: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.evidence-media figure > span {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.evidence-crop img,
.evidence-shot-frame {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(0, 0, 0, .25);
}

.evidence-crop img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    display: block;
}

.evidence-shot-frame {
    max-height: 560px;
    overflow: auto;
    color-scheme: dark;
}

.evidence-shot-canvas {
    position: relative;
    width: 100%;
    min-width: 100%;
}

.evidence-shot-canvas img {
    width: 100%;
    height: auto;
    display: block;
}

.evidence-highlight {
    position: absolute;
    z-index: 2;
    min-width: 18px;
    min-height: 18px;
    border: 3px solid var(--green);
    border-radius: 9px;
    box-shadow:
        0 0 0 9999px rgba(0, 0, 0, .28),
        0 0 26px rgba(18, 242, 125, .78);
    pointer-events: none;
}

.evidence-highlight em {
    position: absolute;
    left: -3px;
    top: -31px;
    min-width: max-content;
    padding: 6px 8px;
    border-radius: 7px;
    background: rgba(1, 14, 13, .92);
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    letter-spacing: .06em;
}

.evidence-meta {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.evidence-meta span {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 9px;
    background: rgba(255, 255, 255, .035);
}

.evidence-meta small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.evidence-meta strong {
    display: block;
    overflow: hidden;
    color: #f4f7f8;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.evidence-open {
    justify-self: start;
    width: fit-content;
}

.slot-detail {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: stretch;
}

.slot-hero {
    min-height: 318px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-color: #091217;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 -110px 80px rgba(0, 0, 0, .46);
}

.slot-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slot-copy h3,
.account-card h3 {
    font-size: 32px;
    line-height: 1.05;
}

.slot-copy p,
.account-card p,
.detail-section p {
    color: var(--muted);
}

.detail-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.detail-metric {
    min-height: 78px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(18, 242, 125, .12);
    border-radius: 10px;
    background: rgba(18, 242, 125, .055);
}

.detail-metric strong {
    color: var(--green);
    font-size: 22px;
}

.detail-metric span {
    color: var(--muted);
    font-size: 12px;
}

.slot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compact {
    min-width: auto;
    height: 42px;
    padding: 0 16px;
    border-radius: 9px;
    font-size: 14px;
}

.detail-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.detail-section h3,
.search-results h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.modal-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.modal-game-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.modal-game-card:hover {
    border-color: rgba(18, 242, 125, .34);
    background: rgba(18, 242, 125, .06);
}

.modal-game-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
}

.modal-game-card strong,
.modal-game-card small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-game-card small {
    margin-top: 3px;
    color: var(--muted);
}

.modal-game-card b {
    color: var(--green);
}

.search-panel {
    display: grid;
    gap: 18px;
}

.search-modal-field {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255, 255, 255, .045);
}

.search-modal-field svg {
    width: 21px;
    height: 21px;
    color: var(--muted);
}

.search-modal-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.search-status {
    color: var(--muted);
    font-size: 13px;
}

.search-results {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 18px;
}

.search-slots {
    grid-row: span 2;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.auth-intro {
    padding: 14px 15px;
    border: 1px solid rgba(18, 242, 125, .14);
    border-radius: 12px;
    background:
        radial-gradient(circle at 96% 0, rgba(18, 242, 125, .16), transparent 40%),
        rgba(18, 242, 125, .055);
    color: #d7e5eb;
    font-size: 14px;
    line-height: 1.35;
}

.auth-form label,
.auth-field {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.auth-form label span,
.auth-field > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5dc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-form input,
.auth-form select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    color: var(--text);
    outline: 0;
}

.auth-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(203, 213, 220, .86) 50%),
        linear-gradient(135deg, rgba(203, 213, 220, .86) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: rgba(18, 242, 125, .46);
    box-shadow: 0 0 0 3px rgba(18, 242, 125, .10);
}

.auth-select-field {
    position: relative;
    z-index: 3;
}

.auth-select-field.is-open {
    z-index: 12;
}

.auth-select-trigger {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    color: var(--text);
    cursor: pointer;
    outline: 0;
}

.auth-select-trigger:focus,
.auth-select-field.is-open .auth-select-trigger {
    border-color: rgba(18, 242, 125, .56);
    box-shadow: 0 0 0 3px rgba(18, 242, 125, .12);
}

.auth-select-trigger strong {
    min-width: 0;
    overflow: hidden;
    color: #9ca8b0;
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-select-trigger.has-value strong {
    color: var(--text);
    font-weight: 750;
}

.auth-select-trigger i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid #aebbc4;
    border-bottom: 2px solid #aebbc4;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
}

.auth-select-field.is-open .auth-select-trigger i {
    transform: rotate(225deg) translate(-2px, -1px);
}

.auth-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    max-height: min(300px, 42vh);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(74, 112, 132, .72);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(7, 20, 24, .98), rgba(4, 31, 24, .98));
    box-shadow: 0 24px 48px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity .16s ease, transform .16s ease;
}

.auth-select-field.is-open .auth-select-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.auth-select-menu button {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: #dce8ee;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.auth-select-menu button:hover,
.auth-select-menu button:focus {
    border-color: rgba(18, 242, 125, .24);
    background: rgba(18, 242, 125, .08);
    outline: 0;
}

.auth-select-menu button[aria-selected="true"] {
    border-color: rgba(18, 242, 125, .48);
    background: rgba(18, 242, 125, .14);
    color: #f5fff9;
}

.auth-form input[readonly] {
    color: #aebdc7;
    background: rgba(255, 255, 255, .035);
}

.auth-form .primary-cta {
    width: 100%;
    margin-top: 2px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, .08);
}

.auth-social-row {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.google-button-frame {
    width: min(300px, 100%);
    height: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 20px;
    border: 1px solid rgba(74, 112, 132, .64);
    border-radius: 999px;
    background: #060b0d;
    color: #f6fbff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
    cursor: wait;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, opacity .16s ease;
}

.google-button-frame.is-ready {
    cursor: pointer;
    opacity: 1;
}

.google-button-frame:hover:not(:disabled),
.google-button-frame:focus-visible:not(:disabled) {
    border-color: rgba(18, 242, 125, .58);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .30), 0 0 0 3px rgba(18, 242, 125, .10);
    outline: 0;
    transform: translateY(-1px);
}

.google-button-frame img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.google-button-frame span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.google-button-frame.has-error {
    border-color: rgba(255, 111, 111, .42);
}

.form-message {
    padding: 11px 12px;
    border: 1px solid rgba(18, 242, 125, .20);
    border-radius: 9px;
    background: rgba(18, 242, 125, .07);
    color: #d8ffe9;
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

button:disabled {
    cursor: wait;
    opacity: .7;
}

.primary-cta.is-saved {
    background: linear-gradient(135deg, rgba(18, 242, 125, .24), rgba(18, 242, 125, .08));
    border: 1px solid rgba(18, 242, 125, .45);
    color: var(--green);
    box-shadow: none;
}

.account-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(18, 242, 125, .12);
    border-radius: 12px;
    background: rgba(18, 242, 125, .055);
}

.seo-page {
    min-height: 100vh;
}

.seo-page .copyright {
    margin-top: auto;
}

.seo-main {
    min-height: 100vh;
}

.seo-app-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
}

.seo-header-nav {
    justify-self: center;
    display: flex;
    gap: 10px;
}

.seo-header-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(20, 34, 42, .82), rgba(7, 15, 20, .82));
    color: #d5dde4;
    font-size: 13px;
    font-weight: 850;
}

.seo-header-nav a:hover {
    border-color: rgba(18, 242, 125, .35);
    color: var(--green);
}

.seo-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 16px clamp(18px, 4vw, 54px);
    border-bottom: 1px solid var(--line);
    background: rgba(1, 8, 11, .82);
    backdrop-filter: blur(18px);
}

.seo-brand img {
    width: 154px;
}

.seo-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #c8d4dd;
    font-size: 13px;
    font-weight: 800;
}

.seo-nav a,
.seo-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}

.seo-nav a:hover,
.seo-cta:hover {
    border-color: rgba(18, 242, 125, .35);
    color: var(--green);
}

.seo-cta {
    background: var(--green);
    color: #00140a;
    font-weight: 900;
}

.seo-shell {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 64px;
}

.seo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.seo-breadcrumbs a:hover,
.seo-panel a:hover,
.seo-section-head a:hover {
    color: var(--green);
}

.seo-hero-detail,
.seo-list-hero {
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 72% 18%, rgba(18, 242, 125, .16), transparent 30%),
        linear-gradient(135deg, rgba(8, 23, 28, .96), rgba(3, 12, 15, .92));
    box-shadow: var(--shadow);
}

.seo-hero-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
    padding: clamp(18px, 3vw, 34px);
}

.seo-list-hero {
    padding: clamp(22px, 4vw, 44px);
}

.seo-hero-copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

.seo-hero-copy h1,
.seo-list-hero h1,
.seo-empty-page h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .95;
}

.seo-hero-copy p,
.seo-list-hero p,
.seo-empty-page p {
    max-width: 760px;
    color: #c7d1d9;
    font-size: 17px;
}

.seo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-hero-art {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background-color: #111b21;
    background-image: var(--neutral-game-image);
    background-position: center;
    background-size: cover;
}

.seo-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .72));
}

.seo-hero-art > * {
    position: relative;
    z-index: 1;
}

.seo-hero-art span {
    width: max-content;
    padding: 8px 12px;
    border-radius: 9px;
    background: rgba(1, 10, 12, .68);
    color: var(--green);
    font-weight: 950;
    text-transform: uppercase;
}

.seo-hero-art strong {
    color: var(--green);
    font-size: 42px;
}

.seo-provider-hero {
    min-height: 320px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: radial-gradient(circle at 50% 35%, rgba(18, 242, 125, .18), transparent 34%), rgba(255, 255, 255, .035);
}

.seo-provider-hero .seo-provider-logo {
    width: 112px;
    height: 112px;
    font-size: 40px;
}

.seo-provider-hero strong {
    font-size: 54px;
    color: var(--green);
}

.seo-provider-hero span {
    color: var(--muted);
    font-weight: 900;
}

.seo-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.seo-metric {
    padding: 16px;
    border: 1px solid rgba(18, 242, 125, .14);
    border-radius: 12px;
    background: rgba(7, 29, 24, .58);
}

.seo-metric strong,
.seo-metric span {
    display: block;
}

.seo-metric strong {
    color: var(--green);
    font-size: 24px;
    line-height: 1;
}

.seo-metric span {
    margin-top: 7px;
    color: #cbd5dc;
    font-size: 12px;
}

.seo-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.seo-panel {
    min-height: 260px;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 22px;
}

.seo-panel h2,
.seo-section-head h2 {
    color: #fff;
    font-size: 24px;
}

.seo-panel p {
    margin-top: 8px;
    color: var(--muted);
}

.casino-overview-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: start;
}

.casino-overview-grid + .seo-section {
    margin-top: 36px;
}

.casino-provider-panel {
    min-height: 336px;
}

.casino-provider-panel .seo-provider-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-height: none;
    margin-top: 14px;
    padding-right: 0;
    overflow: visible;
}

.casino-provider-panel .seo-provider-tile {
    min-height: 58px;
    grid-template-columns: 24px 40px minmax(0, 1fr) auto;
    padding: 10px 12px;
}

.casino-provider-panel .seo-provider-logo {
    width: 40px;
    height: 40px;
}

.seo-inline-links {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.seo-inline-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}

.seo-inline-links a:hover {
    border-color: rgba(18, 242, 125, .34);
    background: rgba(18, 242, 125, .06);
}

.seo-inline-links span {
    color: var(--muted);
    font-size: 12px;
    text-align: right;
}

.seo-spark {
    width: 100%;
    height: 110px;
    margin-top: 22px;
}

.seo-spark path {
    fill: none;
    stroke: var(--green);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seo-history-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.seo-history-list span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
}

.seo-section {
    margin-top: 24px;
}

.seo-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.seo-section-head a {
    color: var(--muted);
    font-weight: 900;
}

.seo-card-grid,
.seo-provider-grid {
    display: grid;
    gap: 12px;
}

.seo-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.seo-provider-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.seo-card-grid.compact,
.seo-provider-grid.compact {
    grid-template-columns: 1fr;
}

.seo-game-tile,
.seo-provider-tile,
.seo-casino-tile,
.seo-observation-tile {
    min-width: 0;
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.seo-game-tile {
    grid-template-columns: 72px minmax(0, 1fr) minmax(78px, auto);
    grid-template-areas:
        "thumb copy action"
        "thumb score action";
    row-gap: 3px;
}

.seo-provider-tile,
.seo-casino-tile {
    grid-template-columns: 26px 48px minmax(0, 1fr) auto;
}

.seo-game-tile:hover,
.seo-provider-tile:hover,
.seo-casino-tile:hover,
.seo-observation-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 242, 125, .34);
    background: rgba(18, 242, 125, .06);
}

.seo-game-image {
    grid-area: thumb;
    width: 72px;
    height: 72px;
    display: block;
    border-radius: 10px;
    background-color: #0d171d;
    background-image: var(--neutral-game-image);
    background-position: center;
    background-size: cover;
}

.seo-game-copy {
    grid-area: copy;
}

.seo-game-tile > b {
    grid-area: score;
    justify-self: start;
}

.seo-game-tile > .seo-watch-button {
    grid-area: action;
    align-self: center;
    justify-self: end;
}

.seo-game-tile strong,
.seo-game-tile small,
.seo-game-copy,
.seo-provider-tile b,
.seo-provider-tile small,
.seo-casino-tile b,
.seo-casino-tile small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seo-game-tile small,
.seo-provider-tile small,
.seo-casino-tile small {
    margin-top: 4px;
    color: var(--muted);
}

.seo-game-tile b,
.seo-provider-tile em,
.seo-casino-tile em {
    color: var(--green);
    font-style: normal;
    font-weight: 950;
}

.seo-observation-grid,
.seo-provider-breakdown {
    display: grid;
    gap: 12px;
}

.seo-provider-breakdown {
    grid-template-columns: 1fr;
    align-items: start;
}

.casino-provider-breakdown-list {
    gap: 10px;
}

.casino-provider-group {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        radial-gradient(circle at 76% 0, rgba(18, 242, 125, .08), transparent 32%),
        rgba(255, 255, 255, .035);
}

.casino-provider-group-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.casino-provider-group-head h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
}

.casino-provider-group-head p {
    margin-top: 5px;
    color: var(--muted);
}

.casino-provider-group-head > span {
    min-width: 38px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(18, 242, 125, .10);
    color: var(--green);
    font-weight: 950;
}

.casino-provider-mini-games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 8px;
}

.casino-provider-mini-game {
    min-width: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(9, 20, 25, .72);
}

.casino-provider-mini-game:hover {
    border-color: rgba(18, 242, 125, .34);
    background: rgba(18, 242, 125, .06);
}

.casino-provider-mini-thumb {
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 8px;
    background-color: #0d171d;
    background-image: var(--neutral-game-image);
    background-position: center;
    background-size: cover;
}

.casino-provider-mini-game strong,
.casino-provider-mini-game small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.casino-provider-mini-game strong {
    color: #fff;
    font-size: 13px;
}

.casino-provider-mini-game small {
    margin-top: 3px;
    color: var(--green);
    font-size: 12px;
    font-weight: 850;
}

.casino-provider-more {
    min-height: 62px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(153, 190, 207, .22);
    border-radius: 10px;
    color: var(--muted);
    font-weight: 900;
}

.seo-provider-breakdown .seo-panel {
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    padding: 18px;
    overflow: visible;
}

.seo-provider-breakdown .seo-panel h2 {
    font-size: 22px;
}

.seo-provider-breakdown .seo-card-grid.compact {
    margin-top: 12px;
    max-height: none;
    padding-right: 0;
    overflow: visible;
}

.seo-provider-breakdown .seo-game-tile {
    grid-template-columns: 56px minmax(0, 1fr) minmax(76px, auto);
    grid-template-areas:
        "thumb copy action"
        "thumb score action";
    min-height: 72px;
    padding: 10px 12px;
}

.seo-provider-breakdown .seo-game-image {
    width: 56px;
    height: 56px;
}

.seo-observation-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.seo-observation-tile {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.seo-observation-tile strong,
.seo-observation-tile .seo-observation-copy,
.seo-observation-tile small,
.seo-observation-tile em {
    display: block;
}

.seo-observation-tile .seo-observation-copy {
    min-width: 0;
    color: inherit;
}

.seo-observation-tile small,
.seo-observation-tile em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seo-observation-tile b {
    color: var(--green);
}

.seo-evidence-link {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(18, 242, 125, .32);
    border-radius: 8px;
    background: rgba(18, 242, 125, .12);
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
}

.seo-evidence-link:hover {
    border-color: rgba(18, 242, 125, .54);
    background: rgba(18, 242, 125, .18);
    color: #fff;
}

.seo-watch-button {
    min-width: 76px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(18, 242, 125, .32);
    border-radius: 8px;
    background: rgba(18, 242, 125, .12);
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.seo-watch-button.is-saved {
    border-color: rgba(255, 77, 91, .34);
    background: rgba(255, 77, 91, .12);
    color: #ff6b76;
}

.seo-provider-logo {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #081014;
    color: var(--green);
    font-weight: 950;
}

.seo-provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.seo-empty-page {
    min-height: 58vh;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 5vw, 70px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 23, 28, .78);
}

body.modal-open {
    overflow: hidden;
}

.desktop-only {
    display: block;
}

.pulse-item.desktop-only {
    display: grid;
}

.wide-button.desktop-only {
    display: flex;
}

[data-icon] svg,
svg[data-drawn] {
    display: block;
}

@media (max-width: 1420px) {
    .hero-grid {
        grid-template-columns: minmax(330px, .9fr) minmax(360px, 500px);
        gap: 34px;
    }

    .live-pulse {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .pulse-items {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        border-top: 0;
    }

    .pulse-item {
        min-height: 92px;
        grid-template-columns: 36px minmax(0, 1fr);
        align-content: start;
        border: 1px solid var(--line);
        border-radius: 9px;
        padding: 10px;
    }

    .pulse-item time {
        grid-column: 2;
        text-align: left;
        padding-top: 0;
    }

    .pulse-item .signal-meta {
        grid-column: 2;
        justify-items: start;
    }

    .pulse-item .signal-meta .signal-actions {
        justify-content: start;
    }

    .evidence-media {
        grid-template-columns: 1fr;
    }

    .evidence-crop img {
        max-height: 220px;
    }

    .evidence-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lobby-heading {
        width: 100%;
    }

    .provider-panel {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .volatility-card {
        display: block;
    }

    .radar-chart {
        margin: 8px auto 10px;
    }

    .volatility-legend {
        gap: 7px;
    }

    .provider-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .app-shell {
        display: block;
    }

    .sidebar {
        display: none;
    }

    .main {
        grid-column: auto;
        width: 100%;
        max-width: none;
        padding: 0 24px 112px;
    }

    .topbar {
        grid-template-columns: 1fr auto;
    }

    .mobile-brand {
        display: block;
    }

.mobile-brand img {
        width: 266px;
        height: auto;
    }

    .desktop-search,
    .trending-button {
        display: none;
    }

    .mobile-search-button {
        display: grid;
    }

    .icon-only {
        width: 58px;
        height: 58px;
        place-items: center;
        border-radius: 20px;
    }

    .search.mobile-search {
        grid-column: 1 / -1;
        display: flex;
        width: 100%;
        height: 58px;
        border-radius: 20px;
    }

    .top-actions {
        gap: 15px;
    }

    .pill-button {
        height: 58px;
        border-radius: 20px;
        font-size: 18px;
    }

    .sign-in {
        height: 58px;
        min-width: 126px;
        border-radius: 18px;
        font-size: 18px;
    }

    .hero-grid {
        display: block;
        min-height: 0;
        padding-top: 25px;
    }

    .hero-grid::before {
        inset: 0 -24px 170px;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy p {
        max-width: 460px;
        font-size: 19px;
    }

    .quick-stats {
        display: none;
    }

    .radar-ghost {
        position: absolute;
        top: 252px;
        right: -8px;
        width: 330px;
        height: 240px;
        display: block;
        overflow: hidden;
        opacity: .85;
        pointer-events: none;
    }

    .radar-ghost span {
        position: absolute;
        top: 0;
        right: -80px;
        width: 270px;
        height: 270px;
        border-radius: 50%;
        background:
            radial-gradient(circle, var(--green) 0 9px, rgba(18, 242, 125, .24) 10px 21px, transparent 22px),
            linear-gradient(140deg, transparent 0 49%, var(--green) 50% 51%, transparent 52%),
            repeating-radial-gradient(circle, transparent 0 46px, rgba(18, 242, 125, .21) 47px 49px),
            linear-gradient(rgba(18, 242, 125, .13), rgba(18, 242, 125, .13)) 50% 0 / 1px 100% no-repeat,
            linear-gradient(90deg, rgba(18, 242, 125, .13), rgba(18, 242, 125, .13)) 0 50% / 100% 1px no-repeat;
        filter: drop-shadow(0 0 26px rgba(18, 242, 125, .42));
    }

    .feature-card {
        height: 350px;
        margin-top: 18px;
        border-radius: 20px;
        background-image: var(--neutral-game-image);
    }

    .feature-menu {
        display: grid;
    }

    .hero-dots {
        display: none;
    }

    .live-pulse {
        margin-top: 14px;
        border-radius: 16px;
    }

    .pulse-items {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .pulse-item {
        min-height: 55px;
        grid-template-columns: 50px minmax(0, 1fr) 70px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: 0;
    }

    .pulse-item time {
        grid-column: auto;
        text-align: right;
    }

    .pulse-item .signal-meta {
        grid-column: auto;
        justify-items: end;
    }

    .pulse-item .signal-meta .signal-actions {
        justify-content: end;
    }

    .pulse-item time::after {
        content: "";
        width: 10px;
        height: 10px;
        display: inline-block;
        margin-left: 12px;
        border-radius: 50%;
        background: var(--green);
    }

    .desktop-only {
        display: none !important;
    }

    .lobby-heading {
        margin-top: 18px;
        text-transform: uppercase;
    }

    .lobby-heading h2,
    .panel-title-row h2 {
        color: #fff;
        font-size: 18px;
    }

    .lobby-heading p,
    .section-actions button {
        display: none;
    }

    .section-actions a {
        min-height: 0;
        padding: 0;
        background: transparent;
        color: #c7d0d8;
        font-size: 16px;
    }

    .dashboard-grid {
        display: block;
    }

    .game-row {
        display: flex;
        gap: 12px;
        margin: 0 -24px;
        padding: 0 24px 4px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .game-row::-webkit-scrollbar {
        display: none;
    }

    .game-row.is-expanded {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .game-card {
        flex: 0 0 222px;
        min-height: 248px;
        border-radius: 13px;
        scroll-snap-align: start;
    }

    .game-row.is-expanded .game-card {
        flex: none;
    }

    .game-card:nth-child(1),
    .game-card:nth-child(2),
    .game-card:nth-child(3),
    .game-card:nth-child(4) {
        background-image: var(--neutral-game-image);
    }

    .insight-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(236px, 1fr));
        gap: 12px;
        overflow-x: auto;
        margin: 16px -24px 0;
        padding: 0 24px 4px;
    }

    .insight-grid::-webkit-scrollbar {
        display: none;
    }

    .slot-detail,
    .search-results {
        grid-template-columns: 1fr;
    }

    .detail-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modal-game-grid {
        grid-template-columns: 1fr;
    }

    .provider-panel {
        display: none;
    }

    .heatmap-card,
    .rising-card,
    .volatility-card {
        min-height: 268px;
        border-radius: 13px;
    }

    .volatility-card {
        display: block;
    }

    .radar-chart {
        width: 180px;
        margin: 6px auto 10px;
    }

    .volatility-legend {
        gap: 7px;
    }

    .new-heading {
        display: none;
    }

    .bottom-nav {
        position: fixed;
        left: 46px;
        right: 46px;
        bottom: 22px;
        z-index: 30;
        height: 84px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        padding: 5px;
        border: 1px solid var(--line-strong);
        border-radius: 21px;
        background: rgba(10, 19, 23, .92);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .48);
    }

    .bottom-nav a {
        height: 72px;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 5px;
        border-radius: 18px;
        color: #9fa8b2;
        font-size: 15px;
    }

    .bottom-nav a.active {
        background: rgba(255, 255, 255, .045);
        color: var(--green);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
    }

    .bottom-nav svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 900px) {
    html,
    body,
    .app-shell {
        background:
            radial-gradient(circle at 62% 18%, rgba(18, 242, 125, .13), transparent 28%),
            linear-gradient(180deg, #000406 0, #030b0f 56%, #061216 100%);
    }

    .main {
        padding: 0 38px 120px;
    }

    .topbar {
        position: relative;
        top: auto;
        padding: 14px 0 0;
        background: transparent;
        backdrop-filter: none;
    }

    .mobile-brand img {
        width: 268px;
    }

    .top-actions {
        gap: 14px;
    }

    .icon-only {
        width: 58px;
        height: 58px;
    }

    .language-button {
        min-width: 132px;
    }

    .sign-in {
        min-width: 126px;
    }

    .mobile-search {
        margin-top: 18px;
    }

    .hero-grid {
        padding-top: 26px;
    }

    .kicker {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .hero-copy h1 {
        max-width: 540px;
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 1.08;
    }

    .hero-copy p {
        max-width: 460px;
        margin-bottom: 17px;
        font-size: 20px;
        line-height: 1.34;
    }

    .hero-actions {
        gap: 12px;
        margin-bottom: 18px;
    }

    .primary-cta,
    .secondary-cta {
        height: 49px;
        border-radius: 12px;
        font-size: 19px;
    }

    .primary-cta {
        min-width: 244px;
        justify-content: center;
    }

    .secondary-cta {
        min-width: 218px;
        justify-content: center;
    }

    .radar-ghost {
        top: 244px;
        right: -9px;
    }

    .feature-card {
        height: 350px;
        margin: 17px -7px 0;
    }

    .feature-badge {
        top: 17px;
        left: 24px;
        min-height: 43px;
        border-radius: 11px;
        font-size: 18px;
    }

    .feature-provider {
        bottom: 87px;
        font-size: 19px;
    }

    .feature-title {
        left: 24px;
        right: 24px;
        bottom: 121px;
        font-size: 21px;
    }

    .feature-bottom {
        left: 28px;
        right: 20px;
        bottom: 16px;
        grid-template-columns: 186px minmax(170px, 1fr) auto;
        align-items: end;
    }

    .feature-bottom span {
        font-size: 15px;
    }

    .feature-bottom strong {
        font-size: 26px;
    }

    .time-select {
        height: 42px;
        min-width: 132px;
        justify-content: center;
        border-radius: 12px;
        font-size: 18px;
    }

    .live-pulse {
        margin: 14px -7px 0;
        padding: 19px 24px 13px;
    }

    .panel-head h2 {
        font-size: 18px;
    }

    .pulse-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .pulse-item p {
        font-size: 18px;
        line-height: 1.24;
    }

    .pulse-item p.signal-copy {
        font-size: 15px;
    }

    .pulse-item p.signal-copy span:not(.signal-badge) {
        font-size: 12px;
    }

    .pulse-item time {
        font-size: 15px;
    }

    .section-heading {
        margin: 22px 7px 13px;
    }

    .lobby-heading h2 {
        font-size: 19px;
    }

    .game-row {
        margin-left: 0;
        margin-right: -38px;
        padding-left: 0;
        padding-right: 38px;
    }

    .game-card {
        flex-basis: 222px;
    }

    .insight-grid {
        margin-left: 0;
        margin-right: -38px;
        padding-left: 0;
        padding-right: 38px;
    }

    .heatmap-card,
    .rising-card,
    .volatility-card {
        width: 277px;
    }

    .map-visual {
        height: 125px;
    }

    .rising-list div,
    .rising-list a {
        grid-template-columns: 18px 38px minmax(0, 1fr) 52px;
    }

    .rising-list svg {
        display: none;
    }

    .bottom-nav {
        left: 46px;
        right: 46px;
        bottom: 22px;
    }
}

@media (max-width: 560px) {
    .main {
        padding-inline: 12px;
    }

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 8px;
        row-gap: 10px;
        padding-top: 6px;
    }

    .top-actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
        width: auto;
        gap: 7px;
    }

    .mobile-brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .mobile-brand img {
        width: min(150px, 44vw);
    }

    .top-actions {
        margin-left: 0;
    }

    .icon-only,
    .language-button,
    .sign-in {
        height: 42px;
        border-radius: 13px;
    }

    .icon-only {
        width: 42px;
    }

    .language-button {
        min-width: 72px;
        padding-inline: 8px;
        font-size: 13px;
    }

    .sign-in {
        min-width: 62px;
        font-size: 12px;
    }

    .search.mobile-search {
        height: 38px;
        border-radius: 12px;
    }

    .search.mobile-search input {
        font-size: 12px;
    }

    .mobile-search {
        margin-top: 0;
    }

    .hero-grid {
        padding-top: 14px;
    }

    .kicker {
        min-height: 22px;
        margin-bottom: 8px;
        padding: 0 8px;
        font-size: 10px;
    }

    .hero-copy h1 {
        margin-bottom: 8px;
        font-size: 27px;
    }

    .hero-copy p {
        margin-bottom: 12px;
        font-size: 12.5px;
        line-height: 1.22;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .primary-cta,
    .secondary-cta {
        height: 40px;
        min-width: 0;
        width: 100%;
        justify-content: center;
        padding: 0 10px;
        border-radius: 9px;
        font-size: 12px;
        white-space: nowrap;
    }

    .feature-card {
        height: clamp(180px, calc((100vw - 24px) * .45), 235px);
        margin-inline: 0;
        margin-top: 10px;
    }

    .feature-bottom {
        grid-template-columns: 1fr auto;
    }

    .feature-line {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .live-pulse {
        margin-inline: 0;
        padding: 14px 18px 10px;
    }

    .panel-head h2 {
        font-size: 15px;
    }

    .panel-head p {
        font-size: 11px;
    }

    .pulse-item {
        min-height: 82px;
        grid-template-columns: 38px minmax(0, 1fr) 52px;
    }

    .pulse-icon {
        width: 34px;
        height: 34px;
    }

    .pulse-item p {
        font-size: 13px;
        line-height: 1.12;
    }

    .pulse-item p.signal-copy {
        font-size: 12px;
        line-height: 1.18;
    }

    .pulse-item p.signal-copy span:not(.signal-badge) {
        font-size: 10.5px;
    }

    .pulse-item time {
        font-size: 11px;
    }

    .sp-modal[data-panel-kind="evidence-panel"] .sp-modal-body {
        padding: 12px;
    }

    .evidence-summary {
        padding: 12px;
    }

    .evidence-shot-frame {
        max-height: 430px;
    }

    .evidence-meta {
        grid-template-columns: 1fr;
    }

    .evidence-highlight {
        border-width: 2px;
        border-radius: 7px;
    }

    .evidence-highlight em {
        top: -27px;
        font-size: 8px;
    }

    .game-row,
    .insight-grid {
        margin-right: -12px;
        padding-right: 12px;
    }

    .bottom-nav {
        left: 12px;
        right: 12px;
        bottom: 12px;
        height: 58px;
        border-radius: 14px;
    }

    .bottom-nav a {
        height: 48px;
        border-radius: 11px;
        font-size: 11px;
    }

    .bottom-nav svg {
        width: 20px;
        height: 20px;
    }
}

body.has-live-data .feature-card > :not(img) {
    display: block;
}

body.has-live-data .feature-card .feature-vignette {
    display: block;
}

body.has-live-data .feature-card .feature-badge {
    display: inline-flex;
}

body.has-live-data .feature-card .slider-control {
    display: grid;
}

body.has-live-data .feature-card .feature-provider {
    display: flex;
}

body.has-live-data .feature-card .feature-title {
    display: -webkit-box;
}

body.has-live-data .feature-card .feature-bottom {
    display: grid;
}

body.has-live-data .feature-card .hero-dots {
    display: flex;
}

body.has-live-data .game-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .03) 0 42%, rgba(1, 7, 10, .72) 76%, rgba(1, 7, 10, .95) 100%);
    pointer-events: none;
}

body.has-live-data .game-card {
    background-image: none;
}

body.has-live-data .game-card img {
    display: none !important;
}

body.has-live-data .game-card .rank {
    display: grid;
}

body.has-live-data .game-card .tag {
    display: inline-flex;
}

body.has-live-data .game-card .game-info {
    display: block;
}

body.has-live-data .game-card .game-info div {
    display: flex;
}

body.has-live-data .rising-list img {
    display: block;
}

body.has-live-data .live-status {
    color: var(--green);
}

@media (max-width: 1080px) {
    body.has-live-data .feature-card .hero-dots {
        display: none;
    }
}

@media (max-width: 820px) {
    .seo-topbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 14px 16px;
    }

    .seo-app-topbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .seo-app-topbar .mobile-brand {
        display: block;
    }

    .seo-header-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .seo-header-nav a {
        white-space: nowrap;
    }

    .seo-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .seo-brand img {
        width: 144px;
    }

    .seo-shell {
        width: min(100% - 24px, 680px);
        padding-top: 20px;
    }

    .seo-hero-detail,
    .seo-grid-two {
        grid-template-columns: 1fr;
    }

    .seo-hero-copy h1,
    .seo-list-hero h1,
    .seo-empty-page h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .seo-hero-art,
    .seo-provider-hero {
        min-height: 280px;
    }

    .seo-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-card-grid,
    .seo-provider-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        min-width: 0;
    }

    .main {
        padding: 0 12px 92px;
    }

    .topbar {
        width: 100%;
        overflow: visible;
    }

    .mobile-brand img {
        width: min(132px, 38vw);
    }

    .top-actions {
        min-width: 0;
        gap: 6px;
    }

    .language-button {
        min-width: 58px;
    }

    .language-options {
        width: 156px;
        right: 0;
    }

    .language-button svg:last-child {
        display: none;
    }

    .sign-in {
        min-width: 0;
        max-width: 82px;
        padding: 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-copy h1 {
        font-size: clamp(27px, 8.5vw, 34px);
        line-height: 1.05;
    }

    .hero-copy p {
        max-width: 31rem;
    }

    .feature-title {
        left: 16px;
        right: 16px;
        bottom: 82px;
        font-size: 17px;
        line-height: 1.08;
    }

    .feature-provider {
        bottom: 61px;
        font-size: 13px;
    }

    .feature-bottom {
        left: 16px;
        right: 12px;
        bottom: 10px;
        gap: 6px;
    }

    .feature-bottom strong {
        font-size: 22px;
    }

    .time-select {
        min-width: 64px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
    }

    .game-row.is-expanded {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-template-columns: 1fr;
        margin: 14px 0 0;
        padding: 0;
        overflow: visible;
    }

    .heatmap-card,
    .rising-card,
    .volatility-card {
        width: auto;
        min-height: 0;
    }

    .panel-title-row {
        gap: 8px;
    }

    .map-visual {
        height: 118px;
        margin-top: 6px;
    }

    .legend {
        justify-content: start;
        grid-template-columns: 1fr;
        margin-top: 8px;
        font-size: 11px;
    }

    .rising-list div,
    .rising-list a {
        grid-template-columns: 18px 38px minmax(0, 1fr) auto;
    }

    .seo-shell {
        width: 100%;
        padding: 14px 12px 92px;
    }

    .seo-breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 14px;
        padding-bottom: 4px;
    }

    .seo-hero-detail,
    .seo-list-hero {
        border-radius: 14px;
    }

    .seo-hero-detail {
        gap: 14px;
        padding: 16px;
    }

    .seo-hero-copy {
        gap: 12px;
    }

    .seo-hero-copy h1,
    .seo-list-hero h1,
    .seo-empty-page h1 {
        font-size: clamp(30px, 12vw, 42px);
        line-height: 1;
    }

    .seo-hero-copy p,
    .seo-list-hero p,
    .seo-empty-page p {
        font-size: 14px;
        line-height: 1.35;
    }

    .seo-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .seo-actions > * {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .seo-provider-hero,
    .seo-hero-art {
        min-height: 190px;
    }

    .seo-provider-hero .seo-provider-logo {
        width: 78px;
        height: 78px;
        font-size: 28px;
    }

    .seo-provider-hero strong {
        font-size: 42px;
    }

    .seo-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 12px 0;
    }

    .seo-metric {
        padding: 12px;
    }

    .seo-metric strong {
        font-size: 20px;
    }

    .seo-grid-two,
    .casino-overview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .seo-panel {
        min-height: 0;
        padding: 16px;
    }

    .seo-panel h2,
    .seo-section-head h2 {
        font-size: 21px;
    }

    .seo-section-head {
        align-items: center;
        gap: 12px;
    }

    .seo-card-grid,
    .seo-provider-grid,
    .casino-provider-panel .seo-provider-grid.compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seo-game-tile {
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px;
    }

    .seo-game-image {
        width: 56px;
        height: 56px;
    }

    .seo-watch-button {
        min-width: 64px;
        min-height: 34px;
        padding: 0 10px;
    }

    .casino-provider-group {
        padding: 12px;
    }

    .casino-provider-group-head {
        gap: 10px;
        margin-bottom: 10px;
    }

    .casino-provider-group-head h3 {
        font-size: 18px;
    }

    .casino-provider-group-head p {
        font-size: 13px;
        line-height: 1.3;
    }

    .casino-provider-mini-games {
        grid-template-columns: 1fr;
    }

    .casino-provider-mini-game {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .casino-provider-mini-thumb {
        width: 40px;
        height: 40px;
    }
}
