/* ============================================
   Современный дизайн + анимации, быстрая загрузка
   Без сборки — только CSS и CDN (Animate.css)
   ============================================ */

/* --- text text text --- */
:root {
    --app-primary: #0d6efd;
    --app-primary-dark: #0a58ca;
    --app-bg: #f8fafc;
    --app-card-bg: #fff;
    --app-text: #1e293b;
    --app-text-muted: #64748b;
    --app-heading: #102a43;
    --app-border: #e2e8f0;
    --app-radius: 0.5rem;
    --app-radius-lg: 0.75rem;
    --app-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --app-shadow-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --app-transition: 0.2s ease;
    --app-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* --- text text --- */
html {
    overflow-x: hidden;
}
body {
    font-family: var(--app-font);
    background-color: var(--app-bg);
    color: var(--app-text);
    overflow-x: hidden;
    max-width: 100%;
}

.root-surface-page {
    background-color: #f8fbff;
}

.root-surface-main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.root-surface-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 1120px;
    transform: translateX(-50%);
    background-image:
        linear-gradient(180deg, rgba(248, 250, 255, 0.1) 0%, rgba(248, 250, 255, 0.52) 42%, rgba(248, 250, 255, 0.9) 78%, #f8fbff 100%),
        url("/images/root-pages-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    opacity: 0.98;
}

.root-surface-main > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .root-surface-main::before {
        height: 840px;
        background-size: auto 100%;
    }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--app-heading);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-wrap: balance;
}

h1, .h1 {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

h2, .h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

h3, .h3 {
    font-size: clamp(1.3rem, 1.7vw, 1.55rem);
}

h4, .h4 {
    font-size: clamp(1.15rem, 1.3vw, 1.3rem);
}

h5, .h5,
h6, .h6 {
    line-height: 1.18;
}

/* --- Breadcrumbs: unified site-wide style (same as casino review) --- */
.casino-breadcrumbs-nav,
nav[aria-label="breadcrumb"] {
    background: transparent;
    border: 0;
    width: auto;
    margin: 0 0 1.75rem;
    padding: 0;
    box-shadow: none;
}
.casino-breadcrumbs,
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.35;
    color: #64748b;
}
.casino-breadcrumbs .breadcrumb-item,
.casino-breadcrumbs .breadcrumb-item.active,
.breadcrumb-item,
.breadcrumb-item.active {
    display: inline-flex;
    align-items: center;
    color: #64748b;
}
.casino-breadcrumbs .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #cbd5e1;
    padding-right: 0.62rem;
}
.casino-breadcrumbs__link,
.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
}
.casino-breadcrumbs__link:hover,
.breadcrumb-item a:hover {
    color: #0f172a;
    text-decoration: none;
}
@media (max-width: 991.98px) {
    .casino-breadcrumbs-nav,
    nav[aria-label="breadcrumb"] {
        margin-bottom: 1.35rem;
    }
    .casino-breadcrumbs,
    .breadcrumb {
        font-size: 0.88rem;
    }
}

/* --- text: text hover text text --- */
.card {
    border-radius: var(--app-radius-lg);
    border: 1px solid var(--app-border);
    box-shadow: var(--app-shadow);
    transition: transform var(--app-transition), box-shadow var(--app-transition);
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--app-shadow-hover);
}

/* --- text --- */
.btn {
    border-radius: var(--app-radius);
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(0);
}

/* --- text: text text, text text text --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    flex-shrink: 0;
}
.site-navbar {
    background: #08152d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 30px rgba(2, 8, 23, 0.28);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    overflow: visible;
}
.navbar {
    position: relative;
    overflow: visible;
}
@media (min-width: 992px) {
    .site-navbar > .container {
        max-width: min(1500px, 96vw);
    }
    .site-navbar .navbar-collapse {
        overflow: visible;
    }
    .site-navbar__menu,
    .site-navbar__actions {
        flex-wrap: nowrap !important;
    }
}
.site-navbar .navbar-brand.site-navbar__brand {
    display: inline-flex;
    align-items: center;
    margin-right: 1.5rem;
}
.site-navbar__brand-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 100%;
}
.site-navbar__menu,
.site-navbar__actions {
    align-items: center;
    gap: 0.2rem;
}
.site-navbar .nav-link {
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 0.75rem !important;
    border-radius: 0.7rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.site-navbar .nav-link.active,
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.site-navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.18em;
    opacity: 0.7;
}
.site-navbar .dropdown-menu {
    background: #0b1933;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 0.45rem;
    box-shadow: 0 22px 44px rgba(2, 8, 23, 0.42);
}
.site-navbar .dropdown-item {
    color: #e2e8f0;
    font-size: 0.9rem;
    border-radius: 0.65rem;
    padding: 0.6rem 0.75rem;
}
.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}
@media (min-width: 992px) {
    .site-navbar .navbar-nav > .nav-item.dropdown {
        padding-bottom: 0.7rem;
        margin-bottom: -0.7rem;
    }

    .site-navbar .navbar-nav > .nav-item.dropdown > .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -0.7rem;
        height: 0.7rem;
    }

    .site-navbar .navbar-nav > .nav-item.dropdown:not(.dropdown-mega) > .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(0.35rem);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    }

    .site-navbar .navbar-nav > .nav-item.dropdown:not(.dropdown-mega):hover > .dropdown-menu,
    .site-navbar .navbar-nav > .nav-item.dropdown:not(.dropdown-mega):focus-within > .dropdown-menu,
    .site-navbar .navbar-nav > .nav-item.dropdown:not(.dropdown-mega) > .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-navbar .dropdown-mega > .dropdown-menu.mega-menu-dropdown {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.24s ease, visibility 0.24s ease;
    }

    .site-navbar .dropdown-mega:hover > .dropdown-menu.mega-menu-dropdown,
    .site-navbar .dropdown-mega:focus-within > .dropdown-menu.mega-menu-dropdown,
    .site-navbar .dropdown-mega > .dropdown-menu.mega-menu-dropdown.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .site-navbar .dropdown-mega .nav-link.dropdown-toggle.show,
    .site-navbar .dropdown-mega .nav-link.dropdown-toggle.active {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 -2px 0 #1fd15d;
    }

    .site-navbar .mega-menu-dropdown {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        min-width: 100% !important;
        max-width: none !important;
        transform: none !important;
        margin-top: 0 !important;
        top: calc(100% - 1px) !important;
        background: #0b1933 !important;
        z-index: 1080;
    }

    .site-navbar .mega-menu-dropdown__item {
        white-space: normal;
        min-height: 100%;
    }
}
@media (max-width: 991.98px) {
    .site-navbar {
        position: sticky;
        top: 0;
        z-index: 1300;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }
    .site-navbar > .container {
        min-height: 3.55rem;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .site-navbar__mobile-backdrop {
        position: fixed;
        inset: 0;
        display: block;
        border: 0;
        padding: 0;
        background: rgba(2, 8, 23, 0.48);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 1280;
    }
    .site-navbar .navbar-collapse.show ~ .site-navbar__mobile-backdrop,
    .site-navbar .navbar-collapse.collapsing ~ .site-navbar__mobile-backdrop {
        opacity: 1;
        visibility: visible;
    }
    .site-navbar__brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
        z-index: 2;
    }

    .site-navbar__brand-logo {
        height: 34px;
        width: auto;
    }
    .site-navbar__mobile-menu-toggle {
        position: absolute;
        left: 0.6rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        margin: 0;
        width: 2.85rem;
        height: 2.85rem;
        padding: 0;
        border: 0;
        border-radius: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
            rgba(5, 12, 24, 0.66);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(2, 8, 23, 0.18);
        transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }
    .site-navbar__mobile-menu-toggle:hover,
    .site-navbar__mobile-menu-toggle:focus-visible {
        background:
            linear-gradient(180deg, rgba(31, 209, 93, 0.13) 0%, rgba(31, 209, 93, 0.04) 100%),
            rgba(5, 12, 24, 0.82);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 0.16rem rgba(31, 209, 93, 0.14);
    }
    .site-navbar__mobile-menu-toggle:focus {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 0.16rem rgba(31, 209, 93, 0.14);
    }
    .site-navbar__mobile-menu-lines {
        width: 1.2rem;
        display: inline-flex;
        flex-direction: column;
        gap: 0.28rem;
    }
    .site-navbar__mobile-menu-lines span {
        display: block;
        height: 2px;
        border-radius: 999px;
        background: #f8fafc;
        box-shadow: 0 0 10px rgba(31, 209, 93, 0.18);
    }
    .site-navbar__mobile-menu-lines span:nth-child(2) {
        width: 0.85rem;
    }
    .site-navbar__mobile-menu-lines span:nth-child(3) {
        width: 1.05rem;
    }
    .site-navbar__mobile-search-wrap {
        position: absolute;
        right: 0.6rem;
        top: 0.35rem;
        transform: none;
        z-index: 3;
    }
    .site-navbar__mobile-search-btn {
        width: 2.75rem;
        height: 2.75rem;
        border: 0;
        border-radius: 0.55rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: #fff;
    }
    .site-navbar__mobile-search-btn:hover,
    .site-navbar__mobile-search-btn:focus-visible {
        background: rgba(255, 255, 255, 0.08);
    }
    .site-navbar__mobile-search-btn .site-navbar__search-icon {
        width: 1.45rem;
        height: 1.45rem;
    }

    .site-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        display: block !important;
        width: min(20rem, 84vw);
        height: 100vh;
        height: 100dvh;
        margin-top: 0;
        padding: 5.25rem 1rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
        border-radius: 0 1.25rem 1.25rem 0;
        background: rgba(5, 12, 24, 0.97);
        box-shadow: 18px 0 48px rgba(2, 8, 23, 0.34);
        overflow-y: auto;
        transform: translateX(-105%);
        visibility: hidden;
        transition: transform 0.28s ease, visibility 0.28s ease;
        z-index: 1290;
    }
    .site-navbar .navbar-collapse.show,
    .site-navbar .navbar-collapse.collapsing {
        transform: translateX(0);
        visibility: visible;
    }
    .site-navbar .navbar-collapse.collapsing {
        height: 100vh !important;
        height: 100dvh !important;
    }
    .site-navbar__mobile-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2.4rem;
        height: 2.4rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 0.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font-size: 0;
        line-height: 0;
    }
    .site-navbar__mobile-close span {
        display: block;
        font-size: 1.65rem;
        line-height: 1;
        transform: translateY(-1px);
    }
    .site-navbar__mobile-close:hover,
    .site-navbar__mobile-close:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        outline: none;
    }

    .site-navbar__menu,
    .site-navbar__actions {
        align-items: stretch;
        gap: 0.15rem;
    }

    .site-navbar .mega-menu-dropdown,
    .site-navbar .dropdown-menu {
        position: static !important;
        width: 100%;
        max-width: 100%;
        margin-top: 0.45rem;
        box-shadow: none !important;
        padding: 0.65rem;
        border: 1px solid rgba(31, 209, 93, 0.12);
        border-radius: 0.95rem;
        background:
            linear-gradient(180deg, rgba(18, 35, 68, 0.96) 0%, rgba(10, 24, 48, 0.98) 100%) !important;
    }

    .site-navbar .mega-menu-dropdown .container {
        padding-left: 0;
        padding-right: 0;
    }
    .site-navbar .mega-menu-dropdown .row {
        --bs-gutter-x: 0.45rem;
        --bs-gutter-y: 0.45rem;
        display: grid;
        grid-template-columns: 1fr;
    }
    .site-navbar .mega-menu-dropdown .col {
        width: 100%;
        max-width: none;
    }
    .site-navbar .dropdown-item,
    .site-navbar .mega-menu-dropdown__item {
        border-radius: 0.65rem;
        padding: 0.65rem 0.75rem;
        white-space: normal;
    }
    .site-navbar__actions .site-navbar__search-wrap {
        display: none;
    }
    .site-navbar .site-navbar__search-panel--mobile {
        position: fixed;
        top: 4.1rem;
        left: max(0.75rem, env(safe-area-inset-left));
        right: max(0.75rem, env(safe-area-inset-right));
        width: auto;
        max-width: none;
        z-index: 1310;
    }
}
@media (min-width: 992px) {
    .site-navbar__mobile-search-wrap,
    .site-navbar__mobile-backdrop,
    .site-navbar__mobile-close {
        display: none;
    }
}
.site-navbar__country-wrap {
    gap: 0.35rem;
    margin-left: 0.5rem;
    position: relative;
}
.site-navbar__globe-icon {
    width: 1rem;
    height: 1rem;
    display: block;
    color: rgba(241, 245, 249, 0.88);
    flex-shrink: 0;
}
.site-navbar__country-label {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.site-navbar__country-dropdown {
    position: relative;
}
.site-navbar__country-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(31, 209, 93, 0.5);
    background: #0b1324;
    color: #f8fafc;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    min-width: 10.5rem;
    max-width: 12rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}
.site-navbar__country-trigger:hover {
    border-color: rgba(31, 209, 93, 0.75);
}
.site-navbar__country-trigger:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(31, 209, 93, 0.2);
}
.site-navbar__country-trigger-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-navbar__country-caret {
    margin-left: auto;
    color: rgba(241, 245, 249, 0.8);
    font-size: 0.8rem;
}
.site-navbar__country-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    width: min(17rem, 86vw);
    background: #0b1933;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.9rem;
    box-shadow: 0 16px 38px rgba(2, 8, 23, 0.45);
    padding: 0.55rem;
    z-index: 1210;
}
.site-navbar__country-search-wrap {
    margin-bottom: 0.45rem;
}
.site-navbar__country-search {
    background: #09111f;
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.14);
}
.site-navbar__country-search::placeholder {
    color: #94a3b8;
}
.site-navbar__country-search:focus,
.site-navbar__country-search:active {
    background: #09111f;
    color: #f8fafc;
    border-color: rgba(60, 130, 247, 0.65);
    box-shadow: 0 0 0 0.16rem rgba(60, 130, 247, 0.2);
}
.site-navbar__country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 18rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #36537a #0b1933;
}
.site-navbar__country-list::-webkit-scrollbar {
    width: 10px;
}
.site-navbar__country-list::-webkit-scrollbar-track {
    background: #0b1933;
    border-radius: 999px;
}
.site-navbar__country-list::-webkit-scrollbar-thumb {
    background: #36537a;
    border-radius: 999px;
    border: 2px solid #0b1933;
}
.site-navbar__country-list::-webkit-scrollbar-thumb:hover {
    background: #486892;
}
.site-navbar__country-item {
    width: 100%;
    border: 0;
    background: transparent;
    color: #f1f5f9;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.95rem;
    text-align: left;
}
.site-navbar__country-item-left {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.site-navbar__country-item-left > span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-navbar__country-item:hover,
.site-navbar__country-item:focus-visible,
.site-navbar__country-item.is-active {
    background: #1460ce;
    color: #fff;
    outline: none;
}
.site-navbar__country-check {
    visibility: hidden;
    color: #fff;
    font-weight: 700;
}
.site-navbar__country-item.is-active .site-navbar__country-check {
    visibility: visible;
}
.site-navbar__country-flag {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.site-navbar__country-all-globe {
    display: inline-flex;
    width: 18px;
    height: 14px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.site-navbar__country-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}
.site-navbar__search-wrap {
    position: relative;
}
.site-navbar__search-btn {
    border: 0;
    background: transparent;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    padding: 0 !important;
    margin: 0 0 0 0.15rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 999px;
    color: #fff;
}
.site-navbar__search-btn:hover,
.site-navbar__search-btn:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}
.site-navbar__search-icon {
    width: 1rem;
    height: 1rem;
    display: block;
    flex-shrink: 0;
    overflow: visible;
}
.site-navbar__search-submit {
    min-width: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.site-navbar__search-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: min(28rem, 92vw);
    padding: 0.65rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b1933;
    box-shadow: 0 18px 36px rgba(2, 8, 23, 0.42);
    z-index: 1205;
}
.site-navbar__search-panel .form-control {
    background: #09111f;
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.14);
}
.site-navbar__search-panel .form-control::placeholder {
    color: #94a3b8;
}
.site-navbar__search-panel .btn {
    border-color: rgba(255, 255, 255, 0.16);
    color: #e2e8f0;
}
@media (max-width: 991.98px) {
    .site-navbar .site-navbar__search-panel.site-navbar__search-panel--mobile {
        position: fixed;
        top: 4.15rem;
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        max-width: none;
        transform: none;
        z-index: 1310;
    }
}
.site-navbar__search-results .list-group-item {
    background: #09111f;
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.08);
}
.site-navbar__search-results .list-group-item:hover {
    background: #142440;
}
.site-navbar__login-link,
.site-navbar__login-btn,
.site-navbar__user-name {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: 0;
}
.site-navbar__login-link:hover,
.site-navbar__login-link.active,
.site-navbar__login-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.site-navbar__register-btn {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 0.75rem;
    border: 0;
    background: linear-gradient(180deg, #1fd15d 0%, #15b54f 100%);
    color: #08152d;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(31, 209, 93, 0.24);
}
.site-navbar__register-btn:hover,
.site-navbar__register-btn.active {
    background: linear-gradient(180deg, #28df68 0%, #18bc53 100%);
    color: #08152d;
}
@media (min-width: 992px) and (max-width: 1279.98px) {
    .site-navbar .navbar-brand.site-navbar__brand {
        margin-right: 0.8rem;
    }
    .site-navbar .nav-link {
        font-size: 0.82rem;
        padding: 0.48rem 0.56rem !important;
    }
    .site-navbar__country-wrap {
        margin-left: 0.2rem;
    }
    .site-navbar__country-trigger {
        min-width: 8.8rem;
        max-width: 9.8rem;
        padding: 0.32rem 0.58rem;
        font-size: 0.84rem;
    }
    .site-navbar__register-btn,
    .site-navbar__login-btn,
    .site-navbar__login-link,
    .site-navbar__user-name {
        min-height: 2.2rem;
        padding: 0.4rem 0.58rem;
        font-size: 0.82rem;
    }
    .site-navbar__register-btn {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}
@media (min-width: 992px) and (max-width: 1160px) {
    .site-navbar__user-name {
        display: none;
    }
}
.auth-shell {
    background:
        radial-gradient(circle at top, rgba(31, 209, 93, 0.08), transparent 30%),
        linear-gradient(180deg, #08152d 0%, #0d1a33 100%);
}
.auth-shell--login {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 16%, rgba(190, 255, 227, 0.9) 0%, rgba(235, 254, 246, 0.3) 18%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, rgba(249, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.auth-shell--login::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.96) 100%),
        url("/images/root-pages-bg.png") center top / cover no-repeat;
    opacity: 0.92;
    pointer-events: none;
}
.auth-shell--login::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7%;
    width: min(92vw, 920px);
    height: 210px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 15% 45%, rgba(148, 163, 184, 0.18) 0%, rgba(148, 163, 184, 0) 58%),
        radial-gradient(circle at 85% 45%, rgba(148, 163, 184, 0.18) 0%, rgba(148, 163, 184, 0) 58%);
    opacity: 0.8;
    pointer-events: none;
}
.auth-shell--login > .container {
    position: relative;
    z-index: 1;
}
.auth-card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: rgba(8, 21, 45, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(2, 8, 23, 0.28);
    color: #e2e8f0;
}
.auth-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #1fd15d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.auth-title {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}
.auth-copy {
    margin-bottom: 1.5rem;
    color: #aab7cf;
}
.auth-card--login {
    padding: 1.8rem 2rem 1.25rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    color: #0f172a;
    backdrop-filter: blur(8px);
}
.auth-eyebrow--login {
    margin-bottom: 0.62rem;
    color: #22c55e;
    font-size: 0.92rem;
    letter-spacing: 0;
}
.auth-card--login .auth-title {
    margin-bottom: 0.38rem;
    color: #0f172a;
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.03;
}
.auth-card--login .auth-copy {
    margin-bottom: 1.35rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
}
.auth-alert {
    border-radius: 0.85rem;
}
.auth-label {
    color: #dbe6f4;
    font-weight: 600;
}
.auth-card--login .auth-label {
    color: #111827;
    font-size: 0.97rem;
    font-weight: 700;
}
.auth-field {
    position: relative;
}
.auth-field__icon {
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    pointer-events: none;
}
.auth-field__icon--trailing {
    right: 1rem;
}
.auth-field__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.auth-control {
    min-height: 3rem;
    border-radius: 0.85rem;
    background: #09111f;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}
.auth-card--login .auth-control {
    min-height: 3.15rem;
    border-radius: 0.85rem;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.auth-control--with-trailing-icon {
    padding-right: 2.9rem;
}
.auth-control:focus {
    background: #09111f;
    color: #fff;
    border-color: rgba(31, 209, 93, 0.55);
    box-shadow: 0 0 0 0.18rem rgba(31, 209, 93, 0.14);
}
.auth-card--login .auth-control:focus {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.1);
}
.auth-help,
.auth-check,
.auth-switch {
    color: #9db0c9;
    font-size: 0.92rem;
}
.auth-card--login .auth-check,
.auth-card--login .auth-switch {
    color: #475569;
    font-size: 0.96rem;
}
.auth-card--login .auth-help {
    margin-top: 0.45rem;
    color: #64748b;
    font-size: 0.85rem;
}
.auth-card--login .auth-check {
    margin-bottom: 1.2rem !important;
}
.auth-card--login .auth-check .form-check-input {
    margin-top: 0.18rem;
    border-color: #cbd5e1;
    box-shadow: none;
}
.auth-card--login .auth-check .form-check-input:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}
.auth-card--login .auth-check .form-check-label {
    color: #475569;
    font-weight: 600;
}
.auth-switch {
    margin-top: 1.25rem;
}
.auth-switch a {
    color: #1fd15d;
    font-weight: 600;
    text-decoration: none;
}
.btn-brand {
    min-height: 3rem;
    border: 0;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #1fd15d 0%, #15b54f 100%);
    color: #08152d;
    font-weight: 700;
}
.btn-brand:hover,
.btn-brand:focus-visible {
    color: #08152d;
    background: linear-gradient(180deg, #28df68 0%, #18bc53 100%);
}
.auth-card--login .btn-brand {
    min-height: 3.25rem;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #1fe765 0%, #17c653 100%);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
}
.auth-card--login .btn-brand:hover,
.auth-card--login .btn-brand:focus-visible {
    color: #0f172a;
    background: linear-gradient(180deg, #29ef70 0%, #18cb56 100%);
}
.auth-switch--login {
    margin-top: 1.45rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: flex-start;
    font-weight: 600;
}
.auth-switch--login a {
    color: #22c55e;
    font-weight: 800;
}
@media (max-width: 767.98px) {
    .auth-shell--login {
        min-height: auto;
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
    .auth-card--login {
        padding: 1.45rem 1.2rem 1rem;
    }
    .auth-card--login .auth-title {
        font-size: 2rem;
    }
}
.navbar .nav-link {
    transition: opacity var(--app-transition);
}
.navbar .nav-link:hover {
    opacity: 0.9;
}

/* --- Back to top button --- */
.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: #166534;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(22, 101, 52, 0.35);
    cursor: pointer;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}
.back-to-top:hover {
    background: #15803d;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* text «text», text text text text */
html:not(.js-cookie-consent-done) .back-to-top.is-visible {
    bottom: 5.75rem;
}
@media (min-width: 576px) {
    html:not(.js-cookie-consent-done) .back-to-top.is-visible {
        bottom: 6.25rem;
    }
}

/* --- Cookie consent (text text, text text) --- */
html.js-cookie-consent-done .cookie-consent {
    display: none !important;
}
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    padding: 0.65rem max(0.65rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
    font-family: var(--app-font);
    pointer-events: none;
}
.cookie-consent__inner {
    pointer-events: auto;
    max-width: min(1140px, 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.75rem 0.85rem 0.75rem 0.65rem;
    background: linear-gradient(180deg, #2a3548 0%, #1c2430 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--app-radius-lg);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.35);
    color: #f1f5f9;
}
.cookie-consent__close {
    flex-shrink: 0;
    order: 0;
    width: 2rem;
    height: 2rem;
    margin-left: 0.15rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background var(--app-transition), border-color var(--app-transition);
}
.cookie-consent__close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
}
.cookie-consent__text {
    flex: 1 1 220px;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(248, 250, 252, 0.95);
    order: 1;
}
.cookie-consent__text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent__text a:hover {
    color: #e2e8f0;
}
.cookie-consent__actions {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    order: 2;
    margin-left: auto;
}
.cookie-consent__about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--app-radius);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background var(--app-transition), border-color var(--app-transition);
}
.cookie-consent__about:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff !important;
}
.cookie-consent__accept {
    border: 0;
    border-radius: var(--app-radius);
    padding: 0.5rem 1rem;
    background: #facc15;
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(180, 140, 0, 0.35);
    transition: background var(--app-transition), transform 0.15s ease;
}
.cookie-consent__accept:hover {
    background: #fde047;
    color: #0f172a;
}
.cookie-consent__accept:active {
    transform: translateY(1px);
}
@media (max-width: 575.98px) {
    .cookie-consent__inner {
        padding: 0.65rem 0.6rem;
    }
    .cookie-consent__actions {
        width: 100%;
        margin-left: 0;
        justify-content: stretch;
    }
    .cookie-consent__about,
    .cookie-consent__accept {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* --- text text (GPU-friendly: transform + opacity) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.4s ease forwards;
}

/* text text text text (text text text) */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- text text text text text (text text) --- */
.casino-cards-grid {
    display: grid;
    gap: 0.75rem;
}
.casino-cards-grid--5 {
    grid-template-columns: 1fr;
}
@media (min-width: 576px) {
    .casino-cards-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .casino-cards-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
/* 996-1199: 4 text */
@media (min-width: 996px) {
    .casino-cards-grid--5 { grid-template-columns: repeat(4, 1fr); }
}
/* 1200-1399: 5 text */
@media (min-width: 1200px) {
    .casino-cards-grid--5 { grid-template-columns: repeat(5, 1fr); }
}
/* 1400+: 6 text */
@media (min-width: 1400px) {
    .casino-cards-grid--5 { grid-template-columns: repeat(6, 1fr); }
}
.casino-cards-grid__item {
    min-width: 0;
}

/* --- text text --- */
.casino-card__logo { object-fit: contain; }
.casino-card__logo--sm { width: 48px; height: 48px; object-fit: contain; }
.casino-card__score { font-weight: 700; }
.casino-card__accordion-icon { transition: transform var(--app-transition); display: inline-block; }
.casino-card__accordion-icon--open { transform: rotate(180deg); }

/* --- Home: casino search dropdown --- */
.casino-search { position: relative; }
.casino-search__dropdown {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--app-border);
    border-radius: 0.75rem;
    box-shadow: var(--app-shadow-hover);
    overflow: hidden;
    z-index: 1050;
}
.casino-search__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--app-border);
}
.casino-search__name { min-width: 0; }
.casino-search__mark {
    padding: 0 0.15em;
    border-radius: 0.25rem;
}

/* --- Home hero first screen --- */
.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -1.5rem;
    padding: 2.8rem max(1rem, calc((100vw - 1140px) / 2 + 0.75rem)) 1.55rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.52) 54%, rgba(255, 255, 255, 0.96) 100%),
        url("/images/home-hero-bg.svg") center top / cover no-repeat;
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 36%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.7) 31%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0) 82%);
    pointer-events: none;
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.86) 24%, rgba(255, 255, 255, 0.82) 76%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}
.home-hero > * {
    position: relative;
    z-index: 1;
}
.home-hero__intro {
    max-width: 46rem;
    margin: 0 auto;
}
.home-hero__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.15rem, 5vw, 3.3rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.045em;
}
.home-hero__subtitle {
    margin-top: 0.62rem;
    color: #64748b;
    font-size: 1.03rem;
    line-height: 1.45;
    font-weight: 500;
}
.home-hero__search-shell {
    max-width: 39rem;
    margin: 1.55rem auto 0;
}
.home-hero__searchbar {
    min-height: 3.75rem;
    display: grid;
    grid-template-columns: 1.15rem minmax(0, 1fr) 2.9rem;
    align-items: center;
    gap: 0.9rem;
    padding: 0.48rem 0.5rem 0.48rem 1.2rem;
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.home-hero__search-icon {
    width: 1.15rem;
    height: 1.15rem;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.home-hero__search-input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0;
}
.home-hero__search-input::placeholder {
    color: #6b7280;
    opacity: 1;
}
.home-hero__search-input:focus {
    outline: 0;
}
.home-hero__search-submit {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(180deg, #18a34a 0%, #11933f 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}
.home-hero__search-submit svg {
    width: 1.05rem;
    height: 1.05rem;
}
.home-hero__recommended {
    margin-top: 1.7rem;
}
.home-hero__recommended-head {
    margin-bottom: 0.8rem;
    padding-left: 0.1rem;
}
.home-hero__recommended-title {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    color: #1f2937;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.2;
}
.home-hero__recommended-icon {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.16) 0%, rgba(240, 253, 244, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.1);
}
.home-hero__slider {
    padding-inline: 2.75rem;
}
.home-hero__slider-track {
    padding: 0.2rem 0 0.75rem;
}
.home-hero__slider-item .casino-card-product {
    border-radius: 1rem !important;
    border: 1px solid #e6ecf4 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
}
.home-hero__slider-item .casino-card-product__logo-top {
    border-radius: 1rem 1rem 0 0;
}
.home-hero__slider-item .casino-card-product__logo-top-img {
    height: 92px;
    padding: 0.75rem;
}
.home-hero__slider-item .casino-card-product .card-body {
    padding: 0.82rem 0.8rem 0.88rem;
}
.home-hero__slider-item .casino-card-product__scores {
    min-height: auto;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-bottom: 0.65rem !important;
    padding-inline: 0;
}
.home-hero__slider-item .casino-card-product__score-item {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1 1 0;
}
.home-hero__slider-item .casino-trust-gauge-mini,
.home-hero__slider-item .casino-radar-mini {
    width: 2.75rem;
    height: 2.75rem;
}
.home-hero__slider-item .casino-trust-gauge-mini__value,
.home-hero__slider-item .casino-radar-mini__value {
    font-size: 0.93rem;
}
.home-hero__slider-item .casino-card-product__score-item .small {
    font-size: 0.68rem !important;
    color: #64748b !important;
    line-height: 1.15;
}
.home-hero__slider-item .casino-card-product h3 {
    margin-bottom: 0.52rem !important;
    font-size: 0.98rem;
    line-height: 1.22;
}
.home-hero__slider-item .casino-card__real-player-tests {
    margin-bottom: 0.64rem !important;
}
.home-hero__slider-item .casino-card__real-player-tests .fw-semibold {
    margin-bottom: 0.42rem !important;
    font-size: 0.77rem;
}
.home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dt {
    font-size: 0.58rem;
    margin-bottom: 0.08rem !important;
}
.home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dd {
    font-size: 0.63rem;
    color: #475569;
    line-height: 1.25;
}
.home-hero__slider-item .casino-card-product .btn {
    min-height: 2.24rem;
    border-radius: 0.62rem;
    font-size: 0.88rem;
    font-weight: 800;
}
@media (max-width: 575.98px) {
    .home-hero__slider-item .casino-card-product__logo-top-img {
        height: 168px;
        padding: 0.9rem 1rem;
    }
    .home-hero__slider-item .casino-card-product .card-body {
        padding: 1.18rem 1rem 1.08rem;
    }
    .home-hero__slider-item .casino-card-product__scores {
        margin-bottom: 0.95rem !important;
    }
    .home-hero__slider-item .casino-card-product__score-item .small {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    .home-hero__slider-item .casino-card-product h3 {
        margin-bottom: 0.9rem !important;
        font-size: 1.2rem;
    }
    .home-hero__slider-item .casino-card__real-player-tests {
        margin-bottom: 0.9rem !important;
    }
    .home-hero__slider-item .casino-card__real-player-tests .fw-semibold {
        font-size: 1.15rem;
    }
    .home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dt {
        font-size: 1rem;
    }
    .home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dd {
        font-size: 1.08rem;
    }
    .home-hero__slider-item .casino-card-product .btn {
        min-height: 2.75rem;
        font-size: 1.02rem;
    }
}
.home-hero__slider-btn {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    top: calc(50% + 0.55rem);
    border-color: #e5e7eb;
    color: #6b7280;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}
.home-hero__slider-btn svg {
    width: 0.95rem;
    height: 0.95rem;
}
.home-hero__slider-btn--prev {
    left: -0.1rem;
}
.home-hero__slider-btn--next {
    right: -0.1rem;
}

/* --- Home: horizontal casino slider --- */
.casino-slider {
    --casino-slider-gap: 0.75rem;
    --casino-slider-per-view: 1;
}
.casino-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--casino-slider-gap) * (var(--casino-slider-per-view) - 1))) / var(--casino-slider-per-view));
    gap: var(--casino-slider-gap);
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.75rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
}
.casino-slider__item { scroll-snap-align: start; }

/* text text text text text text */
@media (min-width: 576px) {
    .casino-slider { --casino-slider-per-view: 2; }
}
@media (min-width: 768px) {
    .casino-slider { --casino-slider-per-view: 3; }
}
@media (min-width: 996px) {
    .casino-slider { --casino-slider-per-view: 4; }
}
@media (min-width: 1200px) {
    .casino-slider { --casino-slider-per-view: 5; }
}
@media (min-width: 1400px) {
    .casino-slider { --casino-slider-per-view: 6; }
}

/* Desktop: hide scrollbar, text text */
@media (min-width: 992px) {
    .casino-slider__track { scrollbar-width: none; }
    .casino-slider__track::-webkit-scrollbar { height: 0; }
    /* text text text, text text padding text text */
    .casino-slider__track { padding-left: 0.25rem; padding-right: 0.25rem; }
}
.casino-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--app-border);
    background: #fff;
    box-shadow: var(--app-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--app-text);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.casino-slider__btn:hover { background: var(--app-bg); box-shadow: var(--app-shadow-hover); }
.casino-slider__btn:focus { outline: 0; box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25); }
.casino-slider__btn--prev { left: 0; }
.casino-slider__btn--next { right: 0; }

/* --- Home: text text «Bonuses of the month» --- */
.bonuses-block__inner {
    background: linear-gradient(135deg, #15803d 0%, #166534 50%, #14532d 100%);
    color: #fff;
    transition: filter 0.2s, box-shadow 0.2s;
}
.bonuses-block:hover .bonuses-block__inner {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(21, 128, 61, 0.35);
}
.bonuses-block__icon { font-size: 3rem; line-height: 1; }
.bonuses-block__title { color: #fff; }
@media (max-width: 767.98px) {
    .home-hero__title {
        font-size: 1.95rem;
    }
    .home-hero__subtitle {
        font-size: 0.96rem;
    }
    .home-hero__search-shell {
        margin-top: 1.2rem;
    }
    .home-hero__searchbar {
        min-height: 3.45rem;
        grid-template-columns: 1rem minmax(0, 1fr) 2.65rem;
        gap: 0.75rem;
        padding-left: 1rem;
        padding-right: 0.42rem;
    }
    .home-hero__search-submit {
        width: 2.65rem;
        height: 2.65rem;
    }
    .home-hero__slider {
        padding-inline: 0;
    }
    .bonuses-block__inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* --- Home: Complaint service promo block (reference: deep green + glass stats) --- */
.complaint-service--fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.complaint-service__inner {
    --complaint-bg: #004d2c;
    --complaint-bg-mid: #006038;
    position: relative;
    overflow: hidden;
    background-color: var(--complaint-bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74, 222, 128, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.07) 0, transparent 42%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.06) 0, transparent 45%),
        repeating-linear-gradient(
            -18deg,
            transparent,
            transparent 14px,
            rgba(255, 255, 255, 0.025) 14px,
            rgba(255, 255, 255, 0.025) 15px
        ),
        linear-gradient(160deg, var(--complaint-bg) 0%, var(--complaint-bg-mid) 45%, #003220 100%);
    color: #eaf8ef;
}
.complaint-service__inner::before,
.complaint-service__inner::after {
    content: "";
    position: absolute;
    left: -10%;
    width: 120%;
    height: 45%;
    pointer-events: none;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.complaint-service__inner::before {
    top: -12%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.07' d='M0,60 C200,20 400,100 600,55 C800,10 1000,90 1200,40 L1200,0 L0,0 Z'/%3E%3C/svg%3E");
}
.complaint-service__inner::after {
    bottom: -8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23000000' fill-opacity='0.12' d='M0,40 C300,90 500,0 700,50 C900,100 1000,20 1200,70 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
}
.complaint-service__inner > .container {
    position: relative;
    z-index: 1;
}
.complaint-service__intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}
.complaint-service__intro-icon {
    flex-shrink: 0;
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, rgba(74, 222, 128, 0.45) 0%, rgba(21, 128, 61, 0.75) 100%);
    border: 2px solid rgba(187, 247, 208, 0.55);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 32px rgba(74, 222, 128, 0.35),
        0 0 56px rgba(34, 197, 94, 0.2),
        0 10px 28px rgba(0, 0, 0, 0.22);
}
.complaint-service__intro-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.complaint-service__intro-copy {
    min-width: 0;
}
.complaint-service__title {
    color: #fff;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.65rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
}
.complaint-service__title-chevron {
    font-weight: 700;
    opacity: 0.85;
    font-size: 1.15em;
    line-height: 1;
}
.complaint-service__desc {
    color: rgba(255, 255, 255, 0.88);
    max-width: 52rem;
    font-size: 0.96rem;
    line-height: 1.55;
}
.complaint-service__stat-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 5.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(0, 35, 22, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 100%;
}
.complaint-service__stat-icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #064e3b;
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.complaint-service__stat-icon svg {
    display: block;
}
.complaint-service__stat-body {
    min-width: 0;
    text-align: left;
}
.complaint-service__stat-value {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.complaint-service__stat-label {
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.25;
}
.complaint-service__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.72rem 1.85rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: #0a2e1c !important;
    background: #fff !important;
    border: none !important;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.complaint-service__cta:hover {
    background: #f0fdf4 !important;
    color: #004d2c !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.complaint-service__cta-arrow {
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;
    opacity: 0.85;
}
@media (max-width: 575.98px) {
    .complaint-service__intro {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 991.98px) {
    .complaint-service__stat-value {
        font-size: 1.4rem;
    }
}

/* --- Home: feature links block (Online Casinos / Games / Bonuses) --- */
.feature-links__card {
    position: relative;
    color: var(--app-text);
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.feature-links__card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}
.feature-links__content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.25rem 1.35rem;
    gap: 0.6rem;
}
.feature-links__title {
    margin: 0 0 0.5rem;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    line-height: 1.2;
}
.feature-links__media {
    position: relative;
    height: 200px;
    border-radius: 0;
    border: none;
    margin: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    background: #e8eef4;
}
.feature-links__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}
.feature-links__media--casinos {
    background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 100%);
}
.feature-links__media--games {
    background: linear-gradient(180deg, #fef9c3 0%, #facc15 100%);
}
.feature-links__media--bonuses {
    background: linear-gradient(180deg, #ede9fe 0%, #a78bfa 100%);
}
.feature-links__card:hover .feature-links__media img {
    transform: scale(1.04);
}
.feature-links__desc {
    margin: 0;
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.5;
}
.feature-links__fab {
    position: static;
    margin-top: 0.15rem;
    align-self: flex-start;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f6b3f;
    background: rgba(26, 135, 75, 0.14);
    border: 1px solid rgba(26, 135, 75, 0.22);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.feature-links__fab svg {
    display: block;
    margin-left: 1px;
}
.feature-links__card:hover .feature-links__title {
    color: #0f172a;
}
.feature-links__card:hover .feature-links__fab {
    background: rgba(26, 135, 75, 0.22);
    color: #004d2c;
    transform: scale(1.05);
}

/* --- Home: news block --- */
.home-news__heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
}
.home-news__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}
.home-news__side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}
.home-news-card {
    position: relative;
    display: block;
    border-radius: 0.6rem;
    overflow: hidden;
    min-height: 170px;
    color: #fff;
}
.home-news-card--lead {
    min-height: 360px;
}
.home-news-card__media {
    position: absolute;
    inset: 0;
}
.home-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-news-card__media--fallback-1 { background: linear-gradient(140deg, #7c3aed 0%, #6d28d9 52%, #4c1d95 100%); }
.home-news-card__media--fallback-2 { background: linear-gradient(140deg, #0ea5e9 0%, #2563eb 52%, #1e3a8a 100%); }
.home-news-card__media--fallback-3 { background: linear-gradient(140deg, #16a34a 0%, #15803d 52%, #14532d 100%); }
.home-news-card__media--fallback-4 { background: linear-gradient(140deg, #f59e0b 0%, #ea580c 52%, #9a3412 100%); }
.home-news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.72) 100%);
    transition: background 0.2s ease;
}
.home-news-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.85rem;
}
.home-news-card__kicker {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0.25rem;
}
.home-news-card__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    color: #fff;
}
.home-news-card--lead .home-news-card__title {
    font-size: 1.55rem;
}
.home-news-card__more {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.58rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    font-size: 0.74rem;
    font-weight: 600;
}
.home-news-card:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 18%, rgba(0, 0, 0, 0.8) 100%);
}
.home-news-card:hover .home-news-card__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
@media (min-width: 992px) {
    .home-news__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 0.8rem;
    }
    .home-news__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(190px, 1fr);
    }
}

/* --- News index page: first block (reference style) --- */
.news-page-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(148, 163, 184, 0.14) 0 2px, transparent 2px) 0 0 / 56px 56px,
        #f8fafc;
    border-radius: 0.75rem;
    padding: 1rem;
}
.news-page-hero__heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #334155;
}
.news-page-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}
.news-page-hero__middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}
.news-page-card {
    position: relative;
    display: block;
    border-radius: 0.55rem;
    overflow: hidden;
    min-height: 180px;
    color: #fff;
}
.news-page-card--lead {
    min-height: 270px;
}
.news-page-card__media {
    position: absolute;
    inset: 0;
}
.news-page-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-page-card__media--fallback-1 { background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 55%, #1e3a8a 100%); }
.news-page-card__media--fallback-2 { background: linear-gradient(145deg, #7c3aed 0%, #6d28d9 55%, #4c1d95 100%); }
.news-page-card__media--fallback-3 { background: linear-gradient(145deg, #166534 0%, #15803d 55%, #14532d 100%); }
.news-page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.72) 100%);
}
.news-page-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.72rem;
}
.news-page-card__kicker {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}
.news-page-card__title {
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
    color: #fff;
}
.news-page-card__cta {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.58rem;
    border-radius: 0.33rem;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-size: 0.75rem;
    font-weight: 600;
}
.news-page-hero__right {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 0.55rem;
    padding: 0.75rem;
}
.news-page-hero__featured-title {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
    color: #1e293b;
}
.news-page-hero__featured-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}
.news-page-hero__featured-list a {
    color: #334155;
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.3;
}
.news-page-hero__featured-list a:hover {
    text-decoration: underline;
}
@media (min-width: 992px) {
    .news-page-hero {
        padding: 1.2rem;
    }
    .news-page-hero__grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }
    .news-page-hero__middle {
        grid-template-rows: 1fr 1fr;
    }
    .news-page-card--small {
        min-height: 130px;
    }
}

/* --- News index (listing + reference layout) --- */
.news-index-page__header {
    text-align: left;
}
.news-index-page__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.65rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}
.news-index-page__title {
    margin: 0 0 0.65rem;
    color: #0f172a;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}
.news-index-page__intro {
    max-width: 52rem;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 500;
}

.news-index-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 576px) {
    .news-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news-index-grid--featured .news-index-card--featured {
        grid-column: 1 / -1;
    }
}
@media (min-width: 992px) {
    .news-index-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .news-index-grid--featured .news-index-card--featured {
        grid-column: span 2;
    }
}

.news-index-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.62rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.news-index-card--featured {
    min-height: 284px;
}
.news-index-card:hover {
    border-color: #d8e0ea;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.news-index-card__link {
    color: inherit;
}
.news-index-card--featured .news-index-card__link {
    position: relative;
    display: block !important;
    min-height: 284px;
}
.news-index-card__link:hover {
    color: inherit;
}
.news-index-card__media {
    position: relative;
    height: 170px;
    background: #e5e7eb;
    overflow: hidden;
    border-radius: 0.62rem 0.62rem 0 0;
}
.news-index-card__media--featured {
    position: absolute;
    inset: 0;
    height: auto;
    border-radius: 0.62rem;
}
@media (min-width: 992px) {
    .news-index-card__media--featured {
        height: auto;
    }
}
.news-index-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}
.news-index-card:hover .news-index-card__media img {
    transform: scale(1.025);
}
.news-index-card__featured-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.58);
    background: rgba(8, 18, 33, 0.74);
    color: #dff7ea;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(8px);
}
.news-index-card__featured-badge::before {
    content: "★";
    color: #facc15;
    font-size: 0.68rem;
    line-height: 1;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.42);
}
.news-index-card__media--fallback-1 { background: linear-gradient(145deg, #ec4899 0%, #be185d 100%); }
.news-index-card__media--fallback-2 { background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 100%); }
.news-index-card__media--fallback-3 { background: linear-gradient(145deg, #22c55e 0%, #15803d 100%); }
.news-index-card__media--fallback-4 { background: linear-gradient(145deg, #f59e0b 0%, #ea580c 100%); }

.news-index-card .card-body {
    padding: 1rem 1.05rem 1.1rem;
    gap: 0.35rem;
}
.news-index-card--featured .card-body {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: min(70%, 22.5rem);
    padding: 0.82rem 0.94rem 0.86rem;
    background: #fff;
    border-radius: 0 4.25rem 0 0 / 0 1.75rem 0 0;
    box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.08);
}
.news-index-card--featured .news-index-card__cat {
    background: rgba(34, 197, 94, 0.12);
}
@media (max-width: 575.98px) {
    .news-index-card--featured .card-body {
        width: calc(100% - 1rem);
        margin-right: 1rem;
    }
}

.news-index-card__cat {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.32rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.news-index-card__title {
    margin: 0;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.news-index-card__title--featured {
    font-size: clamp(0.98rem, 1.22vw, 1.12rem);
    line-height: 1.23;
}

.news-index-card__excerpt {
    margin: 0.25rem 0 0.55rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-index-card__excerpt--featured {
    -webkit-line-clamp: 2;
    margin-bottom: 0.42rem;
    font-size: 0.82rem;
    line-height: 1.38;
}

.news-index-card__date-row {
    padding-top: 0.28rem;
}
.news-index-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.news-index-card__date-icon {
    flex-shrink: 0;
    color: #94a3b8;
}

/* --- SEO switcher block --- */
.seo-switcher__tabs .list-group-item {
    border-left: 3px solid transparent;
    font-size: 0.92rem;
}
.seo-switcher__tabs .list-group-item.active {
    border-left-color: #2563eb;
    background: #eff6ff;
    color: #1e3a8a;
}
.seo-switcher__content {
    color: #334155;
    line-height: 1.65;
}


/* Desktop: text text text text */
@media (min-width: 992px) {
    .casino-slider__btn--prev { left: -3rem; }
    .casino-slider__btn--next { right: -3rem; }
}

/* Mobile: keep visible scrollbar */
@media (max-width: 991.98px) {
    .casino-slider__track::-webkit-scrollbar { height: 10px; }
    .casino-slider__track::-webkit-scrollbar-thumb {
        background: rgba(100, 116, 139, 0.35);
        border-radius: 999px;
    }
    .casino-slider__track::-webkit-scrollbar-track { background: rgba(226, 232, 240, 0.6); border-radius: 999px; }
}

.casino-card-accordion .card-header { cursor: pointer; }
.casino-card__metrics dt { font-size: 0.75rem; }

/* text Pros / Cons / Changelog — text text text text text */
.icon-check-circle,
.icon-x-circle { display: block; flex-shrink: 0; }
.icon-check-circle circle:first-child { transition: opacity 0.2s ease; }
.icon-x-circle circle:first-child { transition: opacity 0.2s ease; }

/* text-text: text text text text text, text, text, Play */
.casino-card-product {
    border: 1px solid #e7edf5;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.casino-card-product .card-body {
    padding: 1rem 0.95rem 0.95rem;
}
.casino-card-product__logo-top {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--bs-card-border-radius) var(--bs-card-border-radius) 0 0;
    line-height: 0;
    text-decoration: none;
}
.casino-card-product__logo-top-img {
    width: 100%;
    height: 108px;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
    padding: 0.72rem 0.75rem;
    box-sizing: border-box;
}
@media (max-width: 575.98px) {
    .casino-card-product__logo-top-img {
        height: 168px;
        padding: 0.9rem 1rem;
    }
    .casino-card-product .card-body {
        padding: 1.18rem 1rem 1.08rem;
    }
    .casino-card-product__scores {
        min-height: 62px;
        margin-bottom: 0.95rem !important;
    }
    .casino-card-product__score-item .small {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    .casino-card-product__title {
        margin-bottom: 0.9rem;
        font-size: 1.2rem;
        line-height: 1.22;
    }
    .casino-card__real-player-tests {
        margin-bottom: 0.9rem !important;
    }
    .casino-card__real-player-tests-title {
        gap: 0.45rem;
        margin-bottom: 0.65rem;
        font-size: 1.15rem;
    }
    .casino-card__real-player-tests-list {
        gap: 0.62rem;
    }
    .casino-card__real-player-tests-row {
        grid-template-columns: 1.18rem minmax(0, 1fr);
        gap: 0.58rem;
    }
    .casino-card__real-player-tests-row--pending {
        grid-template-columns: 1.18rem minmax(0, 1fr) auto;
    }
    .casino-card__real-player-tests-icon,
    .casino-card__real-player-tests-icon svg {
        width: 1.12rem;
        height: 1.12rem;
    }
    .casino-card__real-player-tests-label {
        font-size: 1rem;
        line-height: 1.2;
    }
    .casino-card__real-player-tests-value {
        font-size: 1.08rem;
        line-height: 1.25;
    }
    .casino-card-product__cta {
        min-height: 2.75rem;
        font-size: 1.02rem;
        border-radius: 0.85rem;
    }
}
.casino-card-product__scores {
    min-height: 52px;
    width: 100%;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding-inline: 0.2rem;
    margin-bottom: 0.75rem !important;
}
.casino-card-product__score-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    min-width: 0;
}
.casino-card-product__title {
    width: 100%;
    margin: 0 0 0.72rem;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.18;
}
.casino-card-product__title-link {
    color: #1f2937;
    text-decoration: none;
}
.casino-card-product__title-link:hover {
    color: #111827;
}
.casino-card__banking .badge { font-weight: 500; }
.casino-card__real-player-tests {
    width: 100%;
    margin-bottom: 0.68rem !important;
}
.casino-card__real-player-tests-title {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.48rem;
    color: #111827;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
}
.casino-card__real-player-tests-check {
    display: inline-flex;
    flex-shrink: 0;
    color: #1a874b;
}
.casino-card__real-player-tests-check-icon {
    display: block;
}
.casino-card__real-player-tests-list {
    display: grid;
    gap: 0.46rem;
}
.casino-card__real-player-tests-row {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: start;
    gap: 0.48rem;
}
.casino-card__real-player-tests-row--pending {
    grid-template-columns: 1rem minmax(0, 1fr) auto;
    align-items: center;
}
.casino-card__real-player-tests-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    margin-top: 0.1rem;
}
.casino-card__real-player-tests-icon svg {
    width: 1rem;
    height: 1rem;
}
.casino-card__real-player-tests-copy {
    min-width: 0;
}
.casino-card__real-player-tests-label {
    color: #6b7280;
    font-size: 0.59rem;
    font-weight: 500;
    line-height: 1.18;
    margin-bottom: 0.12rem;
}
.casino-card__real-player-tests-value {
    color: #374151;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
}
.casino-card__real-player-tests-value--pending {
    text-align: right;
    white-space: nowrap;
    padding-left: 0.35rem;
}
.casino-card-product__cta {
    min-height: 2.35rem;
    border-radius: 0.72rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.casino-card-product__cta span {
    margin-left: 0.08rem;
}

/* Affiliate programs directory */
.affiliate-programs-page__header {
    margin-bottom: 1.1rem;
}
.affiliate-programs-page__intro {
    max-width: 42rem;
}
.affiliate-programs-page__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
}
.affiliate-programs-page__subtitle {
    margin-top: 0.38rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
}
.affiliate-programs-page__panel {
    position: relative;
}
.affiliate-programs-page__grid {
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}
.affiliate-programs-page__footer {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    padding-top: 0.35rem;
}
.affiliate-programs-page__empty {
    padding: 1rem 0 0;
}

/* Affiliate programs: cards */
.affiliate-program-card {
    border: 1px solid #e6edf5 !important;
    border-radius: 0.95rem !important;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
}
.affiliate-program-card:hover {
    transform: translateY(-2px);
    border-color: #dbe5f0 !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1) !important;
}
.affiliate-program-card .card-body {
    padding: 1.24rem 0.82rem 0.86rem;
    text-align: left;
}
.affiliate-program-card__logo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 124px;
    overflow: hidden;
    border-radius: 0.95rem 0.95rem 0 0;
    line-height: 0;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.affiliate-program-card__logo-img {
    width: 100%;
    height: 124px;
    object-fit: contain;
    object-position: center;
    padding: 0.4rem 0.48rem 0.24rem;
    box-sizing: border-box;
}
.affiliate-program-card__logo-fallback {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}
.affiliate-program-card__meta-row {
    position: absolute;
    right: 0.82rem;
    top: 124px;
    transform: translateY(-50%);
    z-index: 3;
}
.affiliate-program-card__rating {
    flex-shrink: 0;
    color: #16a34a;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.affiliate-program-card__rating svg {
    width: 0.92rem;
    height: 0.92rem;
}
.affiliate-program-card__title {
    min-height: 0;
    margin-bottom: 0.06rem !important;
    line-height: 1.24;
    font-size: 1.02rem;
}
.affiliate-program-card__title-link {
    color: #0f172a;
    text-decoration: none;
}
.affiliate-program-card__title-link:hover {
    color: #0f172a;
}
.affiliate-program-card__software {
    min-height: 0;
    margin-bottom: 0.72rem !important;
    color: #7b8794 !important;
    font-size: 0.77rem !important;
    line-height: 1.32;
}
.affiliate-program-card__cta {
    min-height: 2rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: none !important;
}
.affiliate-program-card__cta span {
    margin-left: 0.15rem;
}
@media (max-width: 767.98px) {
    .affiliate-programs-page__header {
        margin-bottom: 0.9rem;
    }
    .affiliate-programs-page__title {
        font-size: 2rem;
    }
    .affiliate-programs-page__subtitle {
        font-size: 0.95rem;
    }
}

.affiliate-program-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 55%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.2);
}
.affiliate-program-hero__stars { letter-spacing: 0.06em; }
.affiliate-program-hero__star { color: rgba(255, 255, 255, 0.22); font-size: 1rem; }
.affiliate-program-hero__star.is-on { color: #facc15; }
.affiliate-program-hero__logo-wrap { max-width: 100%; }
.affiliate-program-hero__logo { max-height: 88px; width: auto; object-fit: contain; }

.affiliate-program-show {
    background:
        radial-gradient(circle at 18% 5%, rgba(31, 209, 93, 0.11), transparent 24rem),
        radial-gradient(circle at 88% 14%, rgba(59, 130, 246, 0.08), transparent 25rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f8fbff 100%);
}
.affiliate-program-show__breadcrumbs {
    margin-bottom: 1.15rem;
}
.affiliate-program-show__hero {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at 88% 10%, rgba(31, 209, 93, 0.24), transparent 19rem),
        linear-gradient(135deg, #08152d 0%, #0d1f3d 55%, #08152d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 58px rgba(8, 21, 45, 0.24);
}
.affiliate-program-show__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 26px 26px;
    pointer-events: none;
}
.affiliate-program-show__hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.affiliate-program-show__hero-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}
.affiliate-program-show__logo-wrap,
.affiliate-program-show__logo-placeholder {
    width: 6rem;
    height: 6rem;
    flex: 0 0 6rem;
    border-radius: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.22);
}
.affiliate-program-show__logo {
    max-width: 4.8rem;
    max-height: 4.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
}
.affiliate-program-show__logo-placeholder {
    background: #0f172a;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}
.affiliate-program-show__eyebrow {
    display: inline-flex;
    margin-bottom: 0.35rem;
    color: #8dffb8;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.affiliate-program-show__hero h1 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.02;
}
.affiliate-program-show__rating-line {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.5rem;
    color: rgba(226, 232, 240, 0.82);
}
.affiliate-program-show__rating-line span {
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.05em;
}
.affiliate-program-show__rating-line strong {
    color: #fff;
    font-size: 1.05rem;
}
.affiliate-program-show__rating-line small {
    color: rgba(226, 232, 240, 0.66);
}
.affiliate-program-show__stars {
    margin-bottom: 0;
}
.affiliate-program-show__join {
    flex: 0 0 auto;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #1fd15d 0%, #15b54f 100%);
    color: #06152b;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(31, 209, 93, 0.24);
}
.affiliate-program-show__card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}
.affiliate-program-show__card-head {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #edf2f7;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}
.affiliate-program-show__card-head h2,
.affiliate-program-show__reviews h2,
.affiliate-program-show__section-title {
    margin: 0;
    color: #08152d;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.affiliate-program-show__tabs {
    gap: 0.45rem;
    padding: 0.8rem 0.9rem 0;
    border: 0;
}
.affiliate-program-show__tabs .nav-link {
    border: 0;
    border-radius: 999px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 800;
}
.affiliate-program-show__tabs .nav-link.active {
    background: #08152d;
    color: #fff;
}
.affiliate-program-show__details .tab-content {
    padding-top: 0.35rem;
}
.affiliate-program-show__details .affiliate-program-details__row {
    border-color: #edf2f7 !important;
}
.affiliate-program-show__details dt {
    color: #64748b !important;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}
.affiliate-program-show__details dd {
    color: #26364d;
    font-weight: 600;
    line-height: 1.55;
}
.affiliate-program-show__details dd a {
    color: #0b65c7;
    font-weight: 800;
}
.affiliate-program-show__card-body {
    padding: 1.15rem;
}
.affiliate-program-show__reviews > p {
    margin: 0.25rem 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
}
.affiliate-program-show__review {
    margin-bottom: 0.85rem;
    padding: 1rem;
    border: 1px solid #e9eff6;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.affiliate-program-show__brands ul {
    list-style: none;
    margin: 0;
    padding: 0.65rem;
}
.affiliate-program-show__brands li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem;
    border-radius: 0.85rem;
    color: #0f172a;
    font-weight: 800;
}
.affiliate-program-show__brands li + li {
    margin-top: 0.35rem;
}
.affiliate-program-show__brands li:hover {
    background: #f3f9f5;
}
.affiliate-program-show__brands img {
    flex: 0 0 2.375rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    object-fit: contain;
    background: #08152d;
}
.affiliate-program-show__brands a {
    color: #0f172a;
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .affiliate-program-show__hero {
        padding: 1rem;
    }
    .affiliate-program-show__hero-grid,
    .affiliate-program-show__hero-main {
        align-items: flex-start;
        flex-direction: column;
    }
    .affiliate-program-show__join {
        width: 100%;
    }
    .affiliate-program-show__logo-wrap,
    .affiliate-program-show__logo-placeholder {
        width: 5.25rem;
        height: 5.25rem;
        flex-basis: 5.25rem;
    }
}

.affiliate-program-details__row:last-child { border-bottom: 0 !important; }

/* Affiliate review: prevent horizontal overflow on long imported content */
.affiliate-program-body,
.affiliate-program-body * {
    max-width: 100%;
    box-sizing: border-box;
}
.affiliate-program-body {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.affiliate-program-body img,
.affiliate-program-body iframe,
.affiliate-program-body video,
.affiliate-program-body embed,
.affiliate-program-body object {
    max-width: 100%;
    height: auto;
}
.affiliate-program-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.affiliate-program-body article,
.affiliate-program-body [data-readmore],
.affiliate-program-body [id^="rmjs-"] {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.affiliate-program-details dt,
.affiliate-program-details dd {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.affiliate-program-details dd a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.casino-first-screen .casino-first-screen__body,
.casino-first-screen .casino-first-screen__body h1 {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.affiliate-review-stars { letter-spacing: 0.04em; line-height: 1; }
.affiliate-review-stars__unit { color: #e2e8f0; font-size: 0.95rem; }
.affiliate-review-stars__unit.is-on { color: #22c55e; }

/* text-text Trust Score text text */
.casino-trust-gauge-mini {
    width: 58px;
    height: 58px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    filter: drop-shadow(0 6px 12px rgba(34, 197, 94, 0.12));
}
.casino-trust-gauge-mini__svg { width: 100%; height: 100%; display: block; }
.casino-trust-gauge-mini__value {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 800;
    color: #159a4d;
    line-height: 1;
    pointer-events: none;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* text text text text (990, 1999) — text text, text text text text */
.casino-trust-gauge-mini__value--long {
    font-size: 0.75rem;
}
.casino-trust-gauge-mini__value--xlong {
    font-size: 0.6rem;
}

/* text-text Trust Radar text text */
.casino-radar-mini { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; position: relative; }
.casino-radar-mini__svg { width: 100%; height: 100%; display: block; }
.casino-radar-mini__value {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    line-height: 1;
    pointer-events: none;
}

/* --- text text text text (text) --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .card:hover { transform: none; }
    .btn:hover { transform: none; }
}

/* --- text text: text text, text, Trust Score, Trust Radar --- */
.casino-breadcrumbs__home {
    width: 1rem;
    height: 1rem;
}
.casino-first-screen__top {
    padding-bottom: 0.5rem;
}
.casino-first-screen__logo {
    object-fit: contain;
    background: #fff;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.casino-first-screen__body { min-width: 0; }
.casino-first-screen__title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.casino-first-screen__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding-left: 0.7rem !important;
    padding-right: 0.95rem !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.casino-first-screen__verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: #16a34a;
    flex-shrink: 0;
}
.casino-first-screen__badges {
    margin-top: 0.9rem;
    padding-top: 0.15rem;
}
.casino-badge {
    font-weight: 500;
    border: 1px solid transparent;
}
.casino-badge--verified {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.96) 0%, rgba(240, 253, 244, 0.96) 100%);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.casino-badge--meta {
    background-color: #fff;
    color: #475569;
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}
.casino-badge--vpn {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(15, 118, 110, 0.15) 100%);
    color: #0f766e;
    border-color: rgba(20, 184, 166, 0.4);
}
.casino-first-screen__cta {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}
.casino-first-screen__cta:hover,
.casino-first-screen__cta:focus-visible {
    color: #fff;
    background: linear-gradient(180deg, #2ad267 0%, #17964a 100%);
}
.casino-sticky-bonus {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 1rem;
    z-index: 1040;
    width: min(920px, calc(100% - 1.5rem));
    transform: translate(-50%, calc(100% + 1.5rem));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.casino-sticky-bonus.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}
.casino-sticky-bonus__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.72rem 0.8rem 0.72rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.casino-sticky-bonus__logo {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}
.casino-sticky-bonus__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.casino-sticky-bonus__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.casino-sticky-bonus__copy strong {
    color: #0f172a;
    font-size: 0.92rem;
}
.casino-sticky-bonus__copy span {
    color: #64748b;
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.casino-sticky-bonus__button {
    min-height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.24);
}
.casino-sticky-bonus__button:hover,
.casino-sticky-bonus__button:focus-visible {
    color: #fff;
    background: linear-gradient(180deg, #2ad267 0%, #17964a 100%);
}
.casino-sticky-bonus__close {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1;
}
.casino-sticky-bonus__close:hover {
    color: #0f172a;
    background: #f1f5f9;
}
@media (max-width: 575.98px) {
    .casino-sticky-bonus {
        bottom: 0.65rem;
        width: calc(100% - 0.75rem);
    }
    .casino-sticky-bonus__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        border-radius: 1rem;
        gap: 0.65rem;
        padding: 0.65rem;
    }
    .casino-sticky-bonus__logo {
        width: 2rem;
        height: 2rem;
    }
    .casino-sticky-bonus__button {
        padding-inline: 0.8rem;
    }
    .casino-sticky-bonus__button span:first-child {
        display: none;
    }
    .casino-sticky-bonus__close {
        position: absolute;
        top: -0.55rem;
        right: -0.2rem;
        background: #fff;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    }
}
@media (max-width: 991.98px) {
    .casino-breadcrumbs-nav {
        margin-bottom: 1.1rem;
    }
    .casino-first-screen__title {
        font-size: 1.8rem;
    }
    .casino-first-screen__verified {
        padding-top: 0.45rem !important;
        padding-bottom: 0.45rem !important;
    }
}
.casino-hero {
    overflow: hidden;
    contain: paint;
}
.casino-hero__desktop {
    contain: layout;
}
.casino-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px);
    transform: scale(1.06);
    will-change: transform;
}
.casino-hero__img {
    max-height: 70vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Casino insight stack */
.casino-insight-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.casino-insight-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #edf2f7;
    border-radius: 1.4rem;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.casino-insight-card--stretch {
    height: 100%;
}
.casino-insight-card__header {
    margin-bottom: 0.9rem;
}
.casino-insight-card__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    color: #0f172a;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.casino-insight-card__title-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}
.casino-insight-card__title-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}
.casino-insight-card__title-icon--green {
    color: #16a34a;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(240, 253, 244, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.12);
}
.casino-insight-card__title-icon--blue {
    color: #4f7cff;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.18) 0%, rgba(239, 246, 255, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.12);
}
.casino-insight-card__subtitle {
    margin: 0.32rem 0 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.35;
}
.casino-header-preview__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem 1.15rem;
}
.casino-header-preview__cell {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 0;
}
.casino-header-preview__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid #e7edf5;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.casino-header-preview__link:hover {
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}
.casino-header-preview__link:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
.casino-header-preview__frame {
    background: #eef4fa;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 0.95rem;
}
.casino-header-preview__frame--desktop {
    width: min(100%, 308px);
    height: 126px;
}
.casino-header-preview__frame--mobile {
    width: 126px;
    height: 126px;
}
.casino-header-preview__frame img {
    flex: 0 1 auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: top center;
}
.casino-header-preview__meta {
    margin-top: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}
.casino-header-preview__meta-icon {
    width: 1.05rem;
    height: 1.05rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.08rem;
}
.casino-header-preview__meta-icon svg {
    width: 1rem;
    height: 1rem;
}
.casino-header-preview__meta-title {
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.25;
}
.casino-header-preview__meta-label {
    color: #94a3b8;
    font-size: 0.74rem;
    line-height: 1.2;
}
.casino-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(170px, 0.9fr) minmax(0, 1.65fr) auto;
    gap: 0.75rem;
    align-items: stretch;
}
.casino-summary-metric {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.82rem;
    align-items: center;
    min-height: 5.15rem;
    padding: 0.82rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border: 1px solid #e8eef6;
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}
.casino-summary-metric__icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}
.casino-summary-metric__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}
.casino-summary-metric__icon--green {
    color: #16a34a;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(240, 253, 244, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-summary-metric__icon--blue {
    color: #4f7cff;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.18) 0%, rgba(239, 246, 255, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-summary-metric__label {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.18rem;
}
.casino-summary-metric__value {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.32;
}
.casino-summary-metric__value--accent {
    color: #12a150;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1;
}
.casino-summary-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.casino-summary-action__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 8.45rem;
    min-height: 5.15rem;
    padding: 0.95rem 1.12rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #2e86ff 0%, #2465f2 100%);
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}
.casino-summary-action__button svg {
    width: 1rem;
    height: 1rem;
}
.casino-summary-action__button:hover {
    color: #ffffff;
}
.casino-summary-action__button--blocked {
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
    box-shadow: none;
    cursor: not-allowed;
}
.casino-insight-copy {
    color: #334155;
    font-size: 0.99rem;
    line-height: 1.72;
}
.casino-insight-copy p {
    margin: 0 0 1rem;
}
.casino-insight-copy p:last-child {
    margin-bottom: 0;
}
.casino-score-explainer {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
    gap: 0.9rem 1.35rem;
    align-items: center;
}
.casino-score-explainer__main {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}
.casino-score-explainer__gauge {
    width: 154px;
    height: 154px;
    flex-shrink: 0;
}
.casino-score-explainer__gauge-ring {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #ffffff 0 59%, transparent 59% 100%),
        conic-gradient(#22c55e 0deg, #22c55e calc((var(--score, 97) / 100) * 360deg), #e5f6eb calc((var(--score, 97) / 100) * 360deg), #e5f6eb 360deg);
    box-shadow:
        0 0 0 7px rgba(34, 197, 94, 0.06),
        0 10px 22px rgba(34, 197, 94, 0.08);
    position: relative;
}
.casino-score-explainer__gauge-center {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 1px #edf2f7;
}
.casino-score-explainer__center-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    background: linear-gradient(180deg, #f6fef8 0%, #eefbf3 100%);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.12);
}
.casino-score-explainer__center-icon svg {
    width: 2rem;
    height: 2rem;
}
.casino-score-explainer__scorecopy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.casino-score-explainer__score {
    color: #16a34a;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
}
.casino-score-explainer__score span {
    font-size: 0.54em;
    color: #64748b;
    font-weight: 800;
}
.casino-score-explainer__score-label {
    margin-top: 0.06rem;
    color: #16a34a;
    font-size: 0.88rem;
    font-weight: 800;
}
.casino-score-explainer__copy {
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 13rem;
}
.casino-score-explainer__metrics {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.casino-score-explainer__metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.casino-score-explainer__metric-label {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 0;
}
.casino-score-explainer__metric-icon {
    width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22a95b;
    flex-shrink: 0;
}
.casino-score-explainer__metric-icon svg {
    width: 1rem;
    height: 1rem;
}
.casino-score-explainer__bar {
    height: 0.34rem;
    border-radius: 999px;
    background: #e6f5eb;
    overflow: hidden;
}
.casino-score-explainer__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
}
.casino-insight-accordion {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #edf2f7;
    border-radius: 1.15rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}
.casino-insight-accordion__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
}
.casino-insight-accordion__summary::-webkit-details-marker {
    display: none;
}
.casino-insight-accordion__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #0f172a;
    font-size: 1.07rem;
    font-weight: 900;
    line-height: 1.15;
    min-width: max-content;
    flex: 0 0 auto;
    max-width: 100%;
}
.casino-insight-accordion__title-wrap > span:last-child {
    white-space: nowrap;
}
.casino-insight-accordion__icon {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}
.casino-insight-accordion__icon svg {
    width: 1.12rem;
    height: 1.12rem;
}
.casino-insight-accordion__icon--green {
    color: #16a34a;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(240, 253, 244, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-insight-accordion__icon--blue {
    color: #4f7cff;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.18) 0%, rgba(239, 246, 255, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-insight-accordion__summary-preview {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    color: #475569;
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.casino-insight-accordion__chevron {
    color: #94a3b8;
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.casino-insight-accordion:not([open]) .casino-insight-accordion__chevron {
    transform: rotate(-90deg);
}
.casino-insight-accordion__body {
    padding: 0 1.2rem 1.15rem;
    border-top: 1px solid #edf2f7;
}
.casino-insight-accordion__text {
    color: #334155;
    font-size: 0.97rem;
    line-height: 1.5;
    padding-top: 0.9rem;
}
.casino-insight-badge-row {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ecfbf1 0%, #e2f7ea 100%);
    border: 1px solid #d4f1dd;
    color: #15803d;
    font-size: 0.84rem;
    font-weight: 700;
}
.casino-insight-badge-row__icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.casino-insight-badge-row__icon svg {
    width: 1rem;
    height: 1rem;
}
.casino-insight-list-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-top: 0.85rem;
}
.casino-insight-list-row__bullet {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.45rem;
}
@media (max-width: 991.98px) {
    .casino-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .casino-summary-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
    .casino-score-explainer {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767.98px) {
    .casino-insight-card {
        padding: 1rem;
    }
    .casino-insight-accordion__summary {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .casino-insight-accordion__summary-preview {
        flex-basis: 100%;
        order: 3;
        padding-left: 2.7rem;
        white-space: normal;
    }
    .casino-header-preview__frame--desktop {
        width: min(100%, 260px);
        height: 108px;
    }
    .casino-header-preview__frame--mobile {
        width: 108px;
        height: 108px;
    }
    .casino-summary-grid {
        grid-template-columns: 1fr;
    }
    .casino-summary-action__button {
        width: 100%;
        min-height: 3.5rem;
    }
    .casino-score-explainer__main {
        flex-direction: column;
        align-items: flex-start;
    }
    .casino-score-explainer__scorecopy {
        width: 100%;
    }
    .casino-score-explainer__gauge {
        width: 150px;
        height: 150px;
    }
}

.casino-trust-score {
    background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
    border-radius: 1.6rem !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08) !important;
}
.casino-trust-score .card-body {
    padding: 2rem !important;
}
.casino-trust-gauge {
    width: 236px;
    height: 236px;
}
.casino-trust-gauge__svg {
    width: 100%;
    height: 100%;
    display: block;
}
#trust-gauge-fill {
    transition: stroke-dashoffset 1.2s ease-out;
}
.casino-trust-gauge__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    pointer-events: none;
}
.casino-trust-gauge__value {
    font-size: 4.5rem;
    font-weight: 700;
    color: #065f46;
    line-height: 0.95;
}
.casino-trust-gauge__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}
.casino-trust-gauge__badge {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #9cf0b5 0%, #5fd17e 100%);
    color: #ffffff;
    box-shadow:
        0 10px 22px rgba(34, 197, 94, 0.24),
        0 0 24px rgba(34, 197, 94, 0.2);
}
.casino-trust-score__main {
    align-items: center !important;
}
.casino-trust-score__metrics {
    padding-top: 0.4rem;
}
.casino-score-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.casino-score-heading--trust {
    margin-bottom: 1.7rem !important;
}
.casino-score-heading__icon {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.casino-score-heading__icon--score {
    width: 3.35rem;
    height: 3.35rem;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(220, 252, 231, 0.88) 62%, rgba(255, 255, 255, 0.98) 100%);
    color: #16a34a;
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.08),
        0 0 24px rgba(34, 197, 94, 0.18);
}
.casino-score-heading__icon--radar {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}
.casino-score-heading__copy {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.35;
}
.casino-score-heading--dark .h5,
.casino-score-heading--dark .casino-score-heading__copy {
    color: #f8fafc;
}
.casino-score-heading--dark .casino-score-heading__copy {
    opacity: 0.72;
}
.casino-trust-metric {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #edf2f7;
}
.casino-trust-metric__label {
    display: inline-grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    flex: 1 1 auto;
}
.casino-trust-metric__icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.12) 0%, rgba(240, 253, 244, 0.94) 72%, rgba(255, 255, 255, 1) 100%);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 18px rgba(34, 197, 94, 0.08);
    flex-shrink: 0;
}
.casino-trust-metric .text-body-secondary.small {
    color: #4b5563 !important;
    font-size: 0.96rem !important;
    line-height: 1.35;
}
.casino-trust-metric__value {
    flex: 0 0 auto;
    max-width: min(320px, 58%);
    text-align: right;
    color: #0f172a;
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: normal;
}
.casino-trust-metric:last-child { border-bottom: none; }
.casino-trust-note {
    display: grid;
    grid-template-columns: 3.35rem minmax(0, 1fr);
    gap: 0.75rem 0.9rem;
    align-items: flex-start;
    min-height: 100%;
    padding: 1.05rem 1.1rem !important;
    background: #fff !important;
    border-color: #e7edf4 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.casino-trust-note__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.12) 0%, rgba(240, 253, 244, 0.94) 72%, rgba(255, 255, 255, 1) 100%);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 18px rgba(34, 197, 94, 0.08);
    margin-top: 0.05rem;
}
.casino-trust-note__content {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
}
.casino-trust-note__label {
    display: block;
    margin-bottom: 0.22rem;
    color: #6b7280 !important;
    font-size: 0.92rem;
    line-height: 1.35;
}
.casino-trust-note__value {
    display: block;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: normal;
}
.casino-trust-score__notes {
    margin-top: 1.6rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
}
@media (max-width: 991.98px) {
    .casino-trust-score .card-body {
        padding: 1.5rem !important;
    }
    .casino-trust-gauge {
        width: 210px;
        height: 210px;
    }
    .casino-trust-metric__value {
        max-width: 52%;
    }
}
@media (max-width: 575.98px) {
    .casino-score-heading__icon--score {
        width: 3.1rem;
        height: 3.1rem;
    }
    .casino-trust-score__main {
        align-items: stretch !important;
    }
    .casino-trust-gauge {
        margin-inline: auto;
    }
    .casino-trust-gauge__center {
        transform: translate(-50%, -54%);
    }
    .casino-trust-gauge__badge {
        width: 2.85rem;
        height: 2.85rem;
        bottom: 8px;
    }
    .casino-trust-metric {
        gap: 0.8rem;
    }
    .casino-trust-metric__label {
        grid-template-columns: 2.7rem minmax(0, 1fr);
        gap: 0.7rem;
    }
    .casino-trust-metric__icon {
        width: 2.7rem;
        height: 2.7rem;
    }
    .casino-trust-metric__value {
        max-width: 46%;
        font-size: 0.92rem;
    }
    .casino-trust-note {
        grid-template-columns: 3.4rem minmax(0, 1fr);
    }
    .casino-trust-note__icon {
        width: 2.7rem;
        height: 2.7rem;
    }
}
.casino-trust-radar {
    background: linear-gradient(145deg, #102345 0%, #091b38 52%, #071730 100%);
    border-radius: 1.7rem !important;
    box-shadow: 0 22px 48px rgba(2, 10, 26, 0.22);
}
.casino-radar-chart {
    width: min(100%, 332px);
    aspect-ratio: 1;
    margin-top: 0.25rem;
}
.casino-radar__score-badge {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(19, 78, 74, 0.88);
    color: #4ade80;
    box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.08);
}
.casino-radar__score-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.casino-radar__score-label {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(226, 232, 240, 0.92);
}
.casino-radar__avg {
    width: 5.3rem;
    height: 5.3rem;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 0 1px rgba(226, 232, 240, 0.08),
        0 0 0 8px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2px);
}
.casino-radar__avg-value {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f8fafc;
}
.casino-radar__avg-label {
    margin-top: 0.18rem;
    font-size: 0.72rem;
    line-height: 1;
    color: rgba(226, 232, 240, 0.85);
}
.casino-radar-list__item + .casino-radar-list__item {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}
.casino-radar-list__item {
    padding: 0.95rem 0;
}
.casino-radar-list__label {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.96);
}
.casino-radar-list__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 41, 59, 0.45);
    color: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.16);
    flex-shrink: 0;
}
.casino-radar-list__value {
    min-width: 3.1rem;
    text-align: right;
    font-size: 1.15rem;
    color: #32e67a;
}
@media (max-width: 575.98px) {
    .casino-radar__score-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.85rem;
    }
    .casino-radar__score-value {
        font-size: 1.45rem;
    }
    .casino-radar-chart {
        width: min(100%, 288px);
    }
    .casino-radar-list__label {
        font-size: 0.95rem;
    }
    .casino-radar-list__icon {
        width: 2.7rem;
        height: 2.7rem;
    }
    .casino-radar-list__value {
        font-size: 1.05rem;
    }
}

/* Casino Details tabs (text text) */
.casino-details-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.casino-details-section__heading-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.26) 0%, rgba(226, 239, 255, 0.98) 62%, rgba(255, 255, 255, 1) 100%);
    color: #5b6bdc;
    box-shadow:
        inset 0 0 0 1px rgba(96, 165, 250, 0.16),
        0 10px 22px rgba(96, 165, 250, 0.1);
}
.casino-details-section__title {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.casino-details-section__subtitle {
    margin-top: 0.28rem;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.45;
}
.casino-details-shell {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 1.6rem;
    padding: 0.95rem;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.casino-details-tabs {
    display: flex;
    gap: 0.15rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0.2rem;
    list-style: none;
    border: 1px solid #eef2f7;
    border-radius: 1rem;
    background: #ffffff;
}
.casino-details-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    background: transparent;
    border-radius: 0.85rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.9rem 1.15rem;
    white-space: nowrap;
    transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.casino-details-tab__icon {
    color: #64748b;
}
.casino-details-tab:hover {
    color: #1e293b;
}
.casino-details-tab.active {
    color: #4f7cff;
    background: #f4f8ff;
    box-shadow:
        inset 0 0 0 1px #dfeafb,
        0 6px 16px rgba(79, 124, 255, 0.08);
}
.casino-details-tab.active .casino-details-tab__icon {
    color: #4f7cff;
}
.casino-details-tab__icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.casino-details-panel {
    margin-top: 0.9rem;
    border-radius: 1.15rem;
    border: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 0.8rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.casino-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.casino-details-column {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.casino-details-item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    min-height: 4.45rem;
    padding: 0.9rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid #edf2f7;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.025);
}
.casino-details-item__icon {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.2) 0%, rgba(232, 241, 255, 0.98) 62%, rgba(255, 255, 255, 1) 100%);
    color: #5d83eb;
    box-shadow:
        inset 0 0 0 1px rgba(96, 165, 250, 0.16),
        0 8px 18px rgba(93, 131, 235, 0.08);
}
.casino-details-section__heading-icon svg,
.casino-details-tab__icon svg,
.casino-details-item__icon svg {
    overflow: visible;
    transform: scale(1.08);
    transform-origin: center;
}
.casino-details-item__content {
    margin: 0;
    min-width: 0;
}
.casino-details-item__content dt {
    margin: 0 0 0.2rem;
    color: #475569;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
}
.casino-details-item__content dd {
    margin: 0;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.45;
    word-break: break-word;
}
.casino-details-item__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #3b82f6;
    text-decoration-line: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.16em;
    text-decoration-color: rgba(59, 130, 246, 0.45);
    font-weight: 600;
}
.casino-details-item__link svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}
.casino-details-item__link:hover {
    color: #2563eb;
    text-decoration-color: rgba(37, 99, 235, 0.7);
}
.casino-details-item__muted {
    color: #64748b;
}
.casino-details-panel__empty {
    padding: 1rem;
    color: #64748b;
    font-size: 0.95rem;
}

.casino-review-card {
    border-radius: 1.25rem !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #eef2f7 !important;
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.07),
        0 2px 8px rgba(15, 23, 42, 0.03) !important;
}
.casino-review-card .card-body {
    padding: 1.3rem 1.35rem !important;
}
.casino-review-card__title {
    margin: 0 0 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: #0f172a;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.casino-review-card__title-icon {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.casino-review-card__title-icon--green {
    color: #109449;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.22) 0%, rgba(232, 252, 240, 0.99) 68%, rgba(255, 255, 255, 1) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(34, 197, 94, 0.16),
        0 10px 18px rgba(34, 197, 94, 0.1);
}
.casino-review-card__title-icon svg {
    width: 1.22rem;
    height: 1.22rem;
    transform: scale(1.16);
    transform-origin: center;
}
.casino-rg-list {
    margin: 0;
}
.casino-rg-list__item {
    display: grid;
    grid-template-columns: 1.45rem minmax(0, 1fr) auto;
    gap: 0.82rem;
    align-items: center;
    padding: 0.52rem 0;
    border-top: 1px solid #e9eef5;
}
.casino-rg-list__item:first-child {
    border-top: 0;
    padding-top: 0;
}
.casino-rg-list__item:last-child {
    padding-bottom: 0;
}
.casino-rg-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
}
.casino-rg-list__icon svg {
    width: 1.1rem;
    height: 1.1rem;
    transform: scale(1.15);
    transform-origin: center;
}
.casino-rg-list__icon--positive {
    color: #16a34a;
}
.casino-rg-list__icon--negative {
    color: #ef4444;
}
.casino-rg-list__label {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.25;
    font-weight: 500;
}
.casino-rg-list__value {
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1;
}
.casino-rg-list__value--positive {
    color: #15803d;
}
.casino-rg-list__value--negative {
    color: #dc2626;
}
.casino-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}
.casino-pros-cons__section + .casino-pros-cons__section {
    padding-top: 0.9rem;
    border-top: 1px solid #e9eef5;
}
.casino-pros-cons__heading {
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}
.casino-pros-cons__heading--pros {
    color: #16a34a;
}
.casino-pros-cons__heading--cons {
    color: #dc2626;
}
.casino-pros-cons__list {
    margin: 0;
}
.casino-pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}
.casino-pros-cons__item:last-child {
    margin-bottom: 0;
}
.casino-pros-cons__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
}
.casino-pros-cons__icon svg {
    width: 1.1rem;
    height: 1.1rem;
    transform: scale(1.15);
    transform-origin: center;
}
.casino-pros-cons__icon--pros {
    color: #16a34a;
}
.casino-pros-cons__icon--cons {
    color: #ef4444;
}
.casino-real-tests {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}
.casino-real-tests__item {
    padding: 0 1rem;
    border-left: 1px solid #e9eef5;
}
.casino-real-tests__item:first-child {
    padding-left: 0;
    border-left: 0;
}
.casino-real-tests__item:last-child {
    padding-right: 0;
}
.casino-real-tests__item dt {
    margin: 0 0 0.4rem;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
}
.casino-real-tests__item dd {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}
.casino-bonuses-list__item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 0.82rem;
    align-items: center;
    padding: 0.68rem 0;
    border-top: 1px solid #e9eef5;
}
.casino-bonuses-list__item:first-child {
    border-top: 0;
    padding-top: 0;
}
.casino-bonuses-list__item:last-child {
    padding-bottom: 0;
}
.casino-bonuses-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-top: 0;
    flex-shrink: 0;
    border-radius: 0.55rem;
    background: radial-gradient(circle at 50% 45%, #eff6ff 0%, #dbeafe 72%, #cfe4fd 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 0 0 1px rgba(37, 99, 235, 0.07),
        0 2px 10px rgba(37, 99, 235, 0.1);
}
.casino-bonuses-list__icon img {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
    display: block;
}
.casino-bonuses-list__content {
    min-width: 0;
}
.casino-bonuses-list__title {
    color: #2563eb;
    font-size: 0.97rem;
    font-weight: 900;
    line-height: 1.32;
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.32);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}
.casino-bonuses-list__desc {
    margin-top: 0.16rem;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.35;
}
.casino-bonuses-list__arrow {
    color: #2563eb;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 0.02rem;
    opacity: 0.88;
}
.casino-changelog__intro {
    margin-bottom: 0.7rem;
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.35;
}
.casino-changelog {
    margin: 0;
}
.casino-changelog__item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    margin-bottom: 0.65rem;
}
.casino-changelog__item:last-child {
    margin-bottom: 0;
}
.casino-changelog__icon {
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
}
.casino-changelog__icon svg {
    width: 1.1rem;
    height: 1.1rem;
    transform: scale(1.15);
    transform-origin: center;
}
.casino-review-overview__cta {
    display: flex;
    justify-content: flex-start;
}
.casino-review-overview__button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.55rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #1ac86a 0%, #119d50 100%);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow:
        0 18px 30px rgba(22, 163, 74, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.casino-review-overview__button-icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.casino-review-overview__button-icon img {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    object-fit: contain;
}
.casino-review-overview__button:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #18b860 0%, #0f8f49 100%);
}
.casino-review-overview__button--blocked {
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
    box-shadow: none;
    cursor: not-allowed;
}
@media (max-width: 991.98px) {
    .casino-details-grid {
        grid-template-columns: 1fr;
    }
    .casino-real-tests {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .casino-real-tests__item {
        padding: 0;
        border-left: 0;
    }
}
@media (max-width: 767.98px) {
    .casino-details-section__title {
        font-size: 1.45rem;
    }
    .casino-details-shell {
        padding: 0.75rem;
    }
    .casino-details-panel {
        padding: 0.65rem;
    }
    .casino-details-item {
        grid-template-columns: 2.25rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.85rem;
    }
    .casino-review-card .card-body {
        padding: 1.1rem !important;
    }
    .casino-rg-list__item {
        grid-template-columns: 1.35rem minmax(0, 1fr) auto;
        gap: 0.55rem;
    }
}

/* Quick Overview (text text text Trust Radar) */
.casino-quick-overview {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 1.75rem !important;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08) !important;
}
.casino-quick-overview .card-body {
    padding: 2rem 2.1rem !important;
}
.casino-quick-overview__layout {
    display: grid;
    grid-template-columns: 10.5rem minmax(0, 1fr);
    gap: 1.7rem;
    align-items: start;
}
.casino-quick-overview__media {
    position: relative;
    min-height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.casino-quick-overview__badge-shell {
    width: 8.7rem;
    height: 8.7rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 249, 0.98) 58%, rgba(230, 247, 238, 0.92) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(226, 232, 240, 0.78),
        0 20px 40px rgba(34, 197, 94, 0.12);
}
.casino-quick-overview__badge {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #84f0a6 0%, #4fda7e 62%, #26b95e 100%);
    color: #ffffff;
    box-shadow:
        0 16px 28px rgba(34, 197, 94, 0.22),
        0 0 0 10px rgba(34, 197, 94, 0.08);
}
.casino-quick-overview__spark {
    position: absolute;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}
.casino-quick-overview__spark--1 {
    top: 1.5rem;
    right: 1.15rem;
}
.casino-quick-overview__spark--2 {
    left: 1.15rem;
    bottom: 1.65rem;
}
.casino-quick-overview__spark--3 {
    right: 0.95rem;
    bottom: 1.95rem;
}
.casino-quick-overview__content {
    min-width: 0;
}
.casino-quick-overview__eyebrow {
    margin-bottom: 0.55rem;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}
.casino-quick-overview__eyebrow-icon {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1);
    flex-shrink: 0;
}
.casino-quick-overview__heading {
    margin: 0 0 0.8rem;
    color: #0f172a;
    font-size: clamp(1.85rem, 2vw, 2.45rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.casino-quick-overview__body {
    width: 100%;
    color: #334155;
    font-size: 1.03rem;
    line-height: 1.72;
}
.casino-quick-overview__body p {
    margin: 0 0 0.95rem;
}
.casino-quick-overview__body p:last-child {
    margin-bottom: 0;
}
.casino-quick-overview__footer {
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e6edf5;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.casino-quick-overview__avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.2);
}
.casino-quick-overview__meta-name {
    color: #0f172a;
    font-size: 0.96rem;
    font-weight: 600;
}
.casino-quick-overview__meta-separator {
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 999px;
    background: #cbd5e1;
}
.casino-quick-overview__meta-date {
    color: #64748b;
    font-size: 0.92rem;
}
@media (max-width: 767.98px) {
    .casino-quick-overview .card-body {
        padding: 1.5rem !important;
    }
    .casino-quick-overview__layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .casino-quick-overview__media {
        min-height: auto;
        justify-content: flex-start;
    }
    .casino-quick-overview__badge-shell {
        width: 7.4rem;
        height: 7.4rem;
    }
    .casino-quick-overview__badge {
        width: 4.7rem;
        height: 4.7rem;
    }
    .casino-quick-overview__heading {
        font-size: 1.65rem;
    }
    .casino-quick-overview__body {
        font-size: 0.98rem;
    }
}

/* Key facts: Data confidence labels */
.casino-fact-confidence--high { color: #15803d; font-weight: 500; }
.casino-fact-confidence--medium { color: #b45309; font-weight: 500; }
.casino-fact-confidence--low { color: #b91c1c; font-weight: 500; }

/* --- Home: New on [Site] tabbed block (reference layout) --- */
.new-tab-block {
    --new-tab-accent: #1a874b;
    --new-tab-accent-hover: #157a42;
    position: relative;
}
.new-tab-block__head {
    margin-bottom: 1.35rem;
}
.new-tab-block__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
    line-height: 1.15;
}
.new-tab-block__title-text {
    text-align: center;
}
.new-tab-block__title-sparkle {
    width: 0.42rem;
    height: 0.42rem;
    flex-shrink: 0;
    background: var(--new-tab-accent);
    transform: rotate(45deg);
    border-radius: 1px;
    box-shadow: 0 0 0 2px rgba(26, 135, 75, 0.2);
}
.new-tab-block__subtitle {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #94a3b8;
}
.new-tab-block__tabs-wrap {
    margin-bottom: 1.35rem;
}
.new-tab-tabs {
    display: inline-flex;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.35rem;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #e8edf3;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.new-tab-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.new-tab-tab__icon {
    display: inline-flex;
    color: #94a3b8;
    transition: color 0.2s;
}
.new-tab-tab__icon img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
    object-fit: contain;
    opacity: 0.78;
    transition: opacity 0.2s, filter 0.2s;
}
.new-tab-tab:hover .new-tab-tab__icon img {
    opacity: 0.92;
}
.new-tab-tab__label {
    line-height: 1;
}
.new-tab-tab:hover {
    color: #334155;
}
.new-tab-tab:hover .new-tab-tab__icon {
    color: #64748b;
}
.new-tab-tab.active {
    background: var(--new-tab-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 135, 75, 0.28);
}
.new-tab-tab.active .new-tab-tab__icon {
    color: #fff;
}
.new-tab-tab.active .new-tab-tab__icon img {
    opacity: 1;
    filter: brightness(0) invert(1);
}
.new-tab-panel { min-height: 120px; }
.new-tab-block__slots-placeholder {
    color: #94a3b8;
    font-size: 0.95rem;
}
.new-tab-block__secondary {
    margin-top: 1.35rem;
}
.new-tab-block__outline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid var(--new-tab-accent);
    color: var(--new-tab-accent);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.new-tab-block__outline-link:hover {
    background: rgba(26, 135, 75, 0.06);
    color: var(--new-tab-accent-hover);
    border-color: var(--new-tab-accent-hover);
}
.new-tab-block__outline-icon {
    display: inline-flex;
    color: inherit;
}
.new-tab-block__outline-icon img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
    object-fit: contain;
}
.new-tab-block__outline-arrow {
    font-weight: 800;
    margin-left: 0.1rem;
}

/* Carousel: same density as hero recommended row */
.new-tab-slider {
    --new-tab-gap: 0.75rem;
    --new-tab-per-view: 1;
    padding-inline: 0;
}
@media (min-width: 992px) {
    .new-tab-slider {
        padding-inline: 2.75rem;
    }
}
.new-tab-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--new-tab-gap) * (var(--new-tab-per-view) - 1))) / var(--new-tab-per-view));
    gap: var(--new-tab-gap);
    overflow-x: auto;
    padding: 0.2rem 0 0.75rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
}
.new-tab-slider__item { scroll-snap-align: start; min-width: 0; }

.new-tab-slider__item .casino-card-product {
    border-radius: 1rem !important;
    border: 1px solid #e6ecf4 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
}
.new-tab-slider__item .casino-card-product__logo-top {
    border-radius: 1rem 1rem 0 0;
}
.new-tab-slider__item .casino-card-product__logo-top-img {
    height: 92px;
    padding: 0.75rem;
}
.new-tab-slider__item .casino-card-product .card-body {
    padding: 0.82rem 0.8rem 0.88rem;
}
.new-tab-slider__item .casino-card-product__scores {
    min-height: auto;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-bottom: 0.65rem !important;
    padding-inline: 0;
}
.new-tab-slider__item .casino-card-product__score-item {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1 1 0;
}
.new-tab-slider__item .casino-trust-gauge-mini,
.new-tab-slider__item .casino-radar-mini {
    width: 2.75rem;
    height: 2.75rem;
}
.new-tab-slider__item .casino-trust-gauge-mini__value,
.new-tab-slider__item .casino-radar-mini__value {
    font-size: 0.93rem;
}
.new-tab-slider__item .casino-card-product__score-item .small {
    font-size: 0.68rem !important;
    color: #64748b !important;
    line-height: 1.15;
}
.new-tab-slider__item .casino-card-product h3 {
    margin-bottom: 0.52rem !important;
    font-size: 0.98rem;
    line-height: 1.22;
}
.new-tab-slider__item .casino-card__real-player-tests {
    margin-bottom: 0.64rem !important;
}
.new-tab-slider__item .casino-card-product .btn-success,
.new-tab-slider__item .casino-card-product__cta {
    min-height: 2.35rem;
    border-radius: 0.72rem;
    font-size: 0.88rem;
    font-weight: 800;
    background: var(--new-tab-accent) !important;
    border-color: var(--new-tab-accent) !important;
}
.new-tab-slider__item .casino-card-product .btn-success:hover,
.new-tab-slider__item .casino-card-product__cta:hover {
    background: var(--new-tab-accent-hover) !important;
    border-color: var(--new-tab-accent-hover) !important;
}
@media (max-width: 575.98px) {
    .new-tab-slider__item .casino-card-product__logo-top-img {
        height: 168px;
        padding: 0.9rem 1rem;
    }
    .new-tab-slider__item .casino-card-product .card-body {
        padding: 1.18rem 1rem 1.08rem;
    }
    .new-tab-slider__item .casino-card-product__scores {
        margin-bottom: 0.95rem !important;
    }
    .new-tab-slider__item .casino-card-product__score-item .small {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    .new-tab-slider__item .casino-card-product h3 {
        margin-bottom: 0.9rem !important;
        font-size: 1.2rem;
    }
    .new-tab-slider__item .casino-card__real-player-tests {
        margin-bottom: 0.9rem !important;
    }
    .new-tab-slider__item .casino-card-product .btn-success,
    .new-tab-slider__item .casino-card-product__cta {
        min-height: 2.75rem;
        font-size: 1.02rem;
    }
}

@media (min-width: 576px) {
    .new-tab-slider { --new-tab-per-view: 2; }
}
@media (min-width: 768px) {
    .new-tab-slider { --new-tab-per-view: 3; }
}
@media (min-width: 996px) {
    .new-tab-slider { --new-tab-per-view: 4; }
}
@media (min-width: 1200px) {
    .new-tab-slider { --new-tab-per-view: 5; }
}
@media (min-width: 1400px) {
    .new-tab-slider { --new-tab-per-view: 6; }
}

@media (min-width: 992px) {
    .new-tab-slider__track { scrollbar-width: none; padding-left: 0.25rem; padding-right: 0.25rem; }
    .new-tab-slider__track::-webkit-scrollbar { height: 0; }
}
.new-tab-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    padding: 0;
}
.new-tab-slider__btn:hover {
    background: #f8fafc;
    box-shadow: var(--app-shadow-hover);
    color: #334155;
}
.new-tab-slider__btn:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(26, 135, 75, 0.22);
}
.new-tab-slider__btn svg {
    display: block;
}
.new-tab-slider__btn--prev { left: 0; }
.new-tab-slider__btn--next { right: 0; }
@media (max-width: 991.98px) {
    .new-tab-slider__btn--prev { left: 0.25rem; }
    .new-tab-slider__btn--next { right: 0.25rem; }
}

/* Promo strip inside block: subtle wave texture */
.bonuses-block--home-new .bonuses-block__inner {
    background:
        radial-gradient(ellipse 120% 80% at 10% 50%, rgba(250, 204, 21, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 100% 60% at 90% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.03) 8px,
            rgba(255, 255, 255, 0.03) 9px
        ),
        linear-gradient(125deg, #1a874b 0%, #166534 48%, #14532d 100%);
}
@media (max-width: 767.98px) {
    .new-tab-tabs {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 1.25rem;
    }
    .new-tab-tab {
        flex: 1 1 auto;
        min-width: 5.5rem;
        justify-content: center;
    }
}

/* Bonus card (home + listing): text text text Bootstrap — text text text */
.bonus-card.card {
    border: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.07);
}
.bonus-card.card:hover {
    box-shadow: var(--app-shadow-hover);
}
.bonus-card__logo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    border-radius: var(--bs-card-border-radius) var(--bs-card-border-radius 0 0);
    line-height: 0;
}
.bonus-card__logo-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    padding: 0.75rem;
    box-sizing: border-box;
}
.bonus-card__logo-fallback { padding: 0.75rem; }
.bonus-card__type { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.02em; }

/* Compare tool */
.compare-page {
    background:
        radial-gradient(circle at 15% 8%, rgba(31, 209, 93, 0.12), transparent 25rem),
        radial-gradient(circle at 85% 18%, rgba(59, 130, 246, 0.1), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 44%, #f8fbff 100%);
}
.compare-hero {
    max-width: 760px;
    margin: 0 auto 1.35rem;
    text-align: center;
}
.compare-hero__eyebrow,
.compare-result__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(31, 209, 93, 0.12);
    color: #04783b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.compare-hero h1 {
    margin-bottom: 0.7rem;
    color: #08152d;
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.06em;
}
.compare-hero p {
    margin: 0;
    color: #53657f;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.65;
}
.compare-tool,
.compare-result {
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}
.compare-tool {
    margin: 0 auto 1.5rem;
    padding: 1.1rem;
    max-width: 980px;
}
.compare-tool__head,
.compare-result__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.compare-tool__head h2,
.compare-result__head h2,
.compare-result--empty h2 {
    margin: 0;
    color: #08152d;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 850;
    letter-spacing: -0.04em;
}
.compare-tool__head p {
    margin: 0.25rem 0 0;
    color: #64748b;
    font-size: 0.94rem;
}
.compare-tool__limit {
    flex: 0 0 auto;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: #08152d;
    color: #dfffea;
    font-size: 0.78rem;
    font-weight: 800;
}
.compare-tool__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 13rem);
    gap: 0.75rem;
}
.compare-tool__search {
    position: relative;
}
.compare-tool__input {
    width: 100%;
    min-height: 3.15rem;
    border: 1px solid #dbe5f2;
    border-radius: 0.95rem;
    background: #f8fbff;
    color: #0f172a;
    padding: 0.8rem 1rem;
    font-weight: 650;
    outline: none;
}
.compare-tool__input:focus {
    border-color: rgba(31, 209, 93, 0.7);
    box-shadow: 0 0 0 0.18rem rgba(31, 209, 93, 0.12);
    background: #fff;
}
.compare-tool__submit {
    min-height: 3.15rem;
    border: 0;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #1fd15d 0%, #15b54f 100%);
    color: #06152b;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(31, 209, 93, 0.22);
}
.compare-tool__submit:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}
.compare-tool__dropdown {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 1050;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}
.compare-tool__option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0.9rem;
    color: #0f172a;
    font-weight: 750;
    text-decoration: none;
}
.compare-tool__option + .compare-tool__option {
    border-top: 1px solid #eef2f7;
}
.compare-tool__option:hover {
    background: #f3f9f5;
    color: #08152d;
}
.compare-tool__option img,
.compare-tool__chip img,
.compare-table th img {
    border-radius: 0.55rem;
    object-fit: contain;
    background: #08152d;
}
.compare-tool__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.9rem;
}
.compare-tool__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.48rem 0.4rem 0.42rem;
    border: 1px solid rgba(31, 209, 93, 0.28);
    border-radius: 999px;
    background: #08152d;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
}
.compare-tool__chip button {
    width: 1.45rem;
    height: 1.45rem;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
}
.compare-tool__hint {
    margin: 0.75rem 0 0;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 650;
}
.compare-result {
    padding: 1.1rem;
}
.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid #e5edf7;
    border-radius: 1.05rem;
}
.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}
.compare-table th,
.compare-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9eef6;
    border-right: 1px solid #e9eef6;
    color: #26364d;
    vertical-align: middle;
}
.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}
.compare-table tr:last-child td {
    border-bottom: 0;
}
.compare-table thead th {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    color: #08152d;
    font-weight: 900;
}
.compare-table tbody td:first-child {
    width: 12rem;
    background: #f8fbff;
    color: #08152d;
    font-weight: 850;
}
.compare-table th a {
    color: #0b65c7;
    font-weight: 850;
}
.compare-table__review,
.compare-table__play,
.compare-table__blocked {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    margin: 0.1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 850;
    text-decoration: none;
}
.compare-table__review {
    border: 1px solid rgba(11, 101, 199, 0.24);
    color: #0b65c7;
    background: #eef6ff;
}
.compare-table__play {
    color: #06152b;
    background: #1fd15d;
}
.compare-table__blocked {
    color: #64748b;
    background: #e2e8f0;
}
.compare-result--empty {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.compare-result--empty p {
    margin: 0;
    color: #64748b;
}
@media (max-width: 767.98px) {
    .compare-page .container {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }
    .compare-hero {
        text-align: left;
    }
    .compare-tool,
    .compare-result {
        padding: 0.85rem;
        border-radius: 1.1rem;
    }
    .compare-tool__head,
    .compare-result__head {
        flex-direction: column;
    }
    .compare-tool__controls {
        grid-template-columns: 1fr;
    }
}

/* All bonuses listing: toolbar + card layout (promo row, round logo) */
.bonuses-listing-toolbar {
    border: 1px solid #edf2f7;
    border-radius: 0.85rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.bonuses-listing-toolbar .card-body {
    min-height: 4rem;
}
.bonuses-listing-toolbar__select {
    min-width: 10rem;
    max-width: 16rem;
    border-color: #e2e8f0;
    border-radius: 0.55rem;
    min-height: 2.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    background-color: #fff;
}
.bonuses-listing-toolbar__select:disabled {
    opacity: 1;
}
.bonus-card--listing.card {
    border: 1px solid #e9eef5;
    border-radius: 0.7rem;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    min-height: 20rem;
    transition: box-shadow 0.16s ease, transform 0.16s ease;
}
.bonus-card--listing.card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}
.bonus-card__listing-upper {
    padding: 0.65rem 0.75rem 0;
    text-align: center;
}
.bonus-card__head {
    min-height: 1.125rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.4rem;
}
.bonus-card__status {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 1.5rem);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0.18rem 0.38rem;
    border-radius: 999px;
    text-align: left;
    white-space: nowrap;
}
.bonus-card__status--no-code {
    color: #16a34a;
    background: #f2fff7;
    border: 1px solid #c8f1d3;
}
.bonus-card__status--code {
    color: #3b82f6;
    background: #f6faff;
    border: 1px solid #dbeafe;
}
.bonus-card__code-wrap {
    position: relative;
    text-align: center;
    margin-top: 0.85rem;
}
.bonus-card__code-box {
    border-radius: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.15;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    padding: 0.44rem 0.7rem;
}
.bonus-card__code-box--no-code {
    background: #f9fffb;
    border: 1px solid #d8f2dd;
    color: #60a572;
    font-weight: 600;
    gap: 0.35rem;
}
.bonus-card__no-code-line {
    font-size: 0.82rem;
    line-height: 1;
}
.bonus-card__code-box--has-code {
    position: relative;
    background: #fff;
    border: 1px solid #bfd6f5;
    color: #347be7;
    cursor: pointer;
    padding-right: 2.6rem;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.bonus-card__code-box--has-code:hover {
    background: #f8fbff;
    border-color: #9fc2f1;
    box-shadow: inset 0 0 0 1px rgba(52, 123, 231, 0.08);
}
.bonus-card__code-text {
    font-weight: 700;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    color: #4a6fa3;
}
.bonus-card__copy-icon-box {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.45rem;
    border: 1px solid #d7e7fb;
    border-radius: 0.35rem;
    color: #8cb2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s, color 0.15s, background 0.15s, border-color 0.15s;
}
.bonus-card__code-box--has-code.is-copied {
    background: #2ec84d;
    border-color: #2ec84d;
    color: #fff;
}
.bonus-card__code-box--has-code.is-copied .bonus-card__code-text {
    color: #fff;
    opacity: 1;
}
.bonus-card__code-box--has-code.is-copied .bonus-card__copy-icon-box {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
}
.bonus-card__code-box--has-code.is-copied .bonus-card__copy-icon-box svg {
    opacity: 0;
}
.bonus-card__code-box--has-code.is-copied .bonus-card__copy-icon-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
}
.bonus-card__copy-toast {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-0.1rem);
    background: #fff;
    color: #3b82f6;
    font-size: 0.64rem;
    font-weight: 600;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
    border: 1px solid #edf2f7;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.bonus-card__code-wrap.is-copied .bonus-card__copy-toast {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-0.45rem);
}
.bonus-card__copy-hint {
    font-size: 0.56rem;
    letter-spacing: 0.01em;
    color: #94a3b8 !important;
}
.bonus-card__listing-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    padding: 0.8rem 0.85rem 0;
    text-align: center;
}
.bonus-card__listing-title {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
    min-height: 3.25em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bonus-card__listing-title a {
    display: block;
    color: #111827;
}
.bonus-card__listing-title a:hover {
    color: #111827;
}
.bonus-card__listing-type {
    margin: 0.35rem 0 0;
    min-height: 1rem;
    font-size: 0.67rem;
    line-height: 1.2;
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bonus-card__listing-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
    padding: 0.95rem 0.85rem 0.8rem;
}
.bonus-card__cta {
    text-transform: none;
    font-size: 0.78rem;
    line-height: 1.2;
    min-height: 2rem;
    border-radius: 0.45rem;
    padding: 0.5rem 0.75rem !important;
    box-shadow: none !important;
}
.bonus-card__terms-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.2;
    font-weight: 500;
    color: #2563eb !important;
}
.bonus-card__terms-link:hover {
    color: #2563eb !important;
}
.bonus-card__info-btn {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.52rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.bonus-card__info-btn:hover {
    color: #64748b;
    border-color: #cbd5e1;
    background: #f8fafc;
}
.bonus-card__info-icon {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}
.bonus-card__logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.15rem;
    height: 4.15rem;
    margin: 0.7rem auto 0;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}
.bonus-card__logo-circle-img {
    width: 76%;
    height: 76%;
    object-fit: contain;
    object-position: center;
}
.bonus-card__logo-fallback-circle {
    display: block;
    line-height: 1.2;
    font-size: 0.55rem;
    max-width: 100%;
}
@media (max-width: 575.98px) {
    .bonus-card--listing.card {
        min-height: auto;
    }
    .bonus-card__listing-upper {
        padding: 0.82rem 0.95rem 0;
    }
    .bonus-card--listing .bonus-card__logo-circle {
        width: 8rem;
        height: 8rem;
        margin-top: 1rem;
    }
    .bonus-card--listing .bonus-card__logo-circle-img {
        width: 82%;
        height: 82%;
    }
    .bonus-card__status {
        font-size: 0.67rem;
        line-height: 1.15;
        padding: 0.24rem 0.48rem;
    }
    .bonus-card__info-btn {
        width: 1.35rem;
        height: 1.35rem;
        font-size: 0.64rem;
    }
    .bonus-card__code-wrap {
        margin-top: 1.05rem;
    }
    .bonus-card__code-box {
        min-height: 2.28rem;
        font-size: 0.92rem;
    }
    .bonus-card__no-code-line {
        font-size: 0.98rem;
    }
    .bonus-card__copy-hint {
        font-size: 0.68rem;
    }
    .bonus-card__listing-body {
        padding: 1rem 1rem 0;
    }
    .bonus-card__listing-title {
        font-size: 1.08rem;
        line-height: 1.3;
    }
    .bonus-card__listing-type {
        margin-top: 0.5rem;
        font-size: 0.82rem;
    }
    .bonus-card__listing-actions {
        padding: 1.05rem 1rem 0.95rem;
    }
    .bonus-card__cta {
        min-height: 2.45rem;
        font-size: 0.95rem;
        border-radius: 0.62rem;
    }
    .bonus-card__terms-link {
        margin-top: 0.65rem !important;
        font-size: 0.82rem;
    }
}

/* Bonus card: related strip variant */
.bonus-card--related.card {
    border: 1px solid rgba(173, 189, 226, 0.32);
    border-radius: 1rem;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}
.bonus-card--related.card:hover {
    transform: none;
    box-shadow: 0 12px 26px rgba(4, 17, 44, 0.14);
}
.bonus-card__related-top {
    min-height: 6.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bonus-card__related-logo {
    width: 100%;
    max-width: 100%;
    height: 7rem;
    object-fit: contain;
    object-position: center;
}
.bonus-card__related-fallback {
    display: block;
    line-height: 1.2;
}
.bonus-card__related-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 13.25rem;
    padding: 0.95rem 0.95rem 0.85rem;
    background: #fff;
}
.bonus-card__related-type {
    align-self: flex-start;
    max-width: 100%;
    margin-bottom: 0.7rem;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7c91b9;
    background: #f4f8ff;
}
.bonus-card__related-title {
    margin: 0 0 0.95rem;
    font-size: 0.98rem;
    line-height: 1.32;
    min-height: 3.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bonus-card__related-title a {
    color: #0f172a;
}
.bonus-card__related-title a:hover {
    color: #0f172a;
}
.bonus-card__related-cta {
    min-height: 2.35rem;
    border-radius: 0.55rem;
    font-size: 0.83rem;
    font-weight: 700;
    box-shadow: none !important;
}
.bonus-card__related-terms {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.55rem;
    color: #5f7398;
    font-size: 0.7rem;
    line-height: 1.2;
    text-decoration: underline;
}
.bonus-card__related-terms:hover {
    color: #5f7398;
}

/* Bonus show page */
.bonus-show-hero {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.bonus-show-hero__logo {
    flex: 0 0 auto;
    text-decoration: none;
}
.bonus-show-hero__logo img {
    display: block;
    width: 7.25rem;
    height: 7.25rem;
    padding: 1rem;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.bonus-show-hero__content {
    flex: 1 1 auto;
    min-width: 0;
}
.bonus-show-hero__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.7rem;
    padding: 0.2rem 0.55rem;
    border: 1px solid #e4ecfb;
    border-radius: 999px;
    background: #f7faff;
    color: #6f85ab;
    font-size: 0.68rem;
    line-height: 1.1;
    font-weight: 700;
}
.bonus-show-hero__title {
    margin: 0 0 0.45rem;
    max-width: none;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #0f172a;
}
.bonus-show-hero__terms {
    display: inline-flex;
    align-items: center;
    color: #5070a8;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: underline;
}
.bonus-show-hero__terms--muted {
    color: #94a3b8;
    text-decoration: none;
}
.bonus-show-hero__actions {
    margin-top: 1rem;
}
.bonus-show-hero__cta {
    min-width: 9.75rem;
    min-height: 2.65rem;
    border-radius: 0.65rem;
    padding: 0.7rem 1.15rem;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.18);
}
.bonus-show-alert {
    max-width: 50rem;
}

.bonus-show-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.bonus-show-stat-card {
    --bonus-stat-color: #7b8aa6;
    --bonus-stat-bg: #f8fbff;
    --bonus-stat-border: #dde9f8;
    min-height: 8.55rem;
    padding: 1rem 1.05rem;
    border: 1px solid #e7edf6;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.bonus-show-stat-card--sky {
    --bonus-stat-color: #6ea3df;
    --bonus-stat-bg: #f5faff;
    --bonus-stat-border: #dcecff;
}
.bonus-show-stat-card--gold {
    --bonus-stat-color: #c9a246;
    --bonus-stat-bg: #fffaf0;
    --bonus-stat-border: #efdcae;
}
.bonus-show-stat-card--green {
    --bonus-stat-color: #25c46c;
    --bonus-stat-bg: #f2fff7;
    --bonus-stat-border: #cdeedb;
}
.bonus-show-stat-card--violet {
    --bonus-stat-color: #b183f1;
    --bonus-stat-bg: #fbf7ff;
    --bonus-stat-border: #e8dafc;
}
.bonus-show-stat-card--slate {
    --bonus-stat-color: #74a7e6;
    --bonus-stat-bg: #f5faff;
    --bonus-stat-border: #dcecff;
}
.bonus-show-stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    margin-bottom: 0.95rem;
    border: 1px solid var(--bonus-stat-border);
    border-radius: 0.85rem;
    background: var(--bonus-stat-bg);
    color: var(--bonus-stat-color);
}
.bonus-show-stat-card__icon svg,
.bonus-show-stat-card__code-copy svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}
.bonus-show-stat-card__label {
    font-size: 0.83rem;
    line-height: 1.25;
    color: #56657f;
}
.bonus-show-stat-card__value {
    margin-top: auto;
    padding-top: 0.55rem;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}
.bonus-show-stat-card__code-wrap {
    position: relative;
    width: 100%;
    margin-top: auto;
}
.bonus-show-stat-card__code-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    border: 1px dashed #e8cc82;
    border-radius: 0.75rem;
    background: #fffdfa;
    color: #b48a1d;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.bonus-show-stat-card__code-btn:hover {
    border-color: #dcb65b;
    background: #fffcf5;
}
.bonus-show-stat-card__code-btn.is-copied {
    border-color: #1fbf66;
    background: #1fbf66;
    color: #fff;
}
.bonus-show-stat-card__code-text {
    font-family: inherit;
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.bonus-show-stat-card__code-copy {
    flex: 0 0 auto;
    position: relative;
    width: 1.9rem;
    height: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(180, 138, 29, 0.18);
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}
.bonus-show-stat-card__code-btn.is-copied .bonus-show-stat-card__code-copy {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}
.bonus-show-stat-card__code-btn.is-copied .bonus-show-stat-card__code-copy svg {
    opacity: 0;
}
.bonus-show-stat-card__code-btn.is-copied .bonus-show-stat-card__code-copy::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}
.bonus-show-stat-card__copy-toast {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-0.1rem);
    background: #fff;
    color: #3b82f6;
    font-size: 0.64rem;
    font-weight: 600;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
    border: 1px solid #edf2f7;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.bonus-show-stat-card__code-wrap.is-copied .bonus-show-stat-card__copy-toast {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-0.45rem);
}
.bonus-show-stat-card__hint {
    margin-top: 0.45rem;
    font-size: 0.68rem;
    line-height: 1.2;
    color: #96a1b5;
    align-self: center;
}
.bonus-show-stat-card__review-link {
    margin-top: auto;
    padding-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #2f6ec9;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
}
.bonus-show-stat-card__review-link:hover {
    color: #2f6ec9;
}
.bonus-show-overview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}
.bonus-show-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid #e4ebf4;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.2;
}
.bonus-show-meta-pill__label {
    color: #64748b;
}
.bonus-show-meta-pill__value {
    font-weight: 700;
    color: #0f172a;
}
.bonus-show-summary {
    margin-top: 0.35rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.55;
}
.bonus-show-content {
    max-width: 52rem;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.75;
}

/* Bonus show: related bonuses strip */
.bonus-related {
    margin-top: 0.75rem;
    padding: 1.15rem 1.15rem 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #112c5d 0%, #0d2450 100%);
    box-shadow: 0 18px 34px rgba(9, 22, 49, 0.18);
}
.bonus-related__title {
    margin: 0 0 0.2rem;
    font-size: 1.6rem;
    line-height: 1.12;
    color: #fff;
}
.bonus-related__subtitle {
    margin: 0;
    color: rgba(225, 234, 248, 0.72);
    font-size: 0.84rem;
    line-height: 1.45;
}
.bonus-related__discover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0.9rem;
    background: transparent;
    color: #fff;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}
.bonus-related__discover:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.bonus-related__arrow {
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.bonus-related__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.15rem;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.bonus-related__slide {
    scroll-snap-align: start;
    width: min(255px, calc((100% - 1rem) / 2));
}
.related-bonuses-track::-webkit-scrollbar {
    height: 8px;
}
.related-bonuses-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.24);
    border-radius: 4px;
}
.related-bonuses-track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}
@media (min-width: 992px) {
    .bonus-related {
        padding: 1.2rem 1.25rem 1.35rem;
    }
    .bonus-related__slide {
        width: calc((100% - 3rem) / 4);
    }
}
@media (max-width: 767.98px) {
    .bonus-show-hero {
        flex-direction: column;
        gap: 1rem;
    }
    .bonus-show-hero__logo img {
        width: 6rem;
        height: 6rem;
        padding: 0.85rem;
    }
    .bonus-show-hero__title {
        max-width: none;
    }
    .bonus-show-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bonus-related {
        padding: 1rem;
    }
}
@media (max-width: 575.98px) {
    .bonus-show-overview__grid {
        grid-template-columns: 1fr;
    }
    .bonus-related__slide {
        width: min(255px, 82vw);
    }
}

/* --- Footer (reference-style) --- */
.reference-payments__title {
    font-size: clamp(2.15rem, 3.5vw, 3.15rem);
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
}
.reference-payments__intro {
    max-width: 42rem;
    color: #64748b;
    font-size: 1rem;
}
.reference-payments__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.75rem;
    margin-bottom: 1.75rem;
}
.reference-payments__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.1;
}
.reference-payments__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    color: #334155;
    flex-shrink: 0;
}
.reference-payments__trust-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.reference-payments__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.reference-payments__card {
    position: relative;
    border-radius: 1.15rem;
    border: 1px solid #e6edf7;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.reference-payments__card--light {
    background:
        radial-gradient(circle at 88% 14%, rgba(212, 225, 252, 0.95) 0, rgba(212, 225, 252, 0.55) 16%, transparent 34%),
        linear-gradient(180deg, #fdfefe 0%, #eef4ff 100%);
}
.reference-payments__card--warm {
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 222, 198, 0.92) 0, rgba(255, 222, 198, 0.45) 19%, transparent 36%),
        linear-gradient(180deg, #fff8f0 0%, #fff0e2 100%);
}
.reference-payments__card--dark {
    color: #fff;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.02) 24%, transparent 40%),
        linear-gradient(180deg, #1b1d24 0%, #171920 100%);
}
.reference-payments__card--dark::after {
    content: "₿";
    position: absolute;
    right: 1.2rem;
    top: 2rem;
    font-size: 8rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.reference-payments__card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1rem 1rem 0.95rem;
    z-index: 1;
}
.reference-payments__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.reference-payments__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 700;
}
.reference-payments__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.82rem;
    height: 0.82rem;
    flex-shrink: 0;
}
.reference-payments__badge-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.reference-payments__badge--blue {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}
.reference-payments__badge--amber {
    color: #d97706;
    background: rgba(245, 158, 11, 0.14);
}
.reference-payments__badge--dark {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
}
.reference-payments__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #334155;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}
.reference-payments__arrow svg {
    width: 1rem;
    height: 1rem;
    display: block;
    transform: translateX(0.02rem);
}
.reference-payments__visual {
    display: flex;
    align-items: center;
    min-height: 6rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
}
.reference-payments__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.reference-payments__logo--visa {
    font-size: clamp(2.8rem, 5vw, 3.55rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.06em;
    color: #1d4ed8;
}
.reference-payments__logo--mastercard {
    position: relative;
    width: 7.2rem;
    height: 3.7rem;
}
.reference-payments__mc-circle {
    position: absolute;
    top: 0;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    opacity: 0.95;
}
.reference-payments__mc-circle--left {
    left: 0;
    background: #dc2626;
}
.reference-payments__mc-circle--right {
    right: 0;
    background: #f59e0b;
}
.reference-payments__logo--bitcoin {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #f7931a;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
}
.reference-payments__logo--generic {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #e2e8f0;
    color: #334155;
    font-size: 1.5rem;
    font-weight: 800;
}
.reference-payments__copy {
    margin-bottom: 1rem;
}
.reference-payments__card-title {
    margin: 0 0 0.15rem;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    color: inherit;
}
.reference-payments__card-subtitle {
    margin: 0;
    font-size: 1rem;
    color: inherit;
    opacity: 0.74;
}
.reference-payments__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(100, 116, 139, 0.15);
}
.reference-payments__card--dark .reference-payments__meta {
    border-top-color: rgba(255, 255, 255, 0.08);
}
.reference-payments__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    min-width: 0;
    color: inherit;
}
.reference-payments__meta-item span {
    min-width: 0;
}
.reference-payments__meta-item strong,
.reference-payments__meta-item small {
    display: block;
}
.reference-payments__meta-item strong {
    font-size: 0.96rem;
    line-height: 1.15;
    font-weight: 700;
}
.reference-payments__meta-item small {
    font-size: 0.85rem;
    line-height: 1.2;
    opacity: 0.72;
}
.reference-payments__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    flex-shrink: 0;
}
.reference-payments__meta-icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
}
.reference-payments__meta-icon--bank {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.12);
}
.reference-payments__meta-icon--shield {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.12);
}
.reference-payments__card--dark .reference-payments__meta-icon--bank {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.14);
}
.reference-payments__card--dark .reference-payments__meta-icon--shield {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}
.reference-payments__footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(100, 116, 139, 0.15);
    color: #1d4ed8;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}
.reference-payments__card--warm .reference-payments__footer-link {
    color: #b45309;
}
.reference-payments__card--dark .reference-payments__footer-link {
    color: #fbbf24;
    border-top-color: rgba(255, 255, 255, 0.08);
}
.reference-payments__footer-link svg {
    width: 1rem;
    height: 1rem;
}
.reference-payments__note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1rem 1.35rem;
    border: 1px solid #e5edf8;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}
.reference-payments__note-copy {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}
.reference-payments__note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    flex-shrink: 0;
    margin-left: 0.05rem;
}
.reference-payments__note-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
}
.reference-payments__note-copy strong,
.reference-payments__note-copy span {
    display: block;
}
.reference-payments__note-copy strong {
    font-size: 0.95rem;
    color: #334155;
}
.reference-payments__note-copy span {
    color: #64748b;
}
.reference-payments__note-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.reference-payments__note-link svg {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
    transform: translateX(0.02rem);
}
@media (min-width: 768px) {
    .reference-payments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1200px) {
    .reference-payments__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991.98px) {
    .reference-payments__card-title {
        font-size: 1.7rem;
    }
    .reference-payments__note {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 575.98px) {
    .reference-payments__trust-row {
        flex-direction: column;
        gap: 0.7rem;
    }
    .reference-payments__meta {
        grid-template-columns: 1fr;
    }
    .reference-payments__note-copy {
        align-items: flex-start;
    }
}
.site-footer {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
                radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 32px 32px,
                linear-gradient(180deg, #141923 0%, #10141d 100%);
    color: #c7ccd6;
    padding: 2.5rem 0 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__top {
    padding-bottom: 1.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-footer__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 2.2fr);
    gap: 1.4rem 2rem;
}
.site-footer__column {
    min-width: 0;
}
.site-footer__column--signup {
    padding-left: 0.6rem;
}
.site-footer__title {
    color: #f3f6fb;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.52rem;
    font-weight: 800;
}
.site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1.7rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15 0%, #eab308 100%);
}
.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.48rem;
}
.site-footer__list a {
    color: #d4d8e1;
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.35;
    font-weight: 600;
}
.site-footer__list a:hover {
    color: #fff;
}
.site-footer__newsletter {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 0.95rem;
}
.site-footer__newsletter-main {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.site-footer__input {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.24);
    border-radius: 0.38rem;
    padding: 0.68rem 0.82rem;
    font-size: 0.94rem;
    color: #0f172a;
    box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.04);
}
.site-footer__submit {
    border: 0;
    border-radius: 0.38rem;
    background: #facc15;
    color: #1f2937;
    padding: 0.72rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(250, 204, 21, 0.16);
}
.site-footer__consents {
    display: grid;
    gap: 0.5rem;
}
.site-footer__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.8rem;
    color: #aeb6c2;
    line-height: 1.45;
}
.site-footer__consent input[type="checkbox"] {
    margin-top: 0.16rem;
    width: 0.92rem;
    height: 0.92rem;
    accent-color: #facc15;
    flex-shrink: 0;
}
.site-footer__consent-note {
    margin: 0;
    font-size: 0.8rem;
    color: #aeb6c2;
    line-height: 1.45;
}
.site-footer__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.site-footer__checks li {
    font-size: 0.8rem;
    color: #aeb6c2;
    line-height: 1.45;
    position: relative;
    padding-left: 1.2rem;
}
.site-footer__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.38em;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    border: 1px solid #8992a0;
    background: transparent;
}
.site-footer__feedback {
    margin: -0.35rem 0 0.65rem;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
}
.site-footer__feedback--success {
    color: #86efac;
}
.site-footer__feedback--error {
    color: #fca5a5;
}
.site-toast {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translate(-50%, 14px);
    z-index: 1200;
    background: rgba(15, 23, 42, 0.96);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.6rem;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 600;
    box-shadow: 0 14px 32px rgba(2, 8, 23, 0.34);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
}
.site-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.site-footer__middle {
    padding: 1rem 0 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-footer__brands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}
.site-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    flex: 1 1 0;
    color: rgba(236, 240, 246, 0.78);
}
.site-footer__brand svg,
.site-footer__brand img {
    width: 100%;
    max-width: 7.2rem;
    height: auto;
    display: block;
    opacity: 0.88;
}
.site-footer__brand--ecogra svg,
.site-footer__brand--ecogra img {
    max-width: 8.9rem;
    transform: translateY(1px);
}
.site-footer__brand--gambleaware svg,
.site-footer__brand--gambleaware img {
    max-width: 5.5rem;
    transform: translateY(0.5px);
}
.site-footer__brand--itech svg,
.site-footer__brand--itech img {
    max-width: 2.85rem;
    transform: translateY(0.5px);
}
.site-footer__brand--18plus svg,
.site-footer__brand--18plus img {
    max-width: 2.25rem;
}
.site-footer__brand--gli svg,
.site-footer__brand--gli img {
    max-width: 5.5rem;
    transform: translateY(-0.5px);
}
.site-footer__brand--mga svg,
.site-footer__brand--mga img {
    max-width: 8.7rem;
    transform: translateY(1px);
}
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.95rem;
}
.site-footer__bottom p {
    color: #a8b0bc;
    font-size: 0.86rem;
    font-weight: 500;
}
.site-footer__social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.site-footer__social a {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #eef2f7;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.78rem;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.site-footer__social a svg {
    width: 0.95rem;
    height: 0.95rem;
}
.site-footer__social a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .site-footer__layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .site-footer__column--signup {
        grid-column: 1 / -1;
        padding-left: 0;
    }
}

@media (max-width: 991.98px) {
    .site-footer__brands {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .site-footer__brand {
        flex: 0 0 calc(33.333% - 0.8rem);
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 2rem;
    }
    .site-footer__layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .site-footer__newsletter {
        align-items: stretch;
    }
    .site-footer__newsletter-main {
        flex-direction: column;
        align-items: stretch;
    }
    .site-footer__submit {
        width: 100%;
    }
    .site-footer__brands {
        gap: 1rem 1.2rem;
    }
    .site-footer__brand {
        flex: 0 0 calc(50% - 0.6rem);
    }
    .site-footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

/* Changelog block on casino page: preview at most 3 lines */
.casino-changelog-entry {
    min-width: 0;
    flex: 1 1 0%;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    color: #334155;
    line-height: 1.45;
}

/* --- About Us landing --- */
.about-page {
    background: #fff;
}
.about-page > nav[aria-label="breadcrumb"] .container { padding-top: 1rem; }
.about-page__hero {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 253, 255, 0.98) 100%),
        linear-gradient(90deg, rgba(52, 211, 153, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.about-page__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 52%, rgba(74, 222, 128, 0.12) 0, transparent 28%),
        radial-gradient(circle at 86% 54%, rgba(56, 189, 248, 0.12) 0, transparent 32%),
        repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.09) 0 1px, transparent 1px 58px);
    opacity: 0.45;
    pointer-events: none;
}
.about-page__hero .container {
    position: relative;
    z-index: 1;
}
.about-page__hero-title {
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.about-page__hero-accent {
    display: block;
    width: 2.3rem;
    height: 0.2rem;
    margin: -0.1rem auto 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf 0%, #22c55e 100%);
}
.about-page__hero-lead {
    max-width: 42rem;
    color: #334155;
    font-size: 1.04rem;
    line-height: 1.72;
}
@media (min-width: 992px) {
    .about-page__hero .container {
        padding-top: 3.15rem !important;
        padding-bottom: 3.3rem !important;
    }
    .about-page__hero-title {
        font-size: 3.4rem;
    }
}
.about-page__section {
    position: relative;
}
.about-page__section--mission {
    background: #fff;
}
.about-page__section--muted {
    background: #f8fafc;
}
.about-page__section--awards {
    background: #eef2f6;
}
.about-page__heading {
    color: #0f172a;
    letter-spacing: -0.02em;
}
.about-page__text {
    color: #334155;
    line-height: 1.7;
    font-size: 1.02rem;
}
.about-page__sublead {
    max-width: 40rem;
    color: #64748b;
    line-height: 1.65;
}
.about-page__mission-card {
    padding: 1.15rem 1.15rem 1.3rem;
    border: 1px solid #eef3f8;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.about-page__section-accent {
    display: block;
    width: 2.6rem;
    height: 0.18rem;
    margin: -0.3rem 0 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf 0%, #22c55e 100%);
}
.about-page__mission-visual {
    position: relative;
    width: min(100%, 18.5rem);
    aspect-ratio: 1;
    min-height: 18.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 62%, rgba(246, 249, 252, 0.6) 100%);
}
.about-page__mission-ring {
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(210, 220, 231, 0.9);
}
.about-page__mission-ring--outer {
    width: 82%;
    height: 82%;
    box-shadow: inset 0 0 0 0.7rem rgba(249, 252, 255, 0.9);
}
.about-page__mission-ring--inner {
    width: 49%;
    height: 49%;
    border-color: rgba(226, 235, 242, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.about-page__mission-center {
    position: absolute;
    inset: 50%;
    width: 5.25rem;
    height: 5.25rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #31d48c 0%, #1db55f 68%, #189650 100%);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-page__mission-center::before {
    content: "";
    position: absolute;
    inset: -0.7rem;
    border-radius: 50%;
    border: 0.5rem solid rgba(214, 246, 227, 0.8);
}
.about-page__mission-center-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 2.55rem;
    height: 2.55rem;
    color: #fff;
}
.about-page__mission-center-icon svg,
.about-page__mission-node-icon svg,
.about-page__mission-node-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.about-page__mission-node {
    position: absolute;
    width: 3.45rem;
    height: 3.45rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ecf2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-page__mission-node-icon {
    display: inline-flex;
    width: 1.7rem;
    height: 1.7rem;
    color: #334155;
}
.about-page__mission-node--top-left {
    top: 2.35rem;
    left: 2rem;
}
.about-page__mission-node--top-right {
    top: 2.9rem;
    right: 1.7rem;
}
.about-page__mission-node--bottom {
    bottom: 2.35rem;
    left: 50%;
    transform: translateX(-50%);
}
.about-page__mission-dot {
    position: absolute;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.08);
}
.about-page__mission-dot--left {
    top: 5.35rem;
    left: 0.9rem;
}
.about-page__mission-dot--right {
    top: 5rem;
    right: 0.75rem;
}
.about-page__mission-dot--bottom-left {
    bottom: 3.75rem;
    left: 3.65rem;
}
.about-page__pillar-emoji {
    font-size: 1.75rem;
    line-height: 1;
    color: #b45309;
}
.about-page__pillars-card {
    padding: 0.95rem 1rem 1.1rem;
    border: 1px solid #e9eff5;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #fcfeff 0%, #f7fbfe 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.about-page__pillars-grid {
    border-top: 1px solid transparent;
}
.about-page__pillar-col {
    position: relative;
}
.about-page__pillar-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.1rem;
    right: 0;
    bottom: 1.1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(226, 232, 240, 0) 0%, rgba(226, 232, 240, 0.9) 14%, rgba(226, 232, 240, 0.9) 86%, rgba(226, 232, 240, 0) 100%);
}
.about-page__pillar {
    padding: 0.85rem 1rem 0.7rem;
}
.about-page__pillar-icon {
    width: 3.2rem;
    height: 3.2rem;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    color: #334155;
}
.about-page__pillar-icon svg {
    width: 1.7rem;
    height: 1.7rem;
    display: block;
}
.about-page__pillar-title {
    margin: 0 0 0.45rem;
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.2;
    font-weight: 700;
}
.about-page__pillar-text {
    color: #6b7280;
    font-size: 0.84rem;
    line-height: 1.55;
    max-width: 13rem;
    margin-left: auto;
    margin-right: auto;
}
.about-page__section--facts {
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}
.about-page__facts-title,
.about-page__how-title {
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.about-page__facts-accent {
    display: block;
    width: 2.35rem;
    height: 0.18rem;
    margin: 0 auto 0.95rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf 0%, #22c55e 100%);
}
.about-page__facts-sublead,
.about-page__how-sublead {
    max-width: 36rem;
    font-size: 0.95rem;
}
.about-page__section--how {
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
}
.about-page__how-intro {
    margin-bottom: 1.7rem;
}
.about-page__how-grid {
    justify-content: center;
}
@media (max-width: 991.98px) {
    .about-page__mission-card {
        padding: 1rem;
    }
    .about-page__section-accent {
        margin-left: auto;
        margin-right: auto;
    }
    .about-page__pillar-col:nth-child(3)::after {
        display: none;
    }
    .about-page__how-card {
        padding: 0.95rem;
    }
}
@media (max-width: 575.98px) {
    .about-page__hero-title {
        font-size: 2.55rem;
    }
    .about-page__hero-lead {
        font-size: 0.98rem;
    }
    .about-page__mission-visual {
        min-height: 16rem;
    }
    .about-page__mission-center {
        width: 4.5rem;
        height: 4.5rem;
    }
    .about-page__mission-node {
        width: 3rem;
        height: 3rem;
    }
    .about-page__mission-node--top-left {
        top: 2rem;
        left: 1.1rem;
    }
    .about-page__mission-node--top-right {
        top: 2.45rem;
        right: 0.95rem;
    }
    .about-page__pillars-card {
        padding: 0.95rem 0.7rem 0.85rem;
    }
    .about-page__pillar-col::after,
    .about-page__pillar-col:nth-child(2)::after,
    .about-page__pillar-col:nth-child(4)::after {
        display: none;
    }
    .about-page__pillar {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
    .about-page__pillar-title {
        font-size: 0.94rem;
    }
    .about-page__pillar-text {
        font-size: 0.79rem;
    }
    .about-page__facts-title,
    .about-page__how-title {
        font-size: 2rem;
    }
    .about-page__how-card {
        gap: 0.8rem;
    }
    .about-page__how-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
    .about-page__how-heading {
        font-size: 0.95rem;
    }
    .about-page__how-text {
        font-size: 0.8rem;
    }
}
.about-page__how-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 0.95rem;
    padding: 1rem 1rem 0.95rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: box-shadow var(--app-transition), border-color var(--app-transition);
}
.about-page__section--muted .about-page__how-card {
    background: #fff;
}
.about-page__how-card:hover {
    box-shadow: var(--app-shadow-hover);
    border-color: #cbd5e1;
}
.about-page__how-icon {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.about-page__how-icon svg {
    width: 1.65rem;
    height: 1.65rem;
    display: block;
}
.about-page__how-content {
    min-width: 0;
}
.about-page__how-heading {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}
.about-page__how-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
}
.about-page__how-link:hover {
    color: #1e293b;
}
.about-page__how-text {
    color: #6b7280;
    font-size: 0.84rem;
    line-height: 1.5;
}
.about-page__stats {
    background: transparent;
}
.about-page__stats-shell {
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(24, 38, 63, 0.86);
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at 8% 76%, rgba(247, 180, 58, 0.24) 0%, rgba(247, 180, 58, 0.08) 12%, transparent 26%),
        linear-gradient(180deg, #131d32 0%, #0c1423 100%);
    box-shadow: 0 14px 28px rgba(9, 16, 29, 0.24);
}
.about-page__stats-title {
    color: #5b7fbd;
    letter-spacing: -0.02em;
    line-height: 1.18;
}
.about-page__stats-intro {
    max-width: 15rem;
    color: rgba(239, 244, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.6;
}
.about-page__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.about-page__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(248, 250, 252, 0.78);
    font-weight: 700;
}
.about-page__stat {
    min-height: 6.5rem;
    padding: 0.85rem 1rem 0.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.about-page__stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: #f0ba43;
    letter-spacing: -0.04em;
}
.about-page__section--product {
    padding-top: 2.3rem !important;
}
.about-page__mockup {
    overflow: hidden;
    border: 1px solid #dfe8f2;
    border-radius: 0.95rem;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}
.about-page__mockup-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.95rem;
    background: #132540;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}
.about-page__mockup-dots {
    display: inline-flex;
    gap: 0.3rem;
}
.about-page__mockup-dots i {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    display: block;
}
.about-page__mockup-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid #ecf1f6;
    background: #f8fbff;
}
.about-page__mockup-pill {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0.18rem 0.55rem;
    border: 1px solid #dbe5f1;
    border-radius: 0.55rem;
    background: #fff;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 600;
}
.about-page__mockup-body {
    padding: 0.8rem;
    background: #fff;
}
.about-page__mockup-panels {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.95fr;
    gap: 0.6rem;
}
.about-page__mockup-panel {
    min-height: 8rem;
    padding: 0.6rem;
    border: 1px solid #edf2f7;
    border-radius: 0.7rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.about-page__mockup-panel-title {
    margin-bottom: 0.55rem;
    color: #94a3b8;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.about-page__mockup-list,
.about-page__mockup-compare {
    display: grid;
    gap: 0.45rem;
}
.about-page__mockup-list span,
.about-page__mockup-compare span {
    display: block;
    height: 1.55rem;
    border-radius: 0.45rem;
    background: linear-gradient(90deg, #f8fafc 0%, #eef5fb 100%);
    border: 1px solid #e4edf6;
}
.about-page__mockup-radar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.5rem;
}
.about-page__mockup-radar-shape {
    width: 5.6rem;
    height: 5.6rem;
    clip-path: polygon(50% 4%, 82% 24%, 76% 74%, 50% 96%, 24% 74%, 18% 24%);
    background: linear-gradient(180deg, rgba(125, 211, 176, 0.78) 0%, rgba(125, 211, 176, 0.4) 100%);
    border: 1px solid rgba(52, 211, 153, 0.55);
}
.about-page__mockup-radar-score {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d8e8df;
    color: #0f766e;
    font-size: 1rem;
    font-weight: 800;
}
.about-page__trophy {
    display: inline-flex;
    width: 5.6rem;
    height: 5.6rem;
    align-items: center;
    justify-content: center;
}
.about-page__trophy svg {
    width: 100%;
    height: 100%;
    display: block;
}
.about-page__award-card {
    background: #fff;
    border-radius: 0.9rem;
    border: 1px solid #e8eef5;
    padding: 1rem 1.05rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.about-page__award-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b45309;
    margin-bottom: 0.5rem;
}
.about-page__award-title {
    color: #1e293b;
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 700;
}
.about-page__award-text {
    color: #6b7280;
    font-size: 0.82rem;
    line-height: 1.45;
}
@media (max-width: 991.98px) {
    .about-page__stats-grid {
        border-left: 0;
    }
    .about-page__stats-intro {
        max-width: none;
    }
    .about-page__mockup-panels {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767.98px) {
    .about-page__stats-shell {
        padding: 1rem;
    }
    .about-page__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .about-page__stats-grid {
        grid-template-columns: 1fr;
    }
    .about-page__stat {
        min-height: auto;
    }
    .about-page__stat-value {
        font-size: 1.95rem;
    }
    .about-page__mockup-toolbar {
        padding: 0.65rem;
    }
    .about-page__mockup-body {
        padding: 0.65rem;
    }
}
.about-page__cta {
    border-color: #e2e8f0 !important;
}
.about-page__cta-card {
    padding: 2rem 1.2rem 1.4rem;
    border: 1px solid #e9eff5;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}
.about-page__cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2f9e63;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.about-page__cta-kicker-icon,
.about-page__cta-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    color: #7c8b9f;
}
.about-page__cta-kicker-icon {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    color: #22c55e;
}
.about-page__cta-kicker-icon svg,
.about-page__cta-button-icon svg,
.about-page__cta-link-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.about-page__cta-title {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}
.about-page__cta-text {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
}
.about-page__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.9rem;
    padding: 0.72rem 1.4rem;
    border-radius: 0.75rem;
    font-size: 0.98rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}
.about-page__cta-button-icon {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    flex: 0 0 1rem;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about-page__cta-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 1.6rem;
}
.about-page__cta-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}
.about-page__cta-link-item:not(:last-child) {
    border-right: 1px solid #e5edf4;
}
.about-page__cta-link-icon {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
}
@media (max-width: 767.98px) {
    .about-page__cta-card {
        padding: 1.7rem 1rem 1.2rem;
    }
    .about-page__cta-links {
        margin-top: 1.35rem;
        gap: 0.8rem;
    }
    .about-page__cta-link-item {
        padding: 0;
        border-right: 0 !important;
    }
}
@media (max-width: 575.98px) {
    .about-page__cta-title {
        font-size: 2.1rem;
    }
    .about-page__cta-text {
        font-size: 0.94rem;
    }
    .about-page__cta-button {
        width: 100%;
        max-width: 14rem;
    }
    .about-page__cta-link-item {
        font-size: 0.84rem;
    }
}

/* --- Contact page card --- */
.contact-page {
    background: #fff;
    padding-top: 1rem;
}
.contact-page__shell {
    background: transparent;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 50vh;
}

/* --- How We Score page --- */
.how-we-score-page__header {
    max-width: 60rem;
}
.how-we-score-page__title {
    color: #0f172a;
    font-size: clamp(2.4rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
}
.how-we-score-page__description {
    margin-bottom: 0;
    color: #64748b !important;
    font-size: 1.08rem;
    line-height: 1.6;
}
.how-we-score-doc__intro {
    max-width: 70rem;
    margin-bottom: 1.25rem;
}
.how-we-score-doc__lead {
    margin-bottom: 0;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.72;
}
.how-we-score-doc__stack {
    display: grid;
    gap: 1rem;
}
.how-we-score-doc__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid #e8eef5;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.how-we-score-doc__card--compact {
    align-items: center;
}
.how-we-score-doc__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(220, 252, 231, 0.95) 0%, rgba(220, 252, 231, 0.82) 56%, rgba(240, 253, 244, 1) 100%);
    color: #22a55b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.08);
}
.how-we-score-doc__icon svg {
    width: 1.75rem;
    height: 1.75rem;
    display: block;
}
.how-we-score-doc__body {
    min-width: 0;
}
.how-we-score-doc__title {
    margin: 0 0 0.35rem;
    color: #1e293b;
    font-size: 1.95rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.how-we-score-doc__text {
    margin: 0 0 0.8rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.62;
}
.how-we-score-doc__text--compact {
    margin-bottom: 0.55rem;
}
.how-we-score-doc__list {
    margin: 0 0 0.85rem;
    padding-left: 1.1rem;
    color: #334155;
}
.how-we-score-doc__list li {
    margin-bottom: 0.2rem;
    line-height: 1.58;
}
.how-we-score-doc code {
    padding: 0 0.16em;
    border-radius: 0.28rem;
    background: #f8fafc;
    color: #d946ef;
    font-size: 0.92em;
}
.how-we-score-doc__formula {
    margin: 0.2rem 0 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid #dfe8ef;
    border-radius: 0.7rem;
    background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.how-we-score-doc__formula--single {
    margin-bottom: 0;
}
.how-we-score-doc__formula-line {
    margin-bottom: 0.2rem;
    color: #1e293b;
    font-size: 0.9rem;
    line-height: 1.45;
}
.how-we-score-doc__formula-code {
    color: #334155;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.86rem;
    line-height: 1.55;
}
.how-we-score-doc__formula-code + .how-we-score-doc__formula-line {
    margin-top: 0.55rem;
}
.how-we-score-doc__note {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
}
.how-we-score-doc__table-wrap {
    margin: 0.25rem 0 0.85rem;
    overflow-x: auto;
}
.how-we-score-doc__table {
    width: 100%;
    min-width: 42rem;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}
.how-we-score-doc__table th,
.how-we-score-doc__table td {
    padding: 0.82rem 0.9rem;
    border-bottom: 1px solid #eaf0f6;
    border-right: 1px solid #eaf0f6;
    vertical-align: top;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.55;
}
.how-we-score-doc__table th:last-child,
.how-we-score-doc__table td:last-child {
    border-right: 0;
}
.how-we-score-doc__table tbody tr:last-child td {
    border-bottom: 0;
}
.how-we-score-doc__table th {
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}
.how-we-score-doc__table td strong {
    color: #0f172a;
}

/* --- Methodology page --- */
.methodology-page__header {
    margin-bottom: 1.5rem !important;
}
.methodology-page__title {
    color: #0f172a;
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0.4rem;
}
.methodology-page__accent {
    display: block;
    width: 2.35rem;
    height: 0.18rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2dd4bf 0%, #22c55e 100%);
}
.methodology-page__description {
    max-width: 34rem;
    color: #64748b !important;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0;
}
.methodology-doc .lead {
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.7;
}
.methodology-doc__intro-card {
    padding: 1.2rem 1.2rem 1.25rem;
    border: 1px solid #e8eef5;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.methodology-doc__lead {
    margin-bottom: 1.35rem;
}
.methodology-doc__publish {
    padding-top: 1rem;
    border-top: 1px solid #edf2f7;
}
.methodology-doc__section-head--compact {
    margin-bottom: 0.85rem;
}
.methodology-doc__publish-list {
    display: grid;
    gap: 0.75rem;
}
.methodology-doc__publish-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.methodology-doc__publish-bullet {
    width: 0.65rem;
    height: 0.65rem;
    margin-top: 0.42rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0.24rem rgba(34, 197, 94, 0.12);
    flex: 0 0 auto;
}
.methodology-doc__publish-text {
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.65;
}
.methodology-doc__publish-text strong {
    color: #1e293b;
}
.methodology-doc__section-head {
    margin-bottom: 1rem;
}
.methodology-doc__section-head .h4,
.methodology-doc__tools-main .h4 {
    color: #0f172a;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.methodology-doc__section-sublead {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.6;
}
.methodology-doc__process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}
.methodology-doc__process-card {
    grid-column: span 2;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}
.methodology-doc__process-card:nth-last-child(-n+2) {
    grid-column: span 3;
}
.methodology-doc__process-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.95rem 1rem 0.9rem;
    border-bottom: 1px solid #edf2f7;
}
.methodology-doc__process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}
.methodology-doc__process-step {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid #d9ebe0;
    border-radius: 50%;
    background: #fff;
    color: #22a55b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex: 0 0 auto;
}
.methodology-doc__process-title {
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.methodology-doc__process-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.35rem;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    flex: 0 0 auto;
}
.methodology-doc__process-icon svg,
.methodology-doc__tool-chip-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.methodology-doc__process-body {
    padding: 0.95rem 1rem 1rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
}
.methodology-doc__process-body a {
    font-weight: 600;
}
.methodology-doc__tools-card {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.7fr);
    gap: 0;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}
.methodology-doc__tools-main {
    padding: 1.1rem 1.2rem;
    border-right: 1px solid #edf2f7;
}
.methodology-doc__tools-main p {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.65;
}
.methodology-doc__tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.methodology-doc__tool-chip {
    min-height: 100%;
    padding: 1rem 0.95rem;
    border-left: 1px solid #edf2f7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.methodology-doc__tools-grid .methodology-doc__tool-chip:first-child {
    border-left: 0;
}
.methodology-doc__tool-chip-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.35rem;
    border-radius: 50%;
    background: #f2fbf4;
    color: #22a55b;
    flex: 0 0 auto;
}
.methodology-doc__tool-chip-title {
    margin: 0 0 0.25rem;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
}
.methodology-doc__tool-chip-text {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}
.methodology-doc__note {
    margin-top: 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid #e8eef5;
    border-radius: 0.75rem;
    background: #f8fbff;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.methodology-doc__note-icon {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 1px solid #bfd3ea;
    color: #5b7fae;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex: 0 0 auto;
}
.methodology-doc__policies {
    display: grid;
    gap: 1rem;
}
.methodology-doc__policy-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.methodology-doc__policy-icon {
    width: 2.3rem;
    height: 2.3rem;
    padding: 0.45rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.methodology-doc__policy-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.methodology-doc__policy-card--warning .methodology-doc__policy-icon {
    background: #fff7ed;
    color: #f59e0b;
}
.methodology-doc__policy-card--info .methodology-doc__policy-icon {
    background: #eff6ff;
    color: #3b82f6;
}
.methodology-doc__policy-content {
    min-width: 0;
}
.methodology-doc__policy-title {
    margin: 0 0 0.25rem;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.methodology-doc__policy-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.methodology-doc__policy-text strong {
    font-weight: 700;
}
@media (max-width: 991.98px) {
    .methodology-doc__process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .methodology-doc__process-card,
    .methodology-doc__process-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }
    .methodology-doc__tools-card {
        grid-template-columns: 1fr;
    }
    .methodology-doc__tools-main {
        border-right: 0;
        border-bottom: 1px solid #edf2f7;
    }
}
@media (max-width: 767.98px) {
    .methodology-doc__process-grid,
    .methodology-doc__tools-grid {
        grid-template-columns: 1fr;
    }
    .methodology-doc__tool-chip {
        border-left: 0;
        border-top: 1px solid #edf2f7;
    }
    .methodology-doc__policy-card {
        gap: 0.8rem;
    }
}
@media (max-width: 575.98px) {
    .how-we-score-page__title {
        font-size: 2.35rem;
    }
    .how-we-score-page__description,
    .how-we-score-doc__lead {
        font-size: 0.98rem;
    }
    .how-we-score-doc__card {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1rem;
    }
    .how-we-score-doc__icon {
        width: 3rem;
        height: 3rem;
    }
    .how-we-score-doc__icon svg {
        width: 1.45rem;
        height: 1.45rem;
    }
    .how-we-score-doc__title {
        font-size: 1.6rem;
    }
    .how-we-score-doc__formula {
        padding: 0.85rem;
    }
    .methodology-page__title {
        font-size: 2.35rem;
    }
    .methodology-doc__intro-card {
        padding: 1rem;
    }
    .methodology-doc__section-head .h4,
    .methodology-doc__tools-main .h4 {
        font-size: 1.75rem;
    }
    .methodology-doc__process-card-head,
    .methodology-doc__process-body,
    .methodology-doc__tools-main,
    .methodology-doc__tool-chip,
    .methodology-doc__policy-card {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
    .methodology-doc__policy-title {
        font-size: 0.96rem;
    }
    .methodology-doc__policy-text {
        font-size: 0.9rem;
    }
}

/* --- Editorial Policy page --- */
.editorial-policy-page__header {
    margin-bottom: 1.35rem !important;
}
.editorial-policy-page__hero {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.editorial-policy-page__hero-icon {
    width: 4.9rem;
    height: 4.9rem;
    padding: 0.95rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    border: 1px solid #e8eef5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #64748b;
    flex: 0 0 auto;
}
.editorial-policy-page__hero-icon svg,
.editorial-policy-doc__card-icon svg,
.editorial-policy-doc__contact-link-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.editorial-policy-page__title {
    color: #0f172a;
    font-size: clamp(2.1rem, 3.4vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.editorial-policy-page__description {
    margin-bottom: 0;
    color: #64748b !important;
    font-size: 1rem;
    line-height: 1.6;
}
.editorial-policy-doc__intro {
    margin-bottom: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e8eef5;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.editorial-policy-doc__cards,
.editorial-policy-doc__contact {
    display: grid;
    gap: 0.9rem;
}
.editorial-policy-doc__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid #e8eef5;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.editorial-policy-doc__card-icon {
    width: 3rem;
    height: 3rem;
    padding: 0.6rem;
    border-radius: 50%;
    background: #f8fbff;
    color: #64748b;
    flex: 0 0 auto;
}
.editorial-policy-doc__card-content {
    min-width: 0;
    padding-left: 0.95rem;
    border-left: 1px solid #e9eef4;
    flex: 1 1 auto;
}
.editorial-policy-doc__card-title {
    margin: 0 0 0.3rem;
    color: #1e293b;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 700;
}
.editorial-policy-doc__card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.editorial-policy-doc__card-text strong {
    color: #1e293b;
}
.editorial-policy-doc__card--contact {
    align-items: center;
}
.editorial-policy-doc__contact-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.35rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid #bfd4ec;
    border-radius: 999px;
    background: #fff;
    color: #4f75aa;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    flex: 0 0 auto;
}
.editorial-policy-doc__contact-link:hover {
    color: #4f75aa;
    background: #f8fbff;
}
.editorial-policy-doc__contact-link-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .editorial-policy-doc__card--contact {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .editorial-policy-doc__contact-link {
        margin-left: 4.95rem;
    }
}
@media (max-width: 767.98px) {
    .editorial-policy-page__hero {
        align-items: flex-start;
    }
    .editorial-policy-doc__card {
        gap: 0.85rem;
    }
}
@media (max-width: 575.98px) {
    .editorial-policy-page__hero {
        flex-direction: column;
        gap: 0.85rem;
    }
    .editorial-policy-page__hero-icon {
        width: 4.2rem;
        height: 4.2rem;
        padding: 0.8rem;
        border-radius: 1rem;
    }
    .editorial-policy-page__title {
        font-size: 2.2rem;
    }
    .editorial-policy-doc__intro,
    .editorial-policy-doc__card {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
    .editorial-policy-doc__card {
        flex-direction: column;
    }
    .editorial-policy-doc__card-content {
        padding-left: 0;
        padding-top: 0.1rem;
        border-left: 0;
    }
    .editorial-policy-doc__contact-link {
        width: 100%;
        margin-left: 0;
    }
}

/* --- Responsible gaming page --- */
.responsible-gaming-doc {
    max-width: 940px;
}

/* --- Privacy page --- */
.privacy-doc {
    max-width: 980px;
}
.privacy-doc__intro {
    margin: 0 0 0.55rem;
    color: #334155;
    font-size: 1rem;
    line-height: 1.68;
}
.privacy-doc__cards {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}
.privacy-doc__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid #e6edf5;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.privacy-doc__icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #169f54;
    background: #d8f2e3;
    border: 1px solid #afe0c3;
    flex: 0 0 auto;
}
.privacy-doc__icon svg {
    width: 1.84rem;
    height: 1.84rem;
    display: block;
}
.privacy-doc__icon--asset img {
    width: 60%;
    height: 60%;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    display: block;
}
.privacy-doc__content {
    min-width: 0;
}
.privacy-doc__title {
    margin: 0 0 0.35rem;
    color: #1e293b;
    font-size: 1.95rem;
    font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.privacy-doc__text {
    margin: 0 0 0.7rem;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.62;
}
.privacy-doc__list {
    margin: 0 0 0.7rem;
    padding-left: 1.2rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.privacy-doc__list li + li {
    margin-top: 0.28rem;
}
.privacy-doc__list strong {
    color: #1e293b;
}
.privacy-doc__list--rights {
    column-count: 2;
    column-gap: 1.7rem;
}

/* --- Terms page --- */
.terms-doc {
    max-width: 980px;
}
.terms-doc__hero-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e6edf5;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.terms-doc__hero-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d8f2e3;
    border: 1px solid #afe0c3;
    color: #169f54;
}
.terms-doc__hero-icon svg {
    width: 2rem;
    height: 2rem;
    display: block;
}
.terms-doc__hero-icon--asset img {
    width: 60%;
    height: 60%;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    display: block;
}
.terms-doc__hero-title {
    margin: 0 0 0.2rem;
    color: #0f172a;
    font-size: clamp(1.9rem, 1.5rem + 1vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}
.terms-doc__hero-subtitle {
    margin: 0 0 0.45rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.5;
}
.terms-doc__hero-text {
    margin: 0 0 0.45rem;
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.62;
}
.terms-doc__hero-updated {
    color: #64748b;
    font-size: 0.85rem;
}
.terms-doc__cards {
    display: grid;
    gap: 0.82rem;
    margin-top: 0.9rem;
}
.terms-doc__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.92rem 1.05rem;
    border: 1px solid #e6edf5;
    border-radius: 0.9rem;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}
.terms-doc__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d8f2e3;
    border: 1px solid #afe0c3;
    color: #169f54;
    font-size: 1.2rem;
    font-weight: 700;
    flex: 0 0 auto;
}
.terms-doc__icon--asset {
    font-size: 0;
    font-weight: 400;
}
.terms-doc__icon--asset img {
    width: 60%;
    height: 60%;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    display: block;
}
.terms-doc__content {
    min-width: 0;
    border-left: 1px solid #cbead8;
    padding-left: 0.95rem;
}
.terms-doc__title {
    margin: 0 0 0.28rem;
    color: #1e293b;
    font-size: 1.95rem;
    font-size: clamp(1.2rem, 1.02rem + 0.45vw, 1.55rem);
    line-height: 1.2;
    font-weight: 800;
}
.terms-doc__text {
    margin: 0 0 0.62rem;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.58;
}
.terms-doc__list {
    margin: 0 0 0.62rem;
    padding-left: 1.2rem;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.58;
}
.terms-doc__list li + li {
    margin-top: 0.24rem;
}
@media (max-width: 767.98px) {
    .terms-doc__hero-card,
    .terms-doc__card {
        grid-template-columns: 1fr;
        gap: 0.72rem;
        padding: 0.88rem 0.9rem;
    }
    .terms-doc__content {
        border-left: 0;
        padding-left: 0;
    }
    .terms-doc__hero-icon,
    .terms-doc__icon {
        width: 2.8rem;
        height: 2.8rem;
    }
}
.privacy-doc__list--rights li {
    break-inside: avoid;
}
.privacy-doc__contact {
    margin-top: 1.2rem;
}
.privacy-doc__contact-title {
    margin: 0 0 0.45rem;
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 800;
}
@media (max-width: 767.98px) {
    .privacy-doc__card {
        grid-template-columns: 1fr;
        gap: 0.72rem;
        padding: 0.9rem 0.9rem;
    }
    .privacy-doc__icon {
        width: 2.8rem;
        height: 2.8rem;
    }
    .privacy-doc__icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .privacy-doc__list--rights {
        column-count: 1;
    }
}
.responsible-gaming-doc__intro {
    margin: 0 0 1.1rem;
    color: #3b475b;
    font-size: 1.03rem;
    line-height: 1.63;
}
.responsible-gaming-doc__cards {
    display: grid;
    gap: 0.95rem;
}
.responsible-gaming-doc__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid #e8edf4;
    border-radius: 0.78rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    padding: 0.95rem 1.05rem;
}
.responsible-gaming-doc__icon {
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22a95f;
    background: radial-gradient(circle at 50% 42%, #f4fff8 0%, #e6f8ee 72%, #d7f1e2 100%);
    border: 1px solid rgba(34, 169, 95, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    flex: 0 0 3.7rem;
    line-height: 0;
    overflow: visible;
    transform: translateY(0.08rem);
}
.responsible-gaming-doc__icon svg {
    display: block;
    width: 1.78rem;
    height: 1.78rem;
    max-width: 1.78rem;
    max-height: 1.78rem;
    overflow: visible;
    stroke: currentColor;
    transform-origin: center;
}
.responsible-gaming-doc__icon svg * {
    vector-effect: non-scaling-stroke;
}
.responsible-gaming-doc__content {
    min-width: 0;
}
.responsible-gaming-doc__title {
    margin: 0 0 0.38rem;
    color: #0f172a;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.27;
    letter-spacing: -0.01em;
}
.responsible-gaming-doc__text {
    margin: 0 0 0.55rem;
    color: #4c596d;
    font-size: 0.96rem;
    line-height: 1.6;
}
.responsible-gaming-doc__list {
    margin: 0 0 0.6rem;
    padding-left: 1.15rem;
    color: #273447;
    font-size: 0.95rem;
    line-height: 1.6;
}
.responsible-gaming-doc__list li + li {
    margin-top: 0.15rem;
}
.responsible-gaming-doc a {
    color: #2456a6;
}
.responsible-gaming-doc a:hover {
    color: #163d7a;
}
@media (max-width: 991.98px) {
    .responsible-gaming-doc__card {
        gap: 0.85rem;
        padding: 0.9rem 0.92rem;
    }
    .responsible-gaming-doc__icon {
        width: 3.4rem;
        height: 3.4rem;
        flex-basis: 3.4rem;
    }
    .responsible-gaming-doc__icon svg {
        width: 1.6rem;
        height: 1.6rem;
        max-width: 1.6rem;
        max-height: 1.6rem;
    }
    .responsible-gaming-doc__title {
        font-size: 1.45rem;
    }
}
@media (max-width: 575.98px) {
    .responsible-gaming-doc__card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .responsible-gaming-doc__icon {
        width: 3rem;
        height: 3rem;
        flex-basis: 3rem;
        transform: none;
    }
    .responsible-gaming-doc__icon svg {
        width: 1.42rem;
        height: 1.42rem;
        max-width: 1.42rem;
        max-height: 1.42rem;
    }
    .responsible-gaming-doc__title {
        font-size: 1.2rem;
    }
    .responsible-gaming-doc__intro,
    .responsible-gaming-doc__text,
    .responsible-gaming-doc__list {
        font-size: 0.92rem;
    }
}

.contact-page__card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #e8eaed;
    max-width: 1080px;
    overflow: hidden;
}
.contact-page__col {
    padding: 2rem 1.75rem;
}
@media (min-width: 992px) {
    .contact-page__col {
        padding: 2.5rem 2.75rem;
    }
    .contact-page__col--form {
        border-right: 1px solid #e8eaed;
    }
}
.contact-page__title {
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.contact-page__intro {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
}
.contact-page__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #334155;
    margin-bottom: 0.45rem;
}
.contact-page__field {
    position: relative;
}
.contact-page__field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}
.contact-page__field--textarea .contact-page__field-icon {
    top: 1rem;
    transform: none;
}
.contact-page__field-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-page__control,
.contact-page__form .form-select {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.55rem;
    font-size: 0.95rem;
    min-height: 3rem;
    color: #0f172a;
    padding-left: 2.7rem;
}
.contact-page__control:focus,
.contact-page__form .form-select:focus {
    background-color: #fff;
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.12);
}
.contact-page__textarea {
    min-height: 8.8rem;
    resize: vertical;
    padding-top: 0.9rem;
}
.contact-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(180deg, #1fc25e 0%, #18b352 100%);
    color: #fff;
    border: 1px solid rgba(12, 104, 47, 0.15);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.82rem 1.4rem;
    border-radius: 0.6rem;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.2);
}
.contact-page__submit:hover {
    background: linear-gradient(180deg, #20cb63 0%, #17ac4f 100%);
    border-color: rgba(12, 104, 47, 0.2);
    color: #fff;
}
.contact-page__submit-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-page__submit-icon svg,
.contact-page__email-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-page__response-time {
    margin-top: 0.9rem;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.4;
    text-align: center;
}
.contact-page__response-time-icon {
    margin-right: 0.3rem;
    color: #94a3b8;
}
.contact-page__email-list {
    display: grid;
    gap: 0.35rem;
}
.contact-page__email-item {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.contact-page__email-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid #edf2f7;
    text-decoration: none;
}
.contact-page__email-item:last-child .contact-page__email-card {
    border-bottom: 0;
}
.contact-page__email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.55rem;
    border-radius: 50%;
    background: #f3fbf5;
    color: #22a55b;
    flex: 0 0 auto;
}
.contact-page__email-copy {
    min-width: 0;
    flex: 1 1 auto;
}
.contact-page__email-label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}
.contact-page__email-link {
    display: block;
    margin-top: 0.12rem;
    text-decoration: none;
    font-weight: 600;
    color: #4f8ed9;
}
.contact-page__email-arrow {
    color: #94a3b8;
    font-size: 1.35rem;
    line-height: 1;
}
.contact-page__tips {
    padding: 0.95rem 1rem;
    border-radius: 0.8rem;
    background: #f3fbf9;
    border: 1px solid #dff2eb;
}
.contact-page__tips-title {
    margin-bottom: 0.55rem;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
}
.contact-page__tips-list {
    padding-left: 0;
    display: grid;
    gap: 0.35rem;
}
.contact-page__tips-list li {
    list-style: none;
    display: flex;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.45;
}
.contact-page__tips-check {
    color: #22a55b;
    font-weight: 800;
    flex: 0 0 auto;
}
.contact-page__support-copy a {
    font-weight: 600;
}
.contact-page__alert {
    border-radius: 0.75rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

/* Alternatives + Player reviews */
.casino-community-shell {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #edf2f7;
    border-radius: 1.35rem;
    padding: 1rem 1rem 1.05rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}
.casino-community-shell__header,
.casino-review-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.casino-community-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    color: #0f172a;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.casino-community-title--sm {
    font-size: 1.06rem;
}
.casino-community-title__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}
.casino-community-title__icon svg {
    width: 1.08rem;
    height: 1.08rem;
}
.casino-community-title__icon--green {
    color: #16a34a;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(240, 253, 244, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-community-title__icon--blue {
    color: #3b82f6;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.18) 0%, rgba(239, 246, 255, 0.98) 72%, rgba(255, 255, 255, 1) 100%);
}
.casino-community-subtitle {
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.35;
}
.casino-carousel-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}
.casino-carousel-nav__button {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.casino-carousel-nav__button:hover {
    color: #2563eb;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}
.casino-carousel-nav__button svg {
    width: 0.95rem;
    height: 0.95rem;
}
.casino-alternatives-track {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.9rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.1rem;
}
.casino-alternatives-track::-webkit-scrollbar {
    display: none;
}
.casino-alternatives-track__item {
    flex: 0 0 min(14.25rem, calc(50vw - 1.5rem));
    min-width: 12.35rem;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .casino-alternatives-track__item {
        flex-basis: calc((100% - 1.7rem) / 3);
    }
}
@media (min-width: 996px) {
    .casino-alternatives-track__item {
        flex-basis: calc((100% - 2.55rem) / 4);
    }
}
@media (min-width: 1200px) {
    .casino-alternatives-track__item {
        flex-basis: calc((100% - 3.4rem) / 5);
    }
}
@media (min-width: 1400px) {
    .casino-alternatives-track__item {
        flex-basis: calc((100% - 4.25rem) / 6);
    }
}
.casino-alternatives-section .casino-card-product {
    border-radius: 1rem !important;
    border: 1px solid #e9eef6 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04) !important;
}
.casino-alternatives-section .casino-card-product__logo-top {
    border-radius: 1rem 1rem 0 0;
}
.casino-alternatives-section .casino-card-product__logo-top-img {
    height: 92px;
    padding: 0.72rem;
}
.casino-alternatives-section .casino-card-product .card-body {
    padding: 0.8rem 0.75rem 0.85rem;
}
.casino-alternatives-section .casino-card-product__scores {
    min-height: auto;
    gap: 0.45rem !important;
    margin-bottom: 0.65rem !important;
    padding-inline: 0;
}
.casino-alternatives-section .casino-card-product__score-item {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1 1 0;
}
.casino-alternatives-section .casino-trust-gauge-mini,
.casino-alternatives-section .casino-radar-mini {
    width: 2.7rem;
    height: 2.7rem;
}
.casino-alternatives-section .casino-trust-gauge-mini__value,
.casino-alternatives-section .casino-radar-mini__value {
    font-size: 0.92rem;
}
.casino-alternatives-section .casino-card-product__score-item .small {
    font-size: 0.68rem !important;
    color: #64748b !important;
    line-height: 1.15;
}
.casino-alternatives-section .casino-card-product h3 {
    margin-bottom: 0.5rem !important;
    font-size: 0.98rem;
    line-height: 1.2;
}
.casino-alternatives-section .casino-card__real-player-tests {
    margin-bottom: 0.6rem !important;
}
.casino-alternatives-section .casino-card__real-player-tests .fw-semibold {
    margin-bottom: 0.45rem !important;
    font-size: 0.77rem;
}
.casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dt {
    font-size: 0.58rem;
    margin-bottom: 0.08rem !important;
}
.casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dd {
    font-size: 0.63rem;
    color: #475569;
    line-height: 1.25;
}
.casino-alternatives-section .casino-card-product .btn {
    min-height: 2.25rem;
    border-radius: 0.6rem;
    font-size: 0.88rem;
    font-weight: 800;
}
@media (max-width: 575.98px) {
    .casino-alternatives-track__item {
        flex-basis: min(18rem, calc(88vw - 1.2rem));
        min-width: min(18rem, calc(88vw - 1.2rem));
    }
    .casino-alternatives-section .casino-card-product__logo-top-img {
        height: 168px;
        padding: 0.9rem 1rem;
    }
    .casino-alternatives-section .casino-card-product .card-body {
        padding: 1.18rem 1rem 1.08rem;
    }
    .casino-alternatives-section .casino-card-product__scores {
        margin-bottom: 0.95rem !important;
    }
    .casino-alternatives-section .casino-card-product__score-item .small {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    .casino-alternatives-section .casino-card-product h3 {
        margin-bottom: 0.9rem !important;
        font-size: 1.2rem;
    }
    .casino-alternatives-section .casino-card__real-player-tests {
        margin-bottom: 0.9rem !important;
    }
    .casino-alternatives-section .casino-card__real-player-tests .fw-semibold {
        font-size: 1.15rem;
    }
    .casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dt {
        font-size: 1rem;
    }
    .casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dd {
        font-size: 1.08rem;
    }
    .casino-alternatives-section .casino-card-product .btn {
        min-height: 2.75rem;
        font-size: 1.02rem;
    }
}
.casino-player-reviews-shell {
    padding-top: 1.05rem;
}
.casino-review-cta {
    padding-bottom: 0.1rem;
}
.casino-review-cta__intro {
    min-width: 0;
}
.casino-review-cta__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.casino-review-rating-card {
    min-width: 13.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid #edf2f7;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}
.casino-review-rating-card__label {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 0.38rem;
}
.casino-review-rating-card__value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.casino-review-rating-card__value {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.casino-review-rating-card__star {
    display: inline-flex;
    align-items: center;
}
.casino-review-rating-card__star img {
    width: 1rem;
    height: 1rem;
    display: block;
    object-fit: contain;
}
.casino-review-rating-card__count {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}
.casino-review-cta__button {
    min-height: 3.15rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1.5px solid rgba(59, 130, 246, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.98rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}
.casino-review-cta__button:hover {
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.4);
}
.casino-review-cta__button-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.casino-review-form-shell {
    border-radius: 1rem;
    border-color: #e9eef5 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}
.casino-review-feed {
    border-top: 1px solid #edf2f7;
    padding-top: 1rem;
}
.casino-review-feed__header {
    margin-bottom: 0.8rem;
}
.casino-player-reviews__list {
    display: flex;
    flex-direction: column;
}
.casino-player-review {
    border-top: 1px solid #edf2f7;
}
.casino-player-review:first-child {
    border-top: 0;
}
.casino-player-review__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 0.95rem 0;
}
.casino-player-review__avatar {
    width: 2.8rem;
    height: 2.8rem;
    flex-shrink: 0;
}
.casino-player-review__content {
    min-width: 0;
    flex: 1 1 auto;
}
.casino-player-review__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.45rem;
}
.casino-player-review__identity {
    min-width: 0;
}
.casino-player-review__name {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}
.casino-player-review__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    margin-top: 0.18rem;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
}
.casino-player-review__rating-icon {
    display: inline-flex;
    align-items: center;
}
.casino-player-review__rating-icon img {
    width: 0.875rem;
    height: 0.875rem;
    display: block;
    object-fit: contain;
}
.casino-player-review__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.casino-player-review__more {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.casino-player-review__line {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.28rem;
}
.casino-player-review__line-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.14rem;
}
.casino-player-review__line--positive .casino-player-review__line-icon {
    color: #16a34a;
}
.casino-player-review__line--negative .casino-player-review__line-icon {
    color: #e11d48;
}
.casino-player-review__footer {
    margin-top: 0.7rem;
}
.casino-player-review__helpful {
    padding: 0;
    border: 0;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.84rem;
    font-weight: 700;
}
.casino-player-review__helpful:hover {
    color: #0f172a;
}
.casino-player-review__helpful:disabled {
    opacity: 1;
}
.casino-player-review__helpful-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.casino-review-feed__empty {
    color: #64748b;
    font-size: 0.94rem;
}
@media (max-width: 991.98px) {
    .casino-community-shell__header,
    .casino-review-cta {
        align-items: flex-start;
        flex-direction: column;
    }
    .casino-review-cta__actions {
        width: 100%;
        justify-content: flex-start;
    }
}
@media (max-width: 767.98px) {
    .casino-community-shell {
        padding: 0.9rem;
    }
    .casino-carousel-nav {
        align-self: flex-end;
    }
    .casino-alternatives-track__item {
        flex-basis: min(14rem, calc(86vw - 1.4rem));
    }
    .casino-review-rating-card,
    .casino-review-cta__button {
        width: 100%;
    }
    .casino-player-review__inner {
        gap: 0.75rem;
    }
    .casino-player-review__top {
        flex-direction: column;
        gap: 0.35rem;
    }
}
.hub-filters--reference {
    margin-bottom: 1.5rem;
}
.hub-filters__panel {
    border: 1px solid #e8edf4;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    padding: 1.1rem 1rem;
}
.hub-filters__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}
.hub-filters__group,
.hub-filters__actions {
    min-width: 0;
}
.hub-filters__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}
.hub-filters__label-icon {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    background: #eaf8ef;
    flex-shrink: 0;
}
.hub-filters__label-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}
.hub-filters__select {
    min-height: 3rem;
    border-color: #d9e2ec;
    border-radius: 0.8rem;
    padding-inline: 0.95rem 2.35rem;
    font-size: 0.98rem;
    color: #1f2937;
    box-shadow: none;
}
.hub-filters__select:focus {
    border-color: #86efac;
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.14);
}
.hub-filters__help {
    margin: 0.7rem 0 0;
    color: #64748b;
    font-size: 0.83rem;
    line-height: 1.45;
}
.hub-filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.95rem;
}
.hub-filters__chip {
    min-height: 2.35rem;
    padding: 0.56rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.hub-filters__chip:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-1px);
}
.hub-filters__chip.is-active {
    border-color: #86efac;
    background: #eaf8ef;
    color: #166534;
}
.hub-filters__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    justify-content: center;
}
.hub-filters__apply {
    min-height: 3rem;
    border: 0;
    border-radius: 0.85rem;
    background: #1f8f4e;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(31, 143, 78, 0.18);
}
.hub-filters__apply:hover,
.hub-filters__apply:focus {
    background: #18753f;
    color: #ffffff;
}
.hub-filters__reset {
    min-height: 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    background: #ffffff;
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}
.hub-filters__reset:hover {
    color: #0f172a;
    border-color: #cbd5e1;
}
.hub-filters__reset-icon,
.hub-filters__note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hub-filters__reset-icon svg {
    width: 1rem;
    height: 1rem;
}
.hub-filters__note {
    margin: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.83rem;
    line-height: 1.45;
}
.hub-filters__note-icon {
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 0.05rem;
}
@media (min-width: 992px) {
    .hub-filters__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 17rem;
        gap: 1.25rem;
        align-items: start;
    }
    .hub-filters__group + .hub-filters__group {
        border-left: 1px solid #edf2f7;
        padding-left: 1.25rem;
    }
}
@media (max-width: 991.98px) {
    .hub-filters__panel {
        padding: 1rem 0.95rem;
    }
}
@media (max-width: 575.98px) {
    .hub-filters__chips {
        gap: 0.45rem;
    }
    .hub-filters__chip {
        min-height: 2.15rem;
        padding-inline: 0.78rem;
        font-size: 0.8rem;
    }
}

/* Mobile card readability: final override for grids and sliders. */
@media (max-width: 575.98px) {
    .casino-card-product__score-item .small,
    .home-hero__slider-item .casino-card-product__score-item .small,
    .new-tab-slider__item .casino-card-product__score-item .small,
    .casino-alternatives-section .casino-card-product__score-item .small {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    .casino-card__real-player-tests-title,
    .home-hero__slider-item .casino-card__real-player-tests-title,
    .new-tab-slider__item .casino-card__real-player-tests-title,
    .casino-alternatives-section .casino-card__real-player-tests-title,
    .home-hero__slider-item .casino-card__real-player-tests .fw-semibold,
    .casino-alternatives-section .casino-card__real-player-tests .fw-semibold {
        font-size: 1.15rem !important;
        line-height: 1.22 !important;
    }

    .casino-card__real-player-tests-label,
    .home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dt,
    .casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dt {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    .casino-card__real-player-tests-value,
    .home-hero__slider-item .casino-card__real-player-tests .casino-card__rpt-dl dd,
    .casino-alternatives-section .casino-card__real-player-tests .casino-card__rpt-dl dd {
        font-size: 1.08rem !important;
        line-height: 1.25 !important;
    }

    .casino-alternatives-track__item {
        flex-basis: min(18rem, calc(88vw - 1.2rem)) !important;
        min-width: min(18rem, calc(88vw - 1.2rem)) !important;
    }

    .casino-card-product .casino-trust-gauge-mini,
    .home-hero__slider-item .casino-trust-gauge-mini,
    .new-tab-slider__item .casino-trust-gauge-mini,
    .casino-alternatives-section .casino-trust-gauge-mini {
        width: 5.1rem !important;
        height: 5.1rem !important;
        min-width: 5.1rem !important;
    }

    .casino-card-product .casino-radar-mini,
    .home-hero__slider-item .casino-radar-mini,
    .new-tab-slider__item .casino-radar-mini,
    .casino-alternatives-section .casino-radar-mini {
        width: 4.7rem !important;
        height: 4.7rem !important;
        min-width: 4.7rem !important;
    }

    .casino-card-product .casino-trust-gauge-mini__value,
    .home-hero__slider-item .casino-trust-gauge-mini__value,
    .new-tab-slider__item .casino-trust-gauge-mini__value,
    .casino-alternatives-section .casino-trust-gauge-mini__value {
        font-size: 1.32rem !important;
    }

    .casino-card-product .casino-radar-mini__value,
    .home-hero__slider-item .casino-radar-mini__value,
    .new-tab-slider__item .casino-radar-mini__value,
    .casino-alternatives-section .casino-radar-mini__value {
        font-size: 1.08rem !important;
        font-weight: 800 !important;
    }

    .casino-card-product__scores {
        gap: 1.15rem !important;
        justify-content: space-around !important;
    }

    .casino-card-product__score-item {
        gap: 0.55rem !important;
    }
}
