:root {
    /* Spinimax core palette */
    --x1-primary: #030303;
    --x1-secondary: #FFCA05;
    --x1-tertiary: #A778E2;
    --x1-bg-deep: #3C1D51;
    --x1-login-blue: rgba(167, 120, 226, 0.1);

    /* Spinimax surfaces */
    --bg-secondary: #3C1D51;
    --bg-tertiary: #44215C;
    --bg-elevated: #17101D;

    /* Surface aliases */
    --surface-a: #030303;
    --surface-b: #3C1D51;
    --surface-c: #44215C;
    --surface-d: rgba(167, 120, 226, 0.2);

    /* Spinimax content colors */
    --content-primary: #FFFFFF;
    --content-secondary: #DDDDDD;
    --content-tertiary: #BEBEBE;
    --content-on-accent: #FFFFFF;

    /* Controls & borders */
    --control-neutral: rgba(167, 120, 226, 0.1);
    --control-neutral-hover: rgba(167, 120, 226, 0.18);
    --border-divider: rgba(167, 120, 226, 0.22);
    --border-focus: rgba(255, 202, 5, 0.78);

    /* 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: var(--x1-secondary);
    --iris-cta-b: #FA9218;

    --hero-sand: var(--content-secondary);
    --hero-deep: var(--x1-bg-deep);
    --hero-gold: #FFCA05;
    --hero-gold-bright: #FFE996;
    --hero-cream: var(--content-primary);
    --accent-pink-rgb: 246, 43, 0;
    --accent-gold-rgb: 255, 202, 5;
    --accent-green-rgb: 0, 189, 76;
    --accent-blue-rgb: 167, 120, 226;
    --ui-panel: 60, 29, 81;
    --ui-panel-2: 68, 33, 92;
    --link-accent: #A778E2;

    /* Legacy aliases retargeted to Spinimax */
    --gold-brand: #FFCA05;
    --gold-accent: #FFCA05;
    --cream: #FFFFFF;
    --offer-cream: #FFFFFF;
    --parchment-ink: #FFFFFF;
    --jewel: #A778E2;
    --jewel-dark: #7B35D4;
    --header-brick-mid: #0A090A;
    --brand-purple: #A778E2;
    --brand-magenta: #7B35D4;
    --accent-orange: #FA9218;
    --accent-orange-hover: #BC6804;
    --btn-promo: #FA9218;
    --btn-promo-hover: #BC6804;
    --hero-stage: #030303;
    --gradient-brand: linear-gradient(90deg, #030303 0%, #3C1D51 100%);
    --gradient-night: linear-gradient(180deg, #030303 0%, rgba(167, 120, 226, 0.2) 100%);
    --shadow-m: 0 4px 24px 0 rgba(0, 0, 0, 0.5);

    /* CTA & decorative tokens */
    --cta-gradient: radial-gradient(100% 85% at 50% 0%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 46%), linear-gradient(180deg, #FFE996 0%, #FFCA05 38%, #FA9218 72%, #BC6804 100%);
    --cta-secondary-bg: linear-gradient(180deg, rgba(167, 120, 226, 0.12) 0%, rgba(10, 9, 10, 0) 100%);
    --cta-inset-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.48), inset 0 -3px 5px rgba(96, 43, 0, 0.46), 0 2px 8px rgba(250, 146, 24, 0.28);
    --header-shadow: 0 3.2px 16px rgba(10, 9, 10, 0.25);
    --logo-glow: drop-shadow(0 0 10px rgba(167, 120, 226, 0.42));
    --divider-gradient: linear-gradient(90deg, rgba(167, 120, 226, 0) 0%, rgba(167, 120, 226, 0.22) 27.6%, rgba(255, 202, 5, 0.42) 52.62%, rgba(167, 120, 226, 0.22) 74.48%, rgba(167, 120, 226, 0) 100%);

    --radius-pill: 160px;
    --radius-btn: 8px;
    --radius-tab: 6px;
    --radius-card: 10px;
    --radius-hero: 10px;

    /* Live header joined-pair radii (P0-1). Header agent applies to .header-* only. */
    --radius-cta-join-start: 32px 2px 2px 32px;
    --radius-cta-join-end: 2px 32px 32px 2px;
    --header-register-radius: var(--radius-cta-join-start);
    --header-login-radius: var(--radius-cta-join-end);
    --header-cta-gap: 4px;

    --header-fade-gradient: none;

    --primary-color: #030303;
    --primary-color-light: #3C1D51;
    --btn-dark-color: rgba(167, 120, 226, 0.1);

    --secondary-color: #FFCA05;
    --btn-secondary-color: #FA9218;
    --btn-primary-hover: #BC6804;
    --tertiary-color: #A778E2;
    --red-color: #F62B00;
    --blue-color: var(--x1-tertiary);
    --dark-btn-text: #FFFFFF;

    /* Typography */
    --font-body: "Montserrat", Arial, Helvetica, sans-serif;
    --font-display: var(--font-body);
    --font-sans: var(--font-body);
    --font-offer: var(--font-display);

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

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

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
    color-scheme: dark;
    overflow-x: clip;
    background: var(--x1-primary);
    color: var(--content-primary);
    font-family: var(--font-body);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--content-primary);
    min-height: 100%;
    min-height: 100dvh;
    position: relative;
    background: var(--x1-primary);
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    -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;
}

/* Global control centering — section CTA chrome stays on their own classes */
button {
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fill {
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--x1-primary);
}

.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 ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0A090A;
    background-image: none;
    border-bottom: 0;
    box-shadow: var(--header-shadow);
    padding: 0;
}

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

.page-legal .header {
    background: #0A090A;
    background-image: none;
    box-shadow: var(--header-shadow);
}

.header-content {
    margin: 0 auto;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    height: 58px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 58px;
}

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

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    color: inherit;
    transition: filter 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.header-logo:hover {
    color: inherit;
    filter: brightness(1.08);
}

.header-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: filter 0.2s ease-in-out;
}

.header-logo-img--desktop {
    width: 113px;
    height: 30px;
    max-width: 113px;
}

.header-logo-img--mobile {
    display: none;
    width: 105px;
    height: 28px;
    max-width: 105px;
}

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

.header-right > * + * {
    margin-left: 0;
}

/* Language dropdown — chrome/colors only; CSS Anchor + Popover positioning unchanged */
.lang-dropdown {
    position: relative;
    flex-shrink: 0;
    z-index: 1100;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
    padding: 0 12px;
    min-height: 36px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(167, 120, 226, 0.42);
    background: rgba(167, 120, 226, 0.08);
    color: var(--content-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    text-shadow: none;
    user-select: none;
    transition: background 0.15s ease, color 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 {
    border-color: var(--x1-tertiary);
    background: rgba(167, 120, 226, 0.16);
    color: var(--x1-tertiary);
}

.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;
    color: currentColor;
    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-btn);
    border: 1px solid rgba(167, 120, 226, 0.42);
    background: #17101D;
    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);
    /* Left-align to trigger: right-anchor overflows viewport on ≤360px */
    left: anchor(left);
    right: 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: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    border: none;
    text-align: left;
    box-sizing: border-box;
}

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

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: rgba(167, 120, 226, 0.16);
    color: var(--x1-secondary);
}

.lang-dropdown-current {
    color: var(--content-tertiary);
    cursor: pointer;
}

/* Download links */
.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: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(167, 120, 226, 0.28);
    background: rgba(167, 120, 226, 0.08);
    text-decoration: none;
    text-align: center;
    color: var(--content-secondary);
    transition: background 0.15s ease, color 0.15s ease;
}

.download-link:hover {
    border-color: var(--x1-secondary);
    background: rgba(255, 202, 5, 0.08);
    color: var(--x1-secondary);
}

.download-link:hover .download-icon {
    fill: var(--x1-secondary);
}

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

.download-icon {
    width: 20px;
    height: 20px;
    fill: var(--content-secondary);
    transition: fill 0.15s ease;
}

/* Header CTAs */
.header-login,
.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 44px;
    padding: 0 16px;
    border: none;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.header-register {
    min-height: 44px;
    border-radius: var(--radius-pill);
    background: var(--cta-gradient);
    color: var(--content-on-accent);
    padding: 0 18px;
    border: 1px solid transparent;
    box-shadow: var(--cta-inset-shadow);
}

.header-login {
    border-radius: var(--radius-pill);
    background: rgba(167, 120, 226, 0.06);
    color: var(--x1-tertiary);
    border: 1px solid var(--x1-tertiary);
    box-shadow: none;
}

.header-register + .header-login {
    margin-left: 0;
}

.header-login:hover,
.header-login:active {
    background: rgba(167, 120, 226, 0.16);
    border-color: #C8A8F0;
    color: #C8A8F0;
    box-shadow: inset 0 0 0 1px rgba(167, 120, 226, 0.12);
}

.header-register:hover,
.header-register:active {
    filter: brightness(1.08);
    color: var(--content-on-accent);
}

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

.header-help {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--content-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    transition: color 0.15s ease;
}

.header-help:hover {
    color: var(--x1-secondary);
}

.header-help:hover .help-icon {
    border-color: var(--x1-secondary);
    color: var(--x1-secondary);
}

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

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

@media (min-width: 769px) {
    .header-content {
        height: 64px;
        padding: 0 12px;
        min-height: 64px;
    }

    .header-logo-img--desktop {
        width: 113px;
        height: 30px;
        max-width: 113px;
    }

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

    .download-links {
        display: flex;
    }

    .header-right > * + * {
        margin-left: 0;
    }

    .header-help {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
    }

    .header-login,
    .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
    }

    .header-login {
        width: 132px;
        min-height: 44px;
        padding: 0 16px;
        border-radius: var(--radius-pill);
    }

    .header-register {
        width: 185px;
        min-height: 44px;
        padding: 0 24px;
        border-radius: var(--radius-pill);
    }

    .header-register + .header-login {
        margin-left: 0;
    }

    .lang-dropdown-btn {
        min-height: 44px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }
}

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

    .header {
        padding: 0;
        box-shadow: var(--header-shadow);
    }

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

    .header-content {
        height: 58px;
        padding: 0 8px;
        min-height: 58px;
    }

    .header-brand {
        flex: 1;
        min-width: 0;
        gap: 6px;
    }

    /* Compact header uses the dedicated AVIF wordmark. */
    .header-logo-img--desktop {
        display: none;
    }

    .header-logo-img--mobile {
        display: block;
        width: 105px;
        height: 28px;
        max-width: 105px;
    }

    .header-right {
        min-width: 0;
        flex-shrink: 1;
        flex-wrap: nowrap;
    }

    .header-right > * + * {
        margin-left: 0;
    }

    .header .header-login,
    .header .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        order: 0;
        min-height: 44px;
        padding: 0 10px;
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        text-align: center;
    }

    .header .header-register {
        border-radius: var(--radius-pill);
        padding: 0 12px;
    }

    .header .header-login {
        border-radius: var(--radius-pill);
    }

    .header-register + .header-login {
        margin-left: 0;
    }

    .header .lang-dropdown-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 9px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }
}

.container {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 64px var(--space-page-x-desktop) 0;
    overflow-x: clip;
    overflow-y: visible;
    background: var(--primary-color);
    box-shadow: none;
}

.container::after {
    display: none;
}

/* Desktop hero: existing offer card and artwork merged into one Spinimax stage */
.content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    height: 430px;
    min-height: 430px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-hero);
    border: 1px solid rgba(167, 120, 226, 0.24);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.46);
    background:
        radial-gradient(circle at 18% 42%, rgba(167, 120, 226, 0.2), transparent 38%),
        linear-gradient(100deg, #09070b 0%, #24112f 39%, #09070b 100%);
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    background:
        radial-gradient(circle at 50% 20%, rgba(167, 120, 226, 0.18), transparent 38%),
        linear-gradient(100deg, rgba(9, 7, 11, 0.99) 0%, rgba(36, 17, 47, 0.97) 78%, rgba(36, 17, 47, 0.72) 100%);
    border: 0;
    border-radius: 0;
    padding: 38px 36px;
    max-width: 450px;
    min-width: 420px;
    width: 40%;
    flex-shrink: 0;
    margin: 0;
    z-index: 2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* Speech-bubble pointer — keep hidden */
.form-container::after {
    content: none;
    display: none;
}

.banner-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border-radius: 0;
    align-self: stretch;
    position: relative;
    z-index: 1;
    background: #160d1c;
}

.banner-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(36, 17, 47, 0.82) 0%, rgba(36, 17, 47, 0.2) 14%, transparent 34%);
}

.banner-img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 52% center;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    filter: none;
}

.page-bonuses .banner-container {
    align-items: center;
}

.page-bonuses .banner-img {
    object-position: center right;
    transform: none;
    transform-origin: center center;
}

@media (max-width: 1024px) {
    .content-wrapper {
        display: none;
    }
}

.headline-1 {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: var(--content-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.3;
    padding: 0;
    background: none;
    border-radius: 0;
    clip-path: none;
}

.headline-2 {
    text-align: center;
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.42);
    order: 0;
}

.headline-offer {
    text-align: center;
    margin: 2px 0 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--x1-secondary);
    text-shadow: 0 2px 22px rgba(255, 202, 5, 0.16);
}

.offer-accent-money {
    color: var(--x1-secondary);
}

.offer-accent-fs {
    color: var(--x1-secondary);
}

.btn-register {
    width: 100%;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    background: var(--cta-gradient);
    color: var(--content-on-accent);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: none;
    cursor: pointer;
    transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: var(--cta-inset-shadow);
}

.btn-register.btn-login {
    background-color: rgba(0, 184, 219, 0.1);
    background-image: var(--cta-secondary-bg);
    margin-bottom: 12px;
    min-height: var(--btn-height);
    font-size: 14px;
    color: var(--content-primary);
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--cta-inset-shadow);
}

.btn-register.btn-login:hover {
    background-color: rgba(0, 184, 219, 0.16);
    background-image: var(--cta-secondary-bg);
    color: var(--content-primary);
    border: none;
    box-shadow: var(--cta-inset-shadow);
    filter: none;
}

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

.btn-register:hover {
    filter: brightness(1.08);
    color: var(--content-on-accent);
}

.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 (Spinimax article shell) ===== */
.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);
    }
}

/* Tablet: match header 24px inset; desktop 40px stays ≥1025 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .content-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

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

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

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

.content-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 12px);
}

/* Mid + bottom CTA: donor radial pill (never joined header radii) */
.content-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    min-height: var(--btn-height);
    min-width: 200px;
    padding: 0 24px;
    background: var(--cta-gradient);
    color: var(--content-on-accent);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--cta-inset-shadow);
    cursor: pointer;
    transition: filter 0.15s ease, color 0.15s ease;
}

.content-btn:hover {
    filter: brightness(1.08);
    background: var(--cta-gradient);
    color: var(--content-on-accent);
    border: none;
    transform: none;
    box-shadow: var(--cta-inset-shadow);
}

.content-btn:active {
    filter: brightness(1.04);
    background: var(--cta-gradient);
    color: var(--content-on-accent);
}

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

.content-max-width > .content-button-wrapper:last-child {
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 0;
}

.pros-cons + .content-button-wrapper {
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 0;
}

/* Pros / cons: restrained purple cards with preserved semantic states */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 20px;
}

.pros-block,
.cons-block {
    border-radius: var(--radius-card);
    padding: 20px;
    background: linear-gradient(145deg, rgba(60, 29, 81, 0.82), rgba(23, 16, 29, 0.96));
    border: 1px solid rgba(167, 120, 226, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.cons-block {
    background: linear-gradient(145deg, rgba(68, 33, 92, 0.7), rgba(23, 16, 29, 0.96));
}

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

.pros-block .pros-cons-title,
.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-block .pros-cons-head-icon svg circle {
    fill: rgb(var(--accent-green-rgb));
}

.pros-block .pros-cons-head-icon svg path {
    fill: #07180e;
}

.cons-block .pros-cons-head-icon svg circle {
    fill: var(--red-color);
}

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

.pros-cons-list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--content-secondary);
    line-height: 1.5;
    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;
}

.pros-cons + .content-button-wrapper {
    position: relative;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(167, 120, 226, 0.32);
    border-radius: var(--radius-card);
    background:
        radial-gradient(circle at 50% 0%, rgba(167, 120, 226, 0.22), transparent 66%),
        linear-gradient(135deg, rgba(60, 29, 81, 0.88), rgba(23, 16, 29, 0.98));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.pros-cons + .content-button-wrapper .content-btn {
    width: min(100%, 360px);
    min-height: 52px;
}

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

    .pros-block,
    .cons-block {
        min-width: 0;
        padding: 16px;
    }

    .pros-cons + .content-button-wrapper {
        padding: 16px;
    }
}

/* Intro band: elevated abyss card, muted #8DA1BE meta, cyan icons */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: var(--section-gap);
    padding: 14px 16px;
    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-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    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: donor 12px plate, cyan score + stars (not Fugu nested fact chips) */
.rating-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    margin-bottom: var(--section-gap);
    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-family: var(--font-display);
    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-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--content-tertiary);
}

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

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

.fact-value.warn {
    color: #FFC107;
}

@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;
    }
}

/* Facts table: elevated abyss rows, 2px cell borders, muted labels */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 8px);
    font-family: var(--font-body);
    font-size: 15px;
    background: transparent;
}

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

.stats-table td {
    padding: 12px var(--card-padding);
    vertical-align: middle;
    border-top: 2px solid var(--border-divider);
    border-bottom: 2px solid var(--border-divider);
}

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

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

.text-content {
    color: var(--content-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.text-content p {
    margin-bottom: var(--section-gap);
    color: var(--content-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.text-content a {
    color: var(--content-primary);
    font-weight: 400;
    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;
}

.text-content strong,
.text-content b {
    color: var(--content-primary);
    font-weight: 700;
}

.text-content em {
    color: var(--content-secondary);
    font-style: italic;
}

.text-content img:not(.content-screen-img) {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
}

/* Table of contents — donor numbered card (not tab chips) */
.article-toc {
    width: 100%;
    margin: var(--section-gap) 0;
    padding: 18px 22px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    background: var(--bg-elevated);
    box-sizing: border-box;
    box-shadow: none;
    position: static;
}

.text-content .article-toc-heading,
.article-toc-heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 700;
    color: var(--content-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: none;
}

.text-content .article-toc-list {
    margin: 0;
    padding: 0 0 0 30px;
    list-style: decimal;
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

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

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

.text-content .article-toc-list a,
.article-toc-list a {
    display: inline;
    padding: 0;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--content-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    transition: color 0.15s ease;
}

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

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

.article-toc-list a:active {
    background: transparent;
    border: none;
    color: var(--x1-secondary);
}

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

    .text-content .article-toc-list {
        padding-left: 24px;
        font-size: 15px;
        line-height: 1.45;
    }

    .article-toc-list a {
        font-size: 15px;
    }
}

.content-screen-figure {
    width: 100%;
    margin: 28px 0 36px;
    text-align: center;
}

/* Full 600×1812 homepage capture: preserve its native ratio without cropping. */
.text-content .content-screen-img,
.content-screen-img {
    display: block;
    max-width: min(100%, 600px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: top center;
    border-radius: var(--radius-card);
    border: 1px solid rgba(167, 120, 226, 0.36);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 22px rgba(167, 120, 226, 0.08);
    background: var(--bg-elevated);
}

.text-content h2:not(:first-of-type)::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 16px;
    background: var(--divider-gradient);
}

.text-content h2,
.text-content h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 12px;
    color: var(--content-primary);
    text-align: left;
    line-height: 1.3;
    letter-spacing: 0;
}

.text-content h2.anchor-heading {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--content-primary);
}

.text-content h3 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
}

.text-content ul,
.text-content ol:not(.article-toc-list) {
    margin: 0 0 var(--section-gap) 1.25em;
    padding: 0;
    color: var(--content-secondary);
}

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

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

/* ===== Spinimax main editorial sections ===== */
body:not(.page-legal) .page-fill {
    background:
        radial-gradient(circle at 50% 38%, rgba(68, 33, 92, 0.14), transparent 34%),
        linear-gradient(180deg, #030303 0%, #030303 24%, rgba(60, 29, 81, 0.74) 100%);
}

body:not(.page-legal) .page-fill > .content-section {
    background: transparent;
    padding-top: 52px;
    padding-bottom: 68px;
}

body:not(.page-legal) .page-fill > .content-section > .content-max-width {
    width: min(100%, 900px);
}

body:not(.page-legal) .page-fill > .content-section > .content-max-width > .content-title {
    position: relative;
    padding-left: 18px;
    margin-bottom: 24px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
}

body:not(.page-legal) .page-fill > .content-section > .content-max-width > .content-title::before {
    content: "";
    position: absolute;
    top: 0.12em;
    bottom: 0.12em;
    left: 0;
    width: 4px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, #FFE996 0%, var(--x1-secondary) 55%, var(--accent-orange) 100%);
    box-shadow: 0 0 14px rgba(var(--accent-gold-rgb), 0.2);
}

body:not(.page-legal) .article-meta,
body:not(.page-legal) .rating-card {
    border-color: rgba(167, 120, 226, 0.28);
    background:
        linear-gradient(135deg, rgba(68, 33, 92, 0.58), rgba(23, 16, 29, 0.92));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

body:not(.page-legal) .article-meta {
    gap: 10px 22px;
    padding: 15px 18px;
}

body:not(.page-legal) .article-meta-item {
    min-width: 0;
    color: var(--content-tertiary);
}

body:not(.page-legal) .article-meta-icon {
    fill: var(--x1-secondary);
}

body:not(.page-legal) .rating-card {
    padding: 20px;
}

body:not(.page-legal) .rating-card:hover {
    border-color: rgba(255, 202, 5, 0.32);
}

body:not(.page-legal) .rating-card-score {
    border-right-color: rgba(167, 120, 226, 0.28);
}

body:not(.page-legal) .rating-number,
body:not(.page-legal) .rating-stars .star,
body:not(.page-legal) .rating-stars .star-half {
    color: var(--x1-secondary);
}

body:not(.page-legal) .fact-item {
    min-width: 0;
    padding: 2px 0;
}

body:not(.page-legal) .fact-label {
    color: var(--content-tertiary);
}

body:not(.page-legal) .fact-value {
    overflow-wrap: anywhere;
}

body:not(.page-legal) .stats-table {
    table-layout: fixed;
}

body:not(.page-legal) .stats-table tr {
    background:
        linear-gradient(90deg, rgba(68, 33, 92, 0.7), rgba(23, 16, 29, 0.94));
}

body:not(.page-legal) .stats-table td {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: rgba(167, 120, 226, 0.25);
    overflow-wrap: anywhere;
}

body:not(.page-legal) .stats-table td:first-child {
    border-left: 3px solid var(--x1-secondary);
    border-radius: var(--radius-btn) 0 0 var(--radius-btn);
}

body:not(.page-legal) .stats-table td:last-child {
    border-right-width: 1px;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
}

body:not(.page-legal) .article-toc {
    padding: 20px 24px;
    border-color: rgba(167, 120, 226, 0.34);
    background:
        linear-gradient(135deg, rgba(60, 29, 81, 0.88), rgba(23, 16, 29, 0.96));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

body:not(.page-legal) .text-content .article-toc-heading {
    color: var(--content-primary);
    font-size: 22px;
    line-height: 1.25;
}

body:not(.page-legal) .text-content .article-toc-list {
    padding-left: 32px;
}

body:not(.page-legal) .article-toc-list .level-1 {
    padding-left: 4px;
}

body:not(.page-legal) .text-content .article-toc-list a {
    color: #DEC9F8;
    overflow-wrap: anywhere;
}

body:not(.page-legal) .text-content .article-toc-list a:hover,
body:not(.page-legal) .text-content .article-toc-list a:active,
body:not(.page-legal) .text-content .article-toc-list a:focus-visible {
    color: var(--x1-secondary);
}

body:not(.page-legal) .text-content {
    color: var(--content-secondary);
    line-height: 1.5;
}

body:not(.page-legal) .text-content p {
    line-height: 1.5;
}

body:not(.page-legal) .text-content h2 {
    position: relative;
    padding-left: 16px;
    color: var(--content-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

body:not(.page-legal) .text-content h2::after {
    content: "";
    position: absolute;
    top: 0.12em;
    bottom: 0.12em;
    left: 0;
    width: 3px;
    border-radius: var(--radius-pill);
    background: var(--x1-secondary);
}

body:not(.page-legal) .text-content h2:not(:first-of-type)::before {
    margin-left: -16px;
    margin-bottom: 18px;
}

body:not(.page-legal) .text-content h3 {
    color: #DEC9F8;
    font-size: 18px;
}

body:not(.page-legal) .text-content a {
    color: var(--x1-tertiary);
    font-weight: 600;
    text-decoration-color: rgba(167, 120, 226, 0.7);
}

body:not(.page-legal) .text-content a:hover,
body:not(.page-legal) .text-content a:focus-visible {
    color: var(--x1-secondary);
    text-decoration-color: currentColor;
}

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

@media (max-width: 768px) {
    body:not(.page-legal) .page-fill > .content-section {
        padding-top: 34px;
        padding-bottom: 46px;
    }

    body:not(.page-legal) .page-fill > .content-section > .content-max-width > .content-title {
        padding-left: 14px;
        margin-bottom: 18px;
        font-size: 24px;
    }

    body:not(.page-legal) .page-fill > .content-section > .content-max-width > .content-title::before {
        width: 3px;
    }

    body:not(.page-legal) .article-meta {
        padding: 13px 14px;
    }

    body:not(.page-legal) .rating-card {
        padding: 16px;
    }

    body:not(.page-legal) .article-toc {
        padding: 16px;
    }

    body:not(.page-legal) .text-content .article-toc-heading {
        font-size: 20px;
    }

    body:not(.page-legal) .text-content .article-toc-list {
        padding-left: 24px;
    }

    body:not(.page-legal) .text-content h2 {
        padding-left: 14px;
        font-size: 20px;
        line-height: 1.25;
    }

    body:not(.page-legal) .text-content h2:not(:first-of-type)::before {
        margin-left: -14px;
    }

    body:not(.page-legal) .text-content h3 {
        font-size: 18px;
        line-height: 1.35;
    }
}

@media (max-width: 430px) {
    body:not(.page-legal) .stats-table {
        font-size: 14px;
    }

    body:not(.page-legal) .stats-table td {
        padding: 10px;
    }

    body:not(.page-legal) .stats-table td:first-child {
        width: 42%;
    }

    body:not(.page-legal) .article-toc {
        padding: 14px 12px;
    }

    body:not(.page-legal) .text-content .article-toc-list {
        padding-left: 22px;
    }
}

/* FAQ accordion — native details with Spinimax purple/gold states */
.faq-list {
    margin: 14px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(68, 33, 92, 0.58), rgba(23, 16, 29, 0.94));
    border-radius: var(--radius-btn);
    border-top: 1px solid rgba(167, 120, 226, 0.3);
    border-right: 1px solid rgba(167, 120, 226, 0.3);
    border-bottom: 1px solid rgba(167, 120, 226, 0.3);
    border-left-width: 3px;
    border-left-style: solid;
    border-left-color: transparent;
    overflow: hidden;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-item[open] {
    background: linear-gradient(135deg, rgba(60, 29, 81, 0.9), rgba(23, 16, 29, 0.98));
    border-top-color: rgba(255, 202, 5, 0.3);
    border-right-color: rgba(255, 202, 5, 0.3);
    border-bottom-color: rgba(255, 202, 5, 0.3);
    border-left-color: var(--x1-secondary);
}

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

.faq-summary {
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    min-height: 44px;
    padding: 14px 40px 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--content-primary);
    position: relative;
    line-height: 1.4;
}

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

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

.faq-summary:hover {
    background: rgba(167, 120, 226, 0.1);
    color: #DEC9F8;
}

.faq-summary:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: -3px;
    border-radius: calc(var(--radius-btn) - 1px);
}

.faq-item[open] .faq-summary:hover {
    background: rgba(255, 202, 5, 0.05);
    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-tertiary);
    border-bottom: 2px solid var(--x1-tertiary);
    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-body {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(167, 120, 226, 0.2);
}

.faq-body p {
    margin: 0;
    color: var(--content-secondary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.faq-body .faq-answer-plain {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #DEC9F8;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        padding: 58px 0 0;
        margin-top: 0;
        justify-content: flex-start;
    }

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

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

    .content-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

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

    .content-button-wrapper {
        width: 100%;
    }

    .content-button-wrapper .content-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        min-width: 0;
        min-height: var(--btn-height);
        border-radius: var(--radius-pill);
    }

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

    .article-meta {
        padding: 12px;
    }

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

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

    .text-content h2,
    .text-content h3 {
        font-size: 18px;
        margin-top: 28px;
        margin-bottom: 10px;
    }

    .text-content h2.anchor-heading {
        font-size: 18px;
        font-weight: 600;
    }

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

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

    .text-content .content-screen-img,
    .content-screen-img {
        max-width: min(100%, 600px);
        border-radius: var(--radius-card);
    }

    .faq-list {
        gap: 8px;
    }

    .faq-summary {
        font-size: 15px;
        font-weight: 600;
        min-height: 44px;
        padding: 12px 36px 12px 14px;
    }

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

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

    .faq-item[open] {
        background: linear-gradient(135deg, rgba(60, 29, 81, 0.9), rgba(23, 16, 29, 0.98));
        border-left-color: var(--x1-secondary);
    }

    .headline-2 {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.1;
    }

    .headline-offer {
        font-size: 28px;
    }
}

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

    .headline-1 {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        padding: 0;
        background: none;
        clip-path: none;
        border-radius: 0;
    }

    .headline-2 {
        font-size: 26px;
        line-height: 1.1;
    }
}

/* Footer — compact Spinimax purple surface shared by main and legal pages */
.footer {
    flex-shrink: 0;
    position: relative;
    margin: 32px 12px 0;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(167, 120, 226, 0.28);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    background:
        radial-gradient(circle at 82% 0%, rgba(167, 120, 226, 0.2), transparent 34%),
        linear-gradient(135deg, #3C1D51 0%, #321744 100%);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.2);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 202, 5, 0.6), transparent);
    pointer-events: none;
}

.footer::after {
    content: none;
    display: none;
}

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

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    gap: 8px 20px;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    padding: 4px 0;
    background: transparent;
    color: #DEC9F8;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0;
    transition: color 0.15s ease;
}

.footer-nav a:hover {
    color: var(--x1-secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

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

.page-legal .content-section,
.page-legal .legal-main .content-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(68, 33, 92, 0.22), transparent 34%),
        linear-gradient(180deg, #030303 0%, #100916 100%);
    padding-top: 96px;
    padding-bottom: 56px;
}

.legal-document {
    width: min(100%, 900px);
    background:
        linear-gradient(145deg, rgba(60, 29, 81, 0.72), rgba(23, 16, 29, 0.97) 42%);
    border: 1px solid rgba(167, 120, 226, 0.32);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.page-legal .content-title {
    position: relative;
    padding-left: 18px;
    color: var(--content-primary);
    font-family: var(--font-display);
    font-weight: 700;
    text-align: left;
}

.page-legal .content-title::before {
    content: "";
    position: absolute;
    top: 0.12em;
    bottom: 0.12em;
    left: 0;
    width: 4px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, #FFE996, var(--x1-secondary) 58%, var(--accent-orange));
}

.legal-document .text-content {
    color: var(--content-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.legal-document .text-content h2,
.legal-document .text-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--content-primary);
    font-weight: 600;
}

.legal-document .text-content h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(167, 120, 226, 0.24);
}

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

/* Beat O5 `.text-content a` (0,1,1 white) — legal pages only */
.legal-link,
.page-legal .legal-link,
.page-legal .text-content a,
.legal-document .text-content a.legal-link {
    color: var(--link-accent);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.legal-link:hover,
.page-legal .legal-link:hover,
.page-legal .text-content a:hover,
.legal-document .text-content a.legal-link:hover {
    color: var(--x1-secondary);
}

.legal-link:focus-visible,
.page-legal .legal-link:focus-visible,
.page-legal .text-content a:focus-visible,
.legal-document .text-content a.legal-link:focus-visible {
    color: var(--x1-secondary);
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: 2px;
}

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

/* APK visual: reference-derived feature artwork in a purple promo card */
.legal-visual-block,
.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 rgba(255, 202, 5, 0.24);
    border-radius: var(--radius-card);
    background:
        radial-gradient(circle at 100% 0%, rgba(167, 120, 226, 0.24), transparent 48%),
        linear-gradient(135deg, rgba(68, 33, 92, 0.9), rgba(10, 9, 10, 0.94));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.legal-visual-block .legal-visual-eyebrow {
    margin: 0 0 10px 0 !important;
    font-family: var(--font-display);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--x1-secondary) !important;
}

.legal-visual-title {
    margin: 0 0 10px 0 !important;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 22px);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
    color: var(--content-primary);
}

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

.legal-visual-media img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
    background: var(--bg-tertiary);
}

.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: var(--radius-card);
    border: 1px solid rgba(167, 120, 226, 0.3);
    background: linear-gradient(145deg, rgba(68, 33, 92, 0.72), rgba(23, 16, 29, 0.92));
}

.legal-mini-card h3,
.legal-document .text-content .legal-mini-card h3 {
    margin: 0 0 8px 0 !important;
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 600;
    color: var(--content-primary);
}

.legal-mini-card p {
    margin: 0 !important;
    color: var(--content-secondary);
    font-family: var(--font-body);
    font-size: 14px;
}

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

.age-restriction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    min-width: 42px;
    min-height: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: rgba(10, 9, 10, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--content-primary);
    box-shadow: none;
}

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

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

.footer-disclaimer p.footer-copyright,
.footer-copyright {
    color: var(--content-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0 0 8px 0 !important;
}

.footer-disclaimer p {
    color: #BEBEBE;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0;
}

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

@media (min-width: 769px) {
    .footer {
        padding: 24px;
    }

    .footer::before {
        left: 24px;
        right: 24px;
    }

    .footer-content {
        gap: 24px 40px;
    }
}

@media (max-width: 768px) {
    .page-legal .content-section,
    .page-legal .legal-main .content-section {
        padding-top: 82px;
        padding-bottom: 40px;
    }

    .legal-document {
        padding: 20px 16px;
    }

    .page-legal .content-title {
        padding-left: 14px;
    }

    .page-legal .content-title::before {
        width: 3px;
    }

    .footer {
        margin: 24px 0 0;
        padding: 20px 12px 24px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .footer::before {
        left: 12px;
        right: 12px;
    }

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

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

    .footer-nav {
        position: relative;
        width: 100%;
        max-width: none;
        flex: none;
        justify-content: flex-start;
        padding-top: 16px;
        border-top: none;
        gap: 4px 16px;
    }

    .footer-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--divider-gradient);
        pointer-events: none;
    }

    .legal-visual-block,
    .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: 320px;
    }

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

/* 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: 42px;
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        transform: none;
        /* Same dual bloom as .header-logo-img (P2-4) */
        filter: var(--logo-glow);
    }
}

/* Hero CTA: lilac secondary action and glossy gold primary action */
.form-container .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    text-align: center;
}

.form-container .hero-buttons > a[href] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}

.form-container .hero-buttons > a[href]:hover {
    color: inherit;
}

.form-container .hero-buttons button.btn-register {
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--font-display);
    width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-container .hero-buttons .btn-register,
.form-container .hero-buttons a.btn-register {
    background: var(--cta-gradient);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--content-on-accent);
    text-shadow: none;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--cta-inset-shadow);
    min-height: 54px;
    padding: 0 var(--btn-padding-x);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.form-container .hero-buttons .btn-register.btn-login,
.form-container .hero-buttons a.btn-register.btn-login {
    background-color: rgba(167, 120, 226, 0.08);
    background-image: linear-gradient(180deg, rgba(167, 120, 226, 0.1), rgba(10, 9, 10, 0.16));
    margin-bottom: 0;
    min-height: 48px;
    font-size: 15px;
    color: #C8A8F0;
    border: 1px solid var(--x1-tertiary);
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-container .hero-buttons .btn-register:hover,
.form-container .hero-buttons a.btn-register:hover,
.form-container .hero-buttons button.btn-register:hover {
    filter: brightness(1.08);
    color: var(--content-on-accent);
    transform: none;
}

.form-container .hero-buttons .btn-register.btn-login:hover,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background-color: rgba(167, 120, 226, 0.18);
    background-image: linear-gradient(180deg, rgba(167, 120, 226, 0.16), rgba(10, 9, 10, 0.12));
    color: #DEC9F8;
    border-color: #C8A8F0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    filter: none;
}

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

body.page-legal .legal-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    color: var(--content-secondary);
    font-family: var(--font-body);
    line-height: 1.7;
}

body.page-legal .legal-wrap h1 {
    color: var(--content-primary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 20px;
}

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

body.page-legal .legal-wrap a {
    color: var(--link-accent);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

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

body.page-legal .legal-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--link-accent);
    font-family: var(--font-body);
    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 (≤1024 — same breakpoint as hidden desktop banner) */
.banerBody.mobile-promo-banner,
.mobile-promo-banner {
    display: none;
}

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

/* Show compact promo whenever desktop hero plate is hidden (≤1024) */
@media (max-width: 1024px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .banerBody.mobile-promo-banner,
    .mobile-promo-banner {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin-top: 0;
        position: relative;
        z-index: 50;
        overflow-x: clip;
    }

    .mobile-promo-banner__link {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 0;
        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;
        width: 100%;
        min-height: 300px;
        max-height: 300px;
        border-radius: 0;
        background: #0A090A;
        border: 0;
        box-shadow: inset 0 -1px 0 rgba(167, 120, 226, 0.22);
        isolation: isolate;
    }

    .mobile-promo-banner__banner.bonusBanner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.2) 47%, rgba(20, 8, 28, 0.62) 100%),
            radial-gradient(circle at 50% 0%, rgba(60, 29, 81, 0.46), transparent 58%);
        pointer-events: none;
    }

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

    .mobile-promo-banner__backImg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Donor-like crop: 70%/right hid the welcome woman in the 390 strip */
        object-position: -68% 21%;
        display: block;
    }

    .banerBody.mobile-promo-banner img.mobile-promo-banner__mainImg.bonusBannerMain,
    .mobile-promo-banner img.mobile-promo-banner__mainImg.bonusBannerMain {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Beat any center-right; keep desktop .banner-img at center right */
        object-position: 50% 38%;
        transform: none;
        z-index: 0;
        pointer-events: none;
        filter: none;
    }

    .mobile-promo-banner__inside {
        position: relative;
        z-index: 2;
        padding: 24px 16px 18px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
        min-height: 300px;
        box-sizing: border-box;
    }

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

    .mobile-promo-banner__eyebrow {
        margin: 0;
        font-family: inherit;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--content-primary);
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    }

    .mobile-promo-banner__lead {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 900;
        line-height: 1;
        color: var(--content-primary);
        letter-spacing: -0.02em;
        text-transform: uppercase;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
    }

    .mobile-promo-banner__lead .offer-accent-money {
        color: var(--x1-secondary);
    }

    .mobile-promo-banner__lead .offer-accent-fs {
        color: var(--x1-secondary);
    }

    .mobile-promo-banner__cta {
        align-self: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        min-width: 212px;
        padding: 0 40px;
        box-sizing: border-box;
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--content-on-accent);
        text-shadow: none;
        line-height: 1;
        background: var(--cta-gradient);
        border: none;
        border-radius: var(--radius-pill);
        box-shadow: var(--cta-inset-shadow);
        transition: filter 0.15s ease;
        margin-top: auto;
    }

    .mobile-promo-banner__link:hover .mobile-promo-banner__cta,
    .mobile-promo-banner__link:focus-visible .mobile-promo-banner__cta {
        filter: brightness(1.08);
        color: var(--content-on-accent);
    }
}

/* Tablet keeps the same 300px compact hero stage as the reference */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-promo-banner__banner.bonusBanner {
        min-height: 300px;
        max-height: 300px;
    }

    .mobile-promo-banner__inside {
        min-height: 300px;
    }
}

@media (max-width: 430px) {
    .headline-offer {
        font-size: 26px;
    }

    .mobile-promo-banner__inside {
        max-width: 100%;
        padding: 20px 12px 16px;
        min-height: 300px;
        gap: 8px;
    }

    .mobile-promo-banner__eyebrow {
        font-size: 16px;
    }

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

    .mobile-promo-banner__cta {
        width: min(100%, 212px);
        max-width: 100%;
        min-height: 44px;
        padding: 0 24px;
    }

    .legal-wrap,
    body.page-legal .legal-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 360px) {
    .headline-offer {
        font-size: 24px;
    }

    .mobile-promo-banner__lead {
        font-size: clamp(16px, 5vw, 18px);
    }
}

/* Stage 13 P1 refinements */
@media (min-width: 1025px) {
    .content-wrapper {
        isolation: isolate;
    }

    .banner-container {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .banner-container::before {
        background:
            linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(20, 9, 27, 0.78) 35%, rgba(20, 9, 27, 0.2) 62%, transparent 82%),
            linear-gradient(180deg, rgba(3, 3, 3, 0.08), rgba(3, 3, 3, 0.2));
    }

    .banner-img,
    .page-bonuses .banner-img {
        object-position: center 38%;
    }

    .form-container {
        width: 52%;
        min-width: 560px;
        max-width: 620px;
        align-items: flex-start;
        padding: 34px 42px;
        background: linear-gradient(90deg, rgba(3, 3, 3, 0.48), rgba(36, 17, 47, 0.18) 76%, transparent);
    }

    .form-container .logo {
        display: none;
    }

    .headline-1,
    .headline-2,
    .headline-offer {
        text-align: left;
    }

    .headline-1 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .headline-2 {
        font-size: clamp(38px, 3.1vw, 44px);
    }

    .headline-offer {
        font-size: clamp(52px, 4.1vw, 60px);
    }

    .form-container .hero-buttons {
        width: min(100%, 250px);
        align-items: flex-start;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .header-content,
    .header-right {
        gap: 4px;
    }

    .header .header-register {
        min-width: 123px;
        padding-inline: 10px;
        font-size: 14px;
    }

    .header .header-login {
        min-width: 98px;
        padding-inline: 8px;
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .header .header-register {
        min-width: 88px;
        font-size: 12px;
    }

    .header .header-login {
        min-width: 60px;
        font-size: 12px;
    }

    .header .lang-dropdown-btn {
        min-width: 44px;
        padding-inline: 6px;
    }
}

@media (max-width: 360px) {
    .header .header-register {
        min-width: 78px;
        padding-inline: 6px;
        font-size: 11px;
    }

    .header .header-login {
        min-width: 52px;
        padding-inline: 5px;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    body:not(.page-legal) .rating-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    body:not(.page-legal) .rating-card-score {
        min-width: 0;
        border-right: 1px solid rgba(167, 120, 226, 0.28);
        border-bottom: 0;
        padding: 4px 12px 4px 0;
    }

    body:not(.page-legal) .rating-number {
        font-size: 40px;
    }

    body:not(.page-legal) .rating-stars {
        gap: 1px;
        margin: 6px 0 4px;
    }

    body:not(.page-legal) .rating-stars .star,
    body:not(.page-legal) .rating-stars .star-half {
        font-size: 15px;
    }

    body:not(.page-legal) .rating-card-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 12px;
    }

    body:not(.page-legal) .fact-label {
        font-size: 10px;
    }

    body:not(.page-legal) .fact-value {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Stage 13 P2 refinements */
@media (min-width: 1025px) {
    .content-wrapper {
        height: 450px;
        min-height: 450px;
        border: 0;
        border-radius: 4px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    }
}

.footer {
    background: #3C1D51;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
}

.footer::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.footer-nav a {
    color: var(--content-primary);
}

.legal-document {
    background: linear-gradient(145deg, rgba(36, 17, 47, 0.42), rgba(10, 9, 10, 0.96) 48%);
    border-color: rgba(167, 120, 226, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.legal-document .text-content h2 {
    border-bottom-color: rgba(167, 120, 226, 0.16);
}


