@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400;600;700&display=swap");

:root {
    /* Faro core palette */
    --x1-primary: #121214;
    --x1-secondary: #FFC233;
    --x1-tertiary: #121214;
    --x1-bg-deep: #17171A;
    --x1-login-blue: #26262B;

    /* Faro surfaces */
    --bg-secondary: #1A1A1E;
    --bg-tertiary: #1D1D21;
    --bg-elevated: #17171A;

    /* Faro content colors */
    --content-primary: #FFFFFF;
    --content-secondary: #81818C;
    --content-tertiary: #81818C;
    --content-on-accent: #121214;

    /* Controls & borders */
    --control-neutral: #26262B;
    --control-neutral-hover: #2F2F36;
    --border-divider: #2F2F36;
    --border-focus: rgba(255, 210, 98, 0.56);

    /* Legacy aliases used in current stylesheet */
    --iris-bg: var(--x1-bg-deep);
    --iris-purple-a: var(--x1-secondary);
    --iris-purple-b: var(--x1-secondary);
    --iris-cta-a: #FFD062;
    --iris-cta-b: #F5A11B;

    --hero-sand: var(--content-secondary);
    --hero-deep: var(--x1-bg-deep);
    --hero-gold: var(--content-primary);
    --hero-gold-bright: var(--content-primary);
    --hero-cream: var(--content-primary);
    --accent-pink-rgb: 255, 38, 107;
    --accent-gold-rgb: 255, 194, 51;
    --accent-green-rgb: 255, 194, 51;
    --accent-blue-rgb: 0, 111, 255;
    --ui-panel: 26, 26, 30;
    --ui-panel-2: 38, 38, 43;
    --link-accent: var(--content-secondary);
    --radius-pill: 50px;
    --radius-btn: 50px;
    --radius-tab: 6px;
    --radius-card: 12px;
    --radius-hero: 20px;

    --header-fade-gradient: none;
    --header-bg: rgba(18, 18, 20, 0.75);
    --header-blur: blur(4px);

    --primary: #FFC233;
    --primary-color: #121214;
    --primary-color-light: #17171A;
    --btn-dark-color: #26262B;

    --secondary-color: #FFC233;
    --gradient-register: linear-gradient(180deg, #FFD062 0%, #F5A11B 100%);
    --btn-secondary-color: var(--gradient-register);
    --btn-primary-hover: #FFD062;
    --tertiary-color: #121214;
    --red-color: #FF266B;
    --blue-color: var(--x1-tertiary);
    --dark-btn-text: #FFFFFF;

    --shadow-primary-btn: 0 8px 24px rgba(255, 194, 51, 0.28);
    --shadow-primary-glow: 0 0 4px rgba(255, 194, 51, 0.4);

    /* Faro hero gold frame — radial corner highlights + soft mid-edge */
    --gradient-hero-outline:
        radial-gradient(120% 120% at 0% 0%, #ffd062cc 0%, #ffd06200 55%),
        radial-gradient(120% 120% at 100% 100%, #ffd062cc 0%, #ffd06200 55%),
        linear-gradient(0deg, #ffd06226, #ffd06226);

    /* Layout & spacing */
    --space-page-x-mobile: 16px;
    --space-page-x-desktop: 40px;
    --btn-height: 48px;
    --btn-padding-x: 24px;
    --section-gap: 20px;
    --card-padding: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.anchor-heading {
    scroll-margin-top: 96px;
}

body {
    font-family: Geologica, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--content-primary);
    min-height: 100%;
    min-height: 100dvh;
    position: relative;
    background: var(--x1-primary);
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--content-primary);
    text-decoration: none;
}

a:hover {
    color: var(--x1-secondary);
}

a:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.page-fill {
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.page-fill > .content-section {
    flex: 1 1 auto;
}

.page-fill > .legal-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.page-fill .legal-main .content-section {
    flex: 1 1 auto;
}

/* ===== Header & navigation (Faro) ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: var(--header-blur);
    -webkit-backdrop-filter: var(--header-blur);
    border-bottom: 1px solid var(--border-divider);
    padding: 0;
}

.header-top-bar {
    display: none;
}

.page-legal .header {
    background: var(--header-bg);
    backdrop-filter: var(--header-blur);
    -webkit-backdrop-filter: var(--header-blur);
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px var(--space-page-x-mobile);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header-logo-img--desktop {
    height: 36px;
    width: auto;
    max-width: 254px;
}

.header-logo-img--mobile {
    display: none;
    height: 24px;
    width: auto;
    max-width: 44px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

/* Language dropdown */
.lang-dropdown {
    position: relative;
    flex-shrink: 0;
    z-index: 1100;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
    padding: 0 12px;
    min-height: 40px;
    border-radius: var(--radius-btn);
    border: none;
    background: var(--control-neutral);
    color: var(--content-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    user-select: none;
    transition: background 0.15s ease;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.lang-dropdown--mobile .lang-dropdown-btn {
    anchor-name: --lang-dropdown-mobile;
}

.lang-dropdown--desktop .lang-dropdown-btn {
    anchor-name: --lang-dropdown-desktop;
}

.lang-dropdown-btn:hover {
    background: var(--control-neutral-hover);
    color: var(--content-primary);
}

.lang-dropdown-btn:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.lang-dropdown-btn-label {
    white-space: nowrap;
}

.lang-dropdown-chevron {
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.lang-dropdown:has(.lang-dropdown-panel:popover-open) .lang-dropdown-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-panel {
    min-width: 10rem;
    max-height: min(70vh, 22rem);
    overflow-y: auto;
    padding: 6px 0;
    margin: 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    background: var(--bg-tertiary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.lang-dropdown-panel[popover] {
    display: none;
    position: fixed;
    inset: auto;
}

.lang-dropdown-panel[popover]:popover-open {
    display: flex;
    flex-direction: column;
}

.lang-dropdown--mobile .lang-dropdown-panel[popover] {
    position-anchor: --lang-dropdown-mobile;
    top: calc(anchor(bottom) + 6px);
    right: anchor(right);
    left: auto;
    bottom: auto;
}

.lang-dropdown--desktop .lang-dropdown-panel[popover] {
    position-anchor: --lang-dropdown-desktop;
    top: calc(anchor(bottom) + 6px);
    right: anchor(right);
    left: auto;
    bottom: auto;
}

.lang-dropdown-item-form {
    display: contents;
}

.lang-dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    border: none;
    text-align: left;
}

button.lang-dropdown-item {
    width: 100%;
    background: none;
    font: inherit;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
}

.lang-dropdown-item.lang-dropdown-link {
    color: var(--content-secondary);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown-item.lang-dropdown-link:hover {
    background: var(--control-neutral);
    color: var(--x1-secondary);
}

.lang-dropdown-current {
    color: var(--x1-secondary);
    cursor: pointer;
}

/* Download links (desktop icon buttons) */
.download-links {
    display: none;
    align-items: center;
    gap: 4px;
}

.download-label {
    display: none;
}

.download-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-btn);
    background: var(--control-neutral);
    text-decoration: none;
    transition: background 0.15s ease;
}

.download-link:hover {
    background: var(--control-neutral-hover);
}

.download-link:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.download-icon {
    width: 20px;
    height: 20px;
    fill: var(--content-primary);
}

/* Header CTAs */
.header-login,
.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.header-login {
    background: #26262B;
    color: #FFFFFF;
}

.header-login:hover {
    background: var(--control-neutral-hover);
    color: #FFFFFF;
}

.header-login:focus-visible,
.header-register:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.header-register {
    background: var(--gradient-register);
    color: #121214;
    box-shadow: var(--shadow-primary-btn);
}

.header-register:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #FFD062 100%);
    color: #121214;
    box-shadow: var(--shadow-primary-glow);
}

.header-help {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--content-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.15s ease;
}

.header-help:hover {
    color: var(--content-primary);
}

.header-help:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: 4px;
}

.help-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-divider);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--content-secondary);
}

@media (min-width: 769px) {
    .header-content {
        padding: 24px var(--space-page-x-desktop);
        min-height: 96px;
    }

    .lang-dropdown--mobile {
        display: none;
    }

    .download-links {
        display: flex;
    }

    .header-right {
        gap: 10px;
    }

    .header-help {
        display: flex;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .anchor-heading {
        scroll-margin-top: 60px;
    }

    .lang-dropdown--desktop {
        display: none;
    }

    .header-content {
        padding: 8px var(--space-page-x-mobile);
        min-height: 60px;
        justify-content: space-between;
    }

    .header-brand {
        flex: 0 0 auto;
        min-width: 0;
    }

    .header-logo {
        display: none;
    }

    .header-right {
        flex: 1;
        justify-content: flex-end;
        gap: 6px;
    }

    .header-register {
        order: 1;
        flex-shrink: 0;
    }

    .header-login {
        order: 2;
        flex-shrink: 0;
    }

    .header-login,
    .header-register {
        min-height: 44px;
        padding: 0 12px;
        font-size: 12px;
        line-height: 20px;
    }

    .lang-dropdown-btn {
        min-height: 44px;
        padding: 0 10px;
        font-size: 11px;
    }
}

/* Sticky header: remove legacy fixed-header offset on hero shell */
.header + .page-fill > .container {
    padding-top: var(--section-gap);
}

@media (max-width: 768px) {
    .header + .page-fill > .container {
        padding-top: 12px;
    }
}

.container {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 104px var(--space-page-x-desktop) var(--section-gap);
    overflow: hidden;
    background: #17171a;
    box-shadow: none;
}

.container::after {
    display: none;
}

.content-wrapper {
    display: flex;
    align-items: stretch;
    gap: var(--section-gap);
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    height: auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    isolation: isolate;
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-hero);
    box-shadow: inset 0 0 0 1px var(--border-divider);
    padding: 28px 24px 24px;
    max-width: 420px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
    z-index: 1;
}

.form-container::before,
.banner-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-hero-outline);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.banner-container {
    position: relative;
    isolation: isolate;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    background: var(--bg-elevated);
    border-radius: var(--radius-hero);
    box-shadow: inset 0 0 0 1px var(--border-divider);
}

.banner-img {
    width: 100%;
    max-width: 764px;
    height: auto;
    aspect-ratio: 764 / 429;
    object-fit: contain;
    object-position: right center;
    border-radius: var(--radius-hero);
    border: none;
}

.page-bonuses .banner-container {
    background: linear-gradient(135deg, rgba(255, 194, 51, 0.12) 0%, rgba(255, 194, 51, 0.04) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 194, 51, 0.2);
}

.page-bonuses .banner-img {
    object-fit: cover;
    object-position: center;
}

@media (min-width: 769px) {
    .content-wrapper {
        min-height: 320px;
        align-items: stretch;
        gap: 0;
        border-radius: 40px;
        overflow: hidden;
        isolation: isolate;
    }

    .content-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: var(--gradient-hero-outline);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        z-index: 3;
    }

    .form-container,
    .banner-container,
    .banner-img {
        border-radius: 0;
    }

    .form-container {
        min-height: 320px;
        justify-content: center;
        padding: 32px 28px 28px;
        background: var(--bg-elevated);
        border-radius: 40px 0 0 40px;
        box-shadow: none;
    }

    .form-container::before,
    .banner-container::before {
        display: none;
    }

    .banner-container {
        min-height: 320px;
        border-radius: 0 40px 40px 0;
        box-shadow: none;
    }

    .banner-img {
        height: 100%;
        min-height: 320px;
        max-width: none;
        aspect-ratio: auto;
        border-radius: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: 0;
    }

    .content-wrapper::before {
        border-radius: 40px;
    }

    .form-container {
        max-width: none;
        width: 100%;
        min-height: 0;
        border-radius: 40px 40px 0 0;
    }

    .banner-container {
        display: flex;
        width: 100%;
        min-height: 240px;
        border-radius: 0 0 40px 40px;
    }

    .banner-img {
        min-height: 240px;
        object-fit: cover;
        object-position: right center;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .form-container {
        max-width: min(420px, 100%);
    }

    .banner-container {
        display: none;
    }
}

.headline-1 {
    text-align: center;
    color: var(--x1-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.headline-2 {
    text-align: center;
    color: var(--content-primary);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.btn-register {
    width: 100%;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    background: var(--gradient-register);
    color: var(--content-on-accent);
    border: none;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
    box-shadow: var(--shadow-primary-btn);
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-register.btn-login {
    background: var(--control-neutral);
    margin-bottom: 12px;
    color: var(--content-primary);
}

.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--content-primary);
}

a.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

.btn-register:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #FFD062 100%);
    color: var(--content-on-accent);
    box-shadow: var(--shadow-primary-glow);
}

.btn-register:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.form-banner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-login-banner {
    width: 100%;
    padding: 18px;
    background: var(--red-color);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login-banner:hover {
    transform: scale(1.02);
}

/* ===== Main content sections (Faro dark) ===== */
.content-section {
    position: relative;
    background: var(--x1-primary);
    padding: 48px var(--space-page-x-mobile) 56px;
}

@media (min-width: 769px) {
    .content-section {
        padding-left: var(--space-page-x-desktop);
        padding-right: var(--space-page-x-desktop);
    }
}

.content-section > * {
    position: relative;
    z-index: 1;
}

.content-max-width {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    color: var(--content-primary);
    font-family: inherit;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.content-button-wrapper {
    text-align: center;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 12px);
}

.content-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: var(--btn-height);
    min-width: 200px;
    padding: 0 var(--btn-padding-x);
    background: var(--gradient-register);
    color: var(--content-on-accent);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-primary-btn);
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.content-btn:hover {
    background: var(--gradient-register);
    color: var(--content-on-accent);
    filter: brightness(1.06);
    box-shadow: var(--shadow-primary-glow);
    transform: none;
}

.content-btn:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--section-gap);
    margin: var(--section-gap) 0;
}

.pros-block,
.cons-block {
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    background: var(--bg-elevated);
    border: 1px solid var(--border-divider);
    box-shadow: none;
}

.pros-block {
    border-color: rgba(var(--accent-gold-rgb), 0.45);
    box-shadow: inset 3px 0 0 var(--x1-secondary);
}

.cons-block {
    border-color: var(--border-divider);
    box-shadow: inset 3px 0 0 var(--red-color);
}

.pros-cons-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--content-primary);
}

.pros-block .pros-cons-title {
    color: var(--content-primary);
}

.cons-block .pros-cons-title {
    color: var(--content-primary);
}

.pros-cons-head-icon {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

.pros-cons-head-icon svg {
    display: block;
}

.pros-cons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-list li {
    font-size: 14px;
    color: var(--content-secondary);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pros-block .pros-cons-list li::before {
    content: "✓";
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: rgb(var(--accent-green-rgb));
    margin-top: 2px;
}

.cons-block .pros-cons-list li::before {
    content: "✗";
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--red-color);
    margin-top: 2px;
}

@media (max-width: 700px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* Intro band: author meta + rating card + mid CTA */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--content-secondary);
    line-height: 1.4;
}

.article-meta-icon {
    width: 16px;
    height: 16px;
    fill: var(--x1-secondary);
    flex-shrink: 0;
}

.article-meta-label {
    color: var(--content-primary);
    font-weight: 600;
}

.rating-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-divider);
    border-top: 2px solid var(--x1-secondary);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
}

.rating-card-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    text-align: center;
    border-right: 1px solid var(--border-divider);
    padding-right: 24px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--x1-secondary);
    line-height: 1;
}

.rating-max {
    font-size: 16px;
    color: var(--content-tertiary);
    font-weight: 400;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin: 8px 0 6px;
}

.rating-stars .star {
    color: var(--x1-secondary);
    font-size: 18px;
}

.rating-stars .star-half {
    color: var(--x1-secondary);
    font-size: 18px;
    opacity: 0.65;
}

.rating-count {
    font-size: 12px;
    color: var(--content-tertiary);
}

.rating-card-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    align-content: center;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--content-tertiary);
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--content-primary);
}

.fact-value.good {
    color: rgb(var(--accent-green-rgb));
}

.fact-value.warn {
    color: var(--x1-secondary);
}

@media (max-width: 600px) {
    .rating-card {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .rating-card-score {
        border-right: none;
        border-bottom: 1px solid var(--border-divider);
        padding-right: 0;
        padding-bottom: 16px;
    }

    .rating-card-facts {
        grid-template-columns: 1fr 1fr;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Casino facts table — Faro dark info rows */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin: 24px 0 32px;
    font-size: 14px;
}

.stats-table tr {
    background: var(--bg-elevated);
}

.stats-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-top: 1px solid var(--border-divider);
    border-bottom: 1px solid var(--border-divider);
}

.stats-table td:first-child {
    color: var(--content-secondary);
    width: 42%;
    font-size: 14px;
    font-weight: 400;
    border-left: 1px solid var(--border-divider);
    border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.stats-table td:last-child {
    color: var(--content-primary);
    font-weight: 600;
    border-right: 1px solid var(--border-divider);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.text-content {
    color: var(--content-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.text-content p {
    margin-bottom: 24px;
    color: var(--content-primary);
}

.text-content a {
    color: var(--content-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.text-content a:hover {
    color: var(--x1-secondary);
}

.text-content a:focus-visible {
    color: var(--x1-secondary);
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

/* Table of contents — compact dark card */
.article-toc {
    width: 100%;
    margin: 24px 0;
    padding: 16px 20px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    background: var(--bg-elevated);
    box-sizing: border-box;
}

.article-toc-heading {
    margin: 0 0 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--content-primary);
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-transform: uppercase;
}

.text-content .article-toc-list {
    margin: 0;
    padding: 0 0 0 1.5em;
    list-style: decimal;
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.article-toc-list .level-1 {
    margin: 0 0 8px;
    padding: 0;
    color: var(--content-secondary);
}

.article-toc-list .level-1:last-child {
    margin-bottom: 0;
}

.article-toc-list .level-1::marker {
    color: var(--x1-secondary);
    font-weight: 700;
}

.article-toc-list a {
    display: inline;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--content-secondary);
    text-decoration: none;
    font-weight: 400;
    white-space: normal;
    transition: color 0.15s ease;
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
    background: transparent;
    color: var(--x1-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .article-toc {
        max-width: 100%;
        padding: 14px 16px;
    }

    .text-content .article-toc-list {
        padding-left: 1.35em;
        font-size: 14px;
    }
}

.content-screen-figure {
    margin: 24px auto;
    max-width: min(100%, 416px);
    padding: 16px;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-divider);
    border-radius: calc(var(--radius-card) + 4px);
}

.content-screen-img {
    display: block;
    max-width: min(100%, 384px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-screen-img:hover {
    border-color: rgba(255, 194, 51, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 194, 51, 0.2);
}

.text-content h2,
.text-content h2.anchor-heading {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    color: var(--content-primary);
    text-align: left;
    line-height: 1.2;
    border-bottom: 1px solid var(--border-divider);
}

.text-content h3,
.text-content h3.anchor-heading {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--content-primary);
    line-height: 1.4;
}

.text-content ul,
.text-content ol {
    margin: 0 0 24px 1.25em;
    padding: 0;
    color: var(--content-primary);
}

.text-content li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.text-content li::marker {
    color: var(--x1-secondary);
}

.faq-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    border-left: 3px solid transparent;
    overflow: hidden;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-item[open] {
    background: var(--bg-elevated);
    border-color: var(--x1-secondary);
    border-left-color: var(--x1-secondary);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 40px 16px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--content-primary);
    position: relative;
    line-height: 1.4;
    transition: background 0.15s ease;
}

.faq-summary .faq-question {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:hover {
    background: var(--control-neutral);
    color: var(--content-primary);
}

.faq-summary:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: -2px;
}

.faq-item[open] .faq-summary:hover {
    background: var(--control-neutral);
    color: var(--content-primary);
}

.faq-summary::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--x1-secondary);
    border-bottom: 2px solid var(--x1-secondary);
    transform: rotate(45deg);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.faq-item[open] .faq-summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
    border-right-color: var(--x1-secondary);
    border-bottom-color: var(--x1-secondary);
}

.faq-item[open] .faq-summary {
    background: var(--control-neutral);
    color: var(--content-primary);
}

.faq-body {
    padding: 0 16px 16px;
    background: var(--control-neutral);
}

.faq-body p {
    margin: 0;
    color: var(--content-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.faq-body .faq-answer-plain {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--content-primary);
}


@media (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
    }

    .container {
        flex-direction: column;
        align-items: stretch;
        padding: 88px var(--space-page-x-mobile) 12px;
        margin-top: 0;
        justify-content: flex-start;
    }

    .content-wrapper {
        align-items: stretch;
        width: 100%;
    }

    .form-container {
        max-width: 100%;
        width: 100%;
    }

    .content-section {
        padding: 32px var(--space-page-x-mobile) 40px;
    }

    .content-max-width {
        padding-top: 0;
    }

    .content-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .content-button-wrapper .content-btn {
        display: flex;
        width: 100%;
        min-width: 0;
    }

    .article-meta {
        padding: 12px 14px;
        margin-bottom: 20px;
    }

    .rating-card {
        padding: 16px;
        margin-bottom: 20px;
    }

    .text-content {
        font-size: 15px;
        line-height: 1.4;
    }

    .text-content h2,
    .text-content h2.anchor-heading {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .text-content h3,
    .text-content h3.anchor-heading {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .stats-table td {
        padding: 12px 14px;
    }

    .stats-table td:first-child {
        font-size: 13px;
        width: 45%;
    }

    .content-screen-figure {
        padding: 12px;
        margin: 20px auto;
    }

    .faq-summary {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 15px;
        padding: 14px 40px 14px 14px;
    }

    .faq-summary::after {
        right: 14px;
    }

    .faq-body {
        padding: 0 14px 14px;
    }

    .headline-2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .content-btn {
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px 16px 18px;
    }

    .headline-1 {
        font-size: 12px;
    }

    .headline-2 {
        font-size: 24px;
    }
}

/* Footer (Faro) */
.footer {
    flex-shrink: 0;
    background: var(--bg-elevated);
    padding: 32px var(--space-page-x-desktop) 40px;
    border-top: 1px solid var(--border-divider);
    box-shadow: none;
    font-family: Geologica, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px 40px;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
}

.footer-nav a {
    color: var(--content-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.footer-nav a:hover {
    color: var(--x1-secondary);
}

.footer-nav a:focus-visible {
    color: var(--x1-secondary);
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: 2px;
}

.legal-main {
    min-height: 50vh;
}

.page-legal .content-section {
    background: var(--bg-secondary);
}

.legal-document {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    padding: calc(var(--card-padding) * 2) calc(var(--card-padding) * 1.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.page-legal .content-title {
    color: var(--content-primary);
    font-weight: 700;
    text-align: left;
}

.legal-document .text-content {
    color: var(--content-secondary);
}

.legal-document .text-content h2,
.legal-document .text-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--content-primary);
    font-weight: 700;
}

.legal-link {
    color: var(--content-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-link:hover {
    color: var(--x1-secondary);
}

.legal-meta {
    margin-top: var(--section-gap);
    font-size: 14px;
    color: var(--content-tertiary) !important;
}

.page-apk .legal-visual-block,
.page-bonuses .legal-visual-block {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    background: linear-gradient(140deg, rgba(255, 194, 51, 0.14), rgba(18, 18, 20, 0.4));
}

.legal-visual-eyebrow {
    margin: 0 0 10px 0 !important;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--content-tertiary) !important;
}

.legal-visual-title {
    margin: 0 0 10px 0 !important;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--content-primary);
}

.legal-visual-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 280px);
    justify-self: end;
}

.legal-visual-media img {
    display: block;
    width: 100%;
    max-width: 280px;
    max-height: 220px;
    height: auto;
    min-height: 160px;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(var(--radius-card) - 4px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.legal-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    margin-bottom: 8px;
}

.legal-mini-card {
    padding: 14px;
    border-radius: calc(var(--radius-card) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 20, 0.55);
}

.legal-mini-card h3 {
    margin: 0 0 8px 0 !important;
    font-size: 17px;
    line-height: 1.3;
    color: var(--content-primary);
}

.legal-mini-card p {
    margin: 0 !important;
    color: var(--content-secondary);
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 280px;
    min-width: 0;
}

.age-restriction-icon {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--content-primary);
}

.age-number {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    position: static;
}

.age-plus {
    font-size: 0.75em;
    color: inherit;
    position: static;
    margin-left: 1px;
}

.footer-copyright {
    color: var(--content-tertiary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 8px 0 !important;
}

.footer-disclaimer p {
    color: var(--content-tertiary);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer p + p {
    margin-top: 4px;
}


@media (max-width: 768px) {
    .footer {
        padding: 24px var(--space-page-x-mobile) 32px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-left {
        display: block;
        width: 100%;
        flex: none;
    }

    .footer-nav {
        width: 100%;
        padding-top: 16px;
        border-top: 1px solid var(--border-divider);
        gap: 12px 20px;
    }
}

@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-nav a {
        white-space: normal;
    }
}

.content-wrapper {
    position: relative;
}


/* Hero logo: desktop only (mobile — centered logo in .header) */
.form-container .logo {
    display: none;
}

@media (min-width: 769px) {
    .form-container .logo {
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

    .form-container .logo-img {
        max-height: 36px;
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        transform: none;
    }
}

/* Hero CTA — Faro: neutral login + gold register */
.form-container .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 4px;
}

.form-container .hero-buttons > a[href] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.form-container .hero-buttons button.btn-register {
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-container .hero-buttons .btn-register,
.form-container .hero-buttons a.btn-register {
    background: var(--gradient-register);
    font-weight: 700;
    font-size: 14px;
    color: var(--content-on-accent);
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-primary-btn);
    min-height: var(--btn-height);
}

.form-container .hero-buttons .btn-register.btn-login,
.form-container .hero-buttons a.btn-register.btn-login {
    background: var(--control-neutral);
    margin-bottom: 12px;
    color: var(--content-primary);
    border: none;
    box-shadow: none;
}

.form-container .hero-buttons .btn-register.btn-login:hover,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--content-primary);
}

.form-container .hero-buttons .btn-register:hover,
.form-container .hero-buttons a.btn-register:hover,
.form-container .hero-buttons button.btn-register:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #FFD062 100%);
    color: var(--content-on-accent);
    box-shadow: var(--shadow-primary-glow);
    transform: none;
}

body.page-legal {
    padding-top: 0;
    background: var(--bg-secondary);
}

body.page-legal .legal-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

body.page-legal .legal-wrap h1 {
    color: #fff;
    margin-bottom: 20px;
}

body.page-legal .legal-wrap p {
    margin-bottom: 16px;
}

body.page-legal .legal-wrap a {
    color: var(--content-secondary);
    font-weight: 400;
    transition: color 0.15s ease;
}

body.page-legal .legal-wrap a:hover {
    color: var(--x1-secondary);
}

body.page-legal .legal-wrap a:focus-visible {
    color: var(--x1-secondary);
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: 2px;
}

body.page-legal .legal-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--content-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

body.page-legal .legal-back:hover {
    color: var(--x1-secondary);
}

/* Mobile-only promo strip after header (Faro secondary promo card) */
.banerBody.mobile-promo-banner,
.mobile-promo-banner {
    display: none;
}

.noCopy {
    -webkit-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .banerBody.mobile-promo-banner,
    .mobile-promo-banner {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 12px;
        margin-top: 0;
        position: relative;
        z-index: 50;
    }

    .mobile-promo-banner__link {
        display: block;
        text-decoration: none;
        color: inherit;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-promo-banner__link:focus-visible {
        outline: 2px solid var(--border-focus);
        outline-offset: 2px;
        border-radius: var(--radius-hero);
    }

    .mobile-promo-banner__banner.bonusBanner {
        position: relative;
        overflow: hidden;
        min-height: 195px;
        max-height: 220px;
        border-radius: var(--radius-hero);
        background: var(--bg-elevated);
        border: none;
        box-shadow: inset 0 0 0 1px var(--border-divider);
        isolation: isolate;
    }

    .mobile-promo-banner__banner.bonusBanner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            90deg,
            rgba(23, 23, 26, 0.98) 0%,
            rgba(23, 23, 26, 0.92) 48%,
            rgba(23, 23, 26, 0.55) 72%,
            rgba(23, 23, 26, 0.12) 100%
        );
        pointer-events: none;
    }

    .mobile-promo-banner__banner.bonusBanner::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: var(--gradient-hero-outline);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        z-index: 3;
    }

    .mobile-promo-banner__back {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .mobile-promo-banner__backImg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .mobile-promo-banner__mainImg.bonusBannerMain {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 72% center;
        transform: scale(1.42);
        transform-origin: 72% center;
        z-index: 0;
        pointer-events: none;
    }

    .mobile-promo-banner__inside {
        position: relative;
        z-index: 2;
        padding: 16px;
        max-width: 68%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        min-height: 195px;
        box-sizing: border-box;
    }

    .mobile-promo-banner__text {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-promo-banner__eyebrow {
        margin: 0;
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--x1-secondary);
    }

    .mobile-promo-banner__lead {
        margin: 0;
        font-family: inherit;
        font-size: clamp(16px, 4.5vw, 18px);
        font-weight: 700;
        line-height: 1.15;
        color: var(--content-primary);
        letter-spacing: -0.02em;
        text-transform: uppercase;
    }

    .mobile-promo-banner__cta {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: var(--btn-height);
        padding: 0 16px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
        color: var(--content-on-accent);
        line-height: 1;
        background: var(--gradient-register);
        border-radius: var(--radius-btn);
        box-shadow: var(--shadow-primary-btn);
        transition: background 0.15s ease, box-shadow 0.15s ease;
    }

    .mobile-promo-banner__link:hover .mobile-promo-banner__cta {
        background: linear-gradient(180deg, #FFE08A 0%, #FFD062 100%);
        box-shadow: var(--shadow-primary-glow);
    }
}

@media (max-width: 430px) {
    .mobile-promo-banner__mainImg.bonusBannerMain {
        transform: scale(1.28);
        object-position: 70% center;
        transform-origin: 70% center;
    }

    .mobile-promo-banner__inside {
        max-width: 72%;
    }

    .header-register {
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .mobile-promo-banner__mainImg.bonusBannerMain {
        transform: scale(1.18);
        object-position: 68% center;
        transform-origin: 68% center;
    }

    .mobile-promo-banner__lead {
        font-size: 15px;
    }

    .stats-table td {
        padding: 10px 12px;
    }

    .stats-table td:first-child {
        font-size: 12px;
        width: 48%;
    }
}

@media (max-width: 768px) {
    .page-apk .legal-visual-block,
    .page-bonuses .legal-visual-block {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }

    .legal-visual-media {
        width: 100%;
        justify-self: center;
    }

    .legal-visual-media img {
        max-width: 100%;
        max-height: 220px;
        min-height: 180px;
    }

    .legal-mini-grid {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }
}
