:root {
    /* Velwins night-ops navy + orange — existing aliases retargeted */
    --x1-primary: #111827;
    --x1-secondary: #E85A29;
    --x1-tertiary: #141C2E;
    --x1-bg-deep: #141C2E;
    --x1-login-blue: #152236;

    /* Surfaces */
    --bg-secondary: #152236;
    --bg-tertiary: #1B2C46;
    --bg-elevated: #152236;

    /* Surface aliases */
    --surface-a: #111827;
    --surface-b: #152236;
    --surface-c: #1B2C46;
    --surface-d: #141C2E;

    /* Content colors */
    --content-primary: #FFFFFF;
    --content-secondary: #ABBEDE;
    --content-tertiary: #39598E;
    --content-on-accent: #FFFFFF;

    /* Controls & borders */
    --control-neutral: #152236;
    --control-neutral-hover: #1B2C46;
    --border-divider: rgba(255, 255, 255, 0.1);
    --border-focus: #E85A29;

    /* Legacy aliases used in current stylesheet */
    --iris-bg: var(--x1-bg-deep);
    --iris-purple-a: #294BCC;
    --iris-purple-b: #3EB814;
    --iris-cta-a: #E85A29;
    --iris-cta-b: #EB6D42;

    --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: 215, 29, 29;
    --accent-gold-rgb: 232, 90, 41;
    --accent-green-rgb: 62, 184, 20;
    --accent-blue-rgb: 232, 90, 41;
    --ui-panel: 17, 24, 39;
    --ui-panel-2: 20, 28, 46;
    --link-accent: #ABBEDE;

    /* Brand aliases remapped to Velwins (no lime / purple / cyan / magenta) */
    --gold-brand: #111827;
    --gold-accent: #E85A29;
    --cream: #FFFFFF;
    --offer-cream: #FFFFFF;
    --parchment-ink: #FFFFFF;
    --jewel: #E85A29;
    --jewel-dark: #294BCC;
    --header-brick-mid: #152236;
    --brand-purple: #294BCC;
    --brand-magenta: #3EB814;
    --accent-orange: #E85A29;
    --accent-orange-hover: #EB6D42;
    --accent-orange-active: #E24C18;
    --btn-promo: #E85A29;
    --btn-promo-hover: #EB6D42;
    --hero-stage: #111827;
    --gradient-brand: linear-gradient(180deg, #141C2E, #111827);
    --gradient-night: linear-gradient(180deg, #141C2E, #111827);
    --shadow-m: 0 6px 30px #0000001a;

    /* CTA & decorative tokens — solid orange, no metallic bevel */
    --cta-gradient: #E85A29;
    --cta-secondary-bg: transparent;
    --cta-inset-shadow: none;
    --header-shadow: none;
    --logo-glow: none;
    --divider-gradient: linear-gradient(90deg, rgba(17, 24, 39, 0) 0%, rgba(255, 255, 255, 0.1) 27.6%, rgba(255, 255, 255, 0.3) 52.62%, rgba(255, 255, 255, 0.1) 74.48%, rgba(17, 24, 39, 0) 100%);

    --radius-pill: 4px;
    --radius-btn: 4px;
    --radius-tab: 6px;
    --radius-card: 12px;
    --radius-hero: 12px;
    --offer-gold: #FFFFFF;
    --border-card: #213554;

    /* Header CTA radii — 4px square (not pills). 18+ chip keeps its own rule. */
    --radius-cta-join-start: 4px;
    --radius-cta-join-end: 4px;
    --header-register-radius: var(--radius-btn);
    --header-login-radius: var(--radius-btn);
    --header-cta-gap: 8px;

    --header-fade-gradient: none;

    --primary-color: #111827;
    --primary-color-light: #141C2E;
    --btn-dark-color: #152236;

    --secondary-color: #E85A29;
    --btn-secondary-color: #152236;
    --btn-primary-hover: #EB6D42;
    --tertiary-color: #141C2E;
    --red-color: #D71D1D;
    --blue-color: var(--x1-tertiary);
    --dark-btn-text: #FFFFFF;

    /* Typography — Montserrat 400/600/700/800 (Google Fonts in templates) */
    --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Montserrat", var(--font-body);
    --font-sans: var(--font-body);
    --font-offer: var(--font-body);

    --motion-duration: 0.3s;
    --motion-ease: cubic-bezier(0.4, 0, 0.2, 1);

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

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

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 73px;
    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;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--content-secondary);
    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(--accent-orange-hover);
}

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 (Velwins chrome #141C2E, 72/64 bar, 4px CTAs) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--x1-bg-deep);
    background-image: none;
    border-bottom: 1px solid var(--border-divider);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

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

.page-legal .header {
    background: var(--x1-bg-deep);
    background-image: none;
    box-shadow: none;
    border-bottom: 1px solid var(--border-divider);
}

.header-content {
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 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;
    color: inherit;
    transition: opacity var(--motion-duration) var(--motion-ease);
}

.header-logo:hover {
    color: inherit;
    opacity: 0.92;
}

.header-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    box-shadow: none;
    transition: opacity var(--motion-duration) var(--motion-ease);
}

.header-logo-img--desktop {
    height: 32px;
    width: auto;
    max-width: 132px;
}

.header-logo-img--mobile {
    display: none;
    height: 48px;
    width: 48px;
    max-width: 48px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--header-cta-gap);
    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-btn);
    border: 1px solid var(--border-divider);
    background: var(--x1-login-blue);
    color: var(--content-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    text-shadow: none;
    user-select: none;
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-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);
    border-color: var(--border-divider);
}

.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 var(--motion-duration) var(--motion-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 var(--border-divider);
    background: var(--x1-login-blue);
    box-shadow: var(--shadow-m);
}

.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 var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease);
}

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

.lang-dropdown-current {
    color: var(--accent-orange);
    cursor: pointer;
}

/* Download links (desktop icon buttons) — steel icons, no plum pills */
.download-links {
    display: none;
    align-items: center;
    gap: 8px;
}

.download-label {
    display: none;
}

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

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: var(--radius-btn);
    border: 1px solid transparent;
    background: transparent;
    text-decoration: none;
    text-align: center;
    color: var(--content-secondary);
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease);
}

.download-link:hover {
    background: var(--control-neutral-hover);
    color: var(--content-primary);
    border-color: var(--border-divider);
}

.download-link:hover .download-icon {
    fill: var(--content-primary);
}

.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 var(--motion-duration) var(--motion-ease);
}

/* Header CTAs — orange Sign Up + ghost Sign In, 4px, centered text */
.header-login,
.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    min-height: 36px;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease),
        box-shadow var(--motion-duration) var(--motion-ease);
}

.header-register {
    border-radius: var(--header-register-radius);
    border: none;
    background: var(--cta-gradient);
    color: var(--content-on-accent);
    box-shadow: none;
}

.header-login {
    border-radius: var(--header-login-radius);
    border: 1px solid var(--border-divider);
    background: var(--x1-login-blue);
    color: var(--content-primary);
    box-shadow: none;
}

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

.header-login:hover {
    background: var(--control-neutral-hover);
    border-color: var(--border-divider);
    color: var(--content-primary);
}

.header-login:active {
    background: var(--control-neutral-hover);
    border-color: var(--border-divider);
    color: var(--content-primary);
}

.header-register:hover {
    background: var(--accent-orange-hover);
    box-shadow: none;
    color: var(--content-on-accent);
}

.header-register:active {
    background: var(--accent-orange-active);
    box-shadow: none;
    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: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    transition: color var(--motion-duration) var(--motion-ease),
        opacity var(--motion-duration) var(--motion-ease);
}

.header-help:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.header-help:hover .help-icon {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.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 var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease);
}

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

    .header-logo-img--desktop {
        height: 32px;
        max-width: 132px;
    }

    .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: 36px;
        min-width: 44px;
    }

    .header-login,
    .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

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

    .header-register {
        padding: 8px 20px;
        border-radius: var(--header-register-radius);
    }

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

    .lang-dropdown-btn {
        min-height: 36px;
        font-size: 14px;
        font-weight: 600;
        text-transform: none;
        text-align: center;
        border-radius: var(--radius-btn);
    }
}

/* Touch tablet: 44px hits. Independent of ≤768 logo swap. ≥1025 keeps 36px pointer chrome. */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-login,
    .header-register,
    .header-help,
    .lang-dropdown-btn {
        min-height: 44px;
    }

    .download-link {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

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

    .header {
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid var(--border-divider);
        background: var(--x1-bg-deep);
    }

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

    .header-content {
        padding: 0 var(--space-page-x-mobile);
        min-height: 64px;
    }

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

    /* Wordmark off, V-mark logo-icon.svg in ~48px box on ≤768 */
    .header-logo-img--desktop {
        display: none;
    }

    .header-logo-img--mobile {
        display: block;
        height: 48px;
        width: 48px;
        max-width: 48px;
        object-fit: contain;
        filter: none;
    }

    .header-right {
        min-width: 0;
        flex-shrink: 1;
        flex-wrap: nowrap;
        gap: var(--header-cta-gap);
    }

    .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: 7px 12px;
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.25;
        text-transform: none;
        text-align: center;
    }

    .header .header-register {
        border-radius: var(--header-register-radius);
        background: var(--cta-gradient);
        color: var(--content-on-accent);
        box-shadow: none;
        border: none;
    }

    .header .header-login {
        border-radius: var(--header-login-radius);
        border: 1px solid var(--border-divider);
        background: var(--x1-login-blue);
        color: var(--content-primary);
    }

    .header .header-login:hover {
        background: var(--control-neutral-hover);
        border: 1px solid var(--border-divider);
        color: var(--content-primary);
    }

    .header .header-login:active {
        background: var(--control-neutral-hover);
        border: 1px solid var(--border-divider);
        color: var(--content-primary);
    }

    .header .header-register:hover {
        background: var(--accent-orange-hover);
        box-shadow: none;
        color: var(--content-on-accent);
    }

    .header .header-register:active {
        background: var(--accent-orange-active);
        box-shadow: none;
        color: var(--content-on-accent);
    }

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

    .header .lang-dropdown-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        min-width: 44px;
        padding: 0 10px;
        font-size: 13px;
        font-weight: 600;
        text-transform: none;
        text-align: center;
        border-radius: var(--radius-btn);
        border: 1px solid var(--border-divider);
        background: var(--x1-login-blue);
    }
}

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

.container::after {
    display: none;
}

/* Hero row: offer card left + contained blue slider plate (wallet cutout, not a mural) */
.content-wrapper {
    display: flex;
    align-items: stretch;
    gap: var(--section-gap);
    width: 100%;
    max-width: 1276px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-hero);
    padding: 24px;
    max-width: 420px;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    z-index: 1;
    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: flex-end;
    align-items: stretch;
    min-width: 0;
    min-height: 372px;
    overflow: hidden;
    border-radius: var(--radius-hero);
    align-self: stretch;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #0B1A6A 0%, #1A237E 40%, #4A6CFF 75%, #5B7CFF 100%);
    border: 1px solid var(--border-divider);
    box-shadow: var(--shadow-m);
}

.banner-img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    align-self: stretch;
    object-fit: contain;
    object-position: right center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    filter: none;
}

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

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

@media (max-width: 1024px) {
    .container {
        padding-left: var(--space-page-x-mobile);
        padding-right: var(--space-page-x-mobile);
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 0;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
    }

    .form-container {
        margin: 0 auto;
        max-width: 420px;
        align-items: stretch;
        padding: 16px;
    }

    .form-container::after {
        display: none;
        content: none;
    }

    .banner-container,
    .page-bonuses .banner-container {
        display: none;
    }

    /* Single promo block on mobile: strip carries offer; form keeps logo + CTAs only */
    .form-container .headline-1,
    .form-container .headline-2,
    .form-container .headline-offer {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding-top: calc(65px + var(--section-gap));
    }
}

.headline-1 {
    display: block;
    width: 100%;
    max-width: 100%;
    order: 2;
    text-align: center;
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 2px;
    line-height: 1.15;
    padding: 0;
    background: none;
    border-radius: 0;
    clip-path: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.headline-2 {
    order: 1;
    text-align: center;
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-shadow: none;
}

.headline-offer {
    order: 3;
    text-align: center;
    margin: 4px 0 8px;
    font-family: var(--font-display);
    font-size: clamp(16px, 2.4vw, 20px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
    color: var(--content-primary);
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.offer-accent-money {
    color: var(--content-primary);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.1;
}

.offer-accent-fs {
    color: var(--content-primary);
    font-weight: 800;
    font-size: clamp(16px, 2.4vw, 20px);
}

.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-btn);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: none;
    cursor: pointer;
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease),
        box-shadow var(--motion-duration) var(--motion-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: none;
}

.btn-register.btn-login {
    background: var(--x1-login-blue);
    background-image: none;
    margin-bottom: 0;
    min-height: var(--btn-height);
    font-size: 14px;
    color: var(--content-primary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-btn);
    box-shadow: none;
}

.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    background-image: none;
    color: var(--content-primary);
    border-color: var(--border-divider);
    box-shadow: none;
    filter: none;
}

.btn-register.btn-login:active {
    background: var(--control-neutral-hover);
    background-image: none;
    color: var(--content-primary);
    border-color: var(--border-divider);
}

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 {
    background: var(--accent-orange-hover);
    box-shadow: none;
    filter: none;
    color: var(--content-on-accent);
}

.btn-register:active {
    background: var(--accent-orange-active);
    box-shadow: none;
    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%;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    background: var(--x1-login-blue);
    color: var(--content-primary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease);
}

.btn-login-banner:hover {
    background: var(--control-neutral-hover);
    transform: none;
}

/* ===== Main content sections (Velwins article chrome — navy + orange) ===== */
.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: article gutters 20px (desktop token). Hero .container left as Stage 7. */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: var(--space-page-x-desktop);
        padding-right: var(--space-page-x-desktop);
    }

    .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: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    line-height: 32px;
    letter-spacing: 0;
}

.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 + intro CTA: solid orange 4px, white label, no lime glow */
.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);
    background-image: none;
    color: var(--content-on-accent);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: none;
    cursor: pointer;
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        box-shadow var(--motion-duration) var(--motion-ease);
}

.content-btn:hover {
    filter: none;
    background: var(--accent-orange-hover);
    color: var(--content-on-accent);
    border: none;
    transform: none;
    box-shadow: none;
}

.content-btn:active {
    filter: none;
    background: var(--accent-orange-active);
    color: var(--content-on-accent);
    box-shadow: none;
}

.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: inset #152236 cards, logo-green vs error-red (not lobby tiles) */
.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-secondary);
    border: 1px solid var(--border-divider);
    box-shadow: none;
    transition: border-color var(--motion-duration) var(--motion-ease);
}

.cons-block {
    background: var(--bg-secondary);
}

.pros-block:hover,
.cons-block:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.pros-cons-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    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-cons .pros-block .pros-cons-head-icon svg circle,
.pros-cons .pros-block .pros-cons-head-icon svg [fill="#59FF8B"],
.pros-cons .pros-block .pros-cons-head-icon svg [fill="#00F6FF"] {
    fill: #3EB814;
}

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

.pros-cons .cons-block .pros-cons-head-icon svg circle,
.pros-cons .cons-block .pros-cons-head-icon svg [fill="#FF4287"],
.pros-cons .cons-block .pros-cons-head-icon svg [fill="#FF005E"] {
    fill: #D71D1D;
}

.pros-cons .cons-block .pros-cons-head-icon svg path {
    stroke: #FFFFFF;
    fill: none;
}

.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;
    font-weight: 400;
    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: #3EB814;
    margin-top: 2px;
}

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

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

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

    .pros-cons-title {
        font-size: 16px;
        font-weight: 700;
    }
}

/* Intro band: inset #152236, muted labels / white values */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: var(--section-gap);
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: none;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--content-tertiary);
    line-height: 1.4;
}

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

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

.article-author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--section-gap);
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: none;
}

.article-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border-divider);
}

.article-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.article-author-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--content-primary);
    line-height: 1.3;
}

.article-author-link {
    text-decoration: none;
    color: var(--content-primary);
    transition: color var(--motion-duration) var(--motion-ease);
}

.article-author-link:hover,
.article-author-link:focus-visible {
    color: var(--accent-orange-hover);
    text-decoration: underline;
}

.article-author-role {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--content-secondary);
    line-height: 1.4;
}

.article-author-date {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--content-tertiary);
    line-height: 1.4;
}

.article-author-bio {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--content-secondary);
    line-height: 1.45;
    margin: 4px 0 2px;
}

.article-breadcrumbs {
    margin-bottom: 16px;
}

.article-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--content-tertiary);
}

.article-breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
}

.article-breadcrumbs-list li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: var(--content-tertiary);
    opacity: 0.7;
}

.article-breadcrumbs-list a {
    color: var(--content-secondary);
    text-decoration: none;
    transition: color var(--motion-duration) var(--motion-ease);
}

.article-breadcrumbs-list a:hover,
.article-breadcrumbs-list a:focus-visible {
    color: var(--accent-orange-hover);
    text-decoration: underline;
}

.article-breadcrumbs-list li[aria-current="page"] {
    color: var(--content-primary);
    font-weight: 600;
}

.content-screen-caption,
.stats-table-caption {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    color: var(--content-tertiary);
    text-align: center;
    margin-top: 8px;
}

.stats-table-caption {
    caption-side: top;
    padding-bottom: 10px;
    text-align: left;
}

.article-related-links {
    margin-top: 24px;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.article-related-links p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--content-secondary);
}

/* Rating card: inset #152236, orange score (not lime) */
.rating-card {
    background: var(--bg-secondary);
    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;
    box-shadow: none;
}

.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: 800;
    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: var(--content-primary);
}

.fact-value.warn {
    color: var(--content-primary);
}

@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: inset #152236 board, steel labels, white values, #213554 hairlines */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 8px);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.stats-table tr {
    background: transparent;
}

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

.stats-table tr:last-child td {
    border-bottom: none;
}

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

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

.stats-table tr:first-child td:first-child {
    border-top-left-radius: var(--radius-card);
}

.stats-table tr:first-child td:last-child {
    border-top-right-radius: var(--radius-card);
}

.stats-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius-card);
}

.stats-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-card);
}

.text-content {
    color: var(--content-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    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.5;
}

.text-content a {
    color: var(--accent-orange-active);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--motion-duration) var(--motion-ease);
}

.text-content a:hover {
    color: var(--accent-orange-hover);
}

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

.text-content a[href*="register"],
.text-content a[href*="_cr"] {
    color: var(--accent-orange-active);
    font-weight: 600;
}

.text-content a[href*="register"]:hover,
.text-content a[href*="_cr"]:hover,
.text-content a[href*="register"]:focus-visible,
.text-content a[href*="_cr"]:focus-visible {
    color: var(--accent-orange-hover);
}

.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 — vertical numbered list, inset #152236 panel */
.article-toc {
    width: 100%;
    margin: var(--section-gap) 0;
    padding: 16px 20px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    background: var(--bg-secondary);
    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: 16px;
    font-weight: 700;
    color: var(--content-primary);
    letter-spacing: 0;
    line-height: 24px;
    text-transform: none;
}

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

.article-toc-list .level-1 {
    margin: 0 0 10px;
    padding: 0 0 0 8px;
    color: var(--content-secondary);
    list-style: decimal;
    border-left: 2px solid transparent;
    transition: border-color var(--motion-duration) var(--motion-ease);
}

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

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

.article-toc-list .level-1:hover,
.article-toc-list .level-1:focus-within {
    border-left-color: var(--x1-secondary);
}

.article-toc-list .level-1:hover::marker,
.article-toc-list .level-1:focus-within::marker {
    color: var(--accent-orange-hover);
}

.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: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    transition: color var(--motion-duration) var(--motion-ease);
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
    background: transparent;
    border: none;
    color: var(--accent-orange-hover);
    text-decoration: none;
}

.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(--accent-orange-active);
}

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

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

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

.content-screen-figure {
    margin: var(--section-gap) 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
}

/* Full homepage screenshot — 12px frame, 1px white/10 hairline */
.text-content .content-screen-img,
.content-screen-img {
    display: block;
    max-width: min(100%, 384px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: top center;
    border-radius: 12px;
    border: 1px solid var(--border-divider);
    box-shadow: none;
    background: var(--bg-secondary);
}

.text-content h2,
.text-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 12px;
    color: var(--content-primary);
    text-align: left;
    line-height: 28px;
    letter-spacing: 0;
}

.text-content h2 {
    position: relative;
    padding-left: 12px;
}

.text-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    background: var(--x1-secondary);
    border-radius: 1px;
}

.text-content h2.anchor-heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 28px;
    color: var(--content-primary);
}

.text-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    color: var(--content-primary);
    padding-left: 0;
}

.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.5;
}

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

.text-content blockquote {
    margin: var(--section-gap) 0;
    padding: 14px 18px;
    border-left: 3px solid var(--x1-secondary);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    background: var(--bg-secondary);
    color: var(--content-secondary);
    font-style: italic;
}

.text-content blockquote p {
    margin-bottom: 10px;
    color: var(--content-secondary);
}

.text-content blockquote p:last-child {
    margin-bottom: 0;
}

.text-content table:not(.stats-table) {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--section-gap) 0;
    font-size: 14px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--bg-secondary);
}

.text-content table:not(.stats-table) th,
.text-content table:not(.stats-table) td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-card);
    text-align: left;
    vertical-align: top;
}

.text-content table:not(.stats-table) th {
    background: var(--bg-tertiary);
    color: var(--content-primary);
    font-weight: 600;
    font-family: var(--font-display);
}

.text-content table:not(.stats-table) td {
    background: var(--bg-secondary);
    color: var(--content-secondary);
}

.text-content table:not(.stats-table) tr:last-child td,
.text-content table:not(.stats-table) tr:last-child th {
    border-bottom: none;
}

/* FAQ accordion — #152236 panels, orange 4px plus (no left rail) */
.faq-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: none;
    overflow: hidden;
    transition:
        background var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease);
}

.faq-item[open] {
    background: var(--bg-tertiary);
    border-color: rgba(232, 90, 41, 0.4);
}

.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 44px 14px 16px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    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,
.faq-summary::marker {
    display: none;
    content: "";
}

.faq-summary:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--content-primary);
}

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

.faq-item[open] .faq-summary:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--content-primary);
}

.faq-summary::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: 0;
    border: none;
    transform: translateY(-50%);
    background:
        linear-gradient(#E85A29, #E85A29) center / 12px 4px no-repeat,
        linear-gradient(#E85A29, #E85A29) center / 4px 12px no-repeat;
    transition: background var(--motion-duration) var(--motion-ease);
}

.faq-item[open] .faq-summary::after {
    transform: translateY(-50%);
    margin-top: 0;
    background: linear-gradient(#E85A29, #E85A29) center / 12px 4px no-repeat;
}

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

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

.faq-body .faq-answer-plain {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--content-secondary);
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        padding: calc(65px + var(--section-gap)) var(--space-page-x-mobile) var(--section-gap);
        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;
        font-weight: 800;
        line-height: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

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

    .content-button-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .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-btn);
        box-shadow: none;
    }

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

    .article-meta {
        padding: 12px;
    }

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

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

    .text-content h2,
    .text-content h3 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 28px;
        margin-bottom: 8px;
    }

    .text-content h2.anchor-heading {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        color: var(--content-primary);
    }

    .text-content h3 {
        font-size: 16px;
        font-weight: 800;
        color: var(--content-primary);
    }

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

    .stats-table td:first-child {
        font-size: 13px;
        width: 45%;
        color: var(--content-tertiary);
    }

    .text-content .content-screen-img,
    .content-screen-img {
        max-width: min(100%, 384px);
        border-radius: 12px;
        border: 1px solid var(--border-divider);
        box-shadow: none;
    }

    .faq-list {
        gap: 8px;
    }

    .faq-summary {
        font-size: 16px;
        font-weight: 700;
        min-height: 44px;
        padding: 12px 40px 12px 14px;
    }

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

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

    .faq-item[open] {
        background: var(--bg-tertiary);
        border-color: rgba(232, 90, 41, 0.4);
    }

    .headline-2 {
        font-size: 14px;
        font-weight: 800;
        line-height: 1.25;
    }

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

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

    .headline-1 {
        font-size: clamp(22px, 6vw, 28px);
        font-weight: 800;
        line-height: 1.15;
        padding: 0;
        background: none;
        clip-path: none;
        border-radius: 0;
    }

    .headline-2 {
        font-size: 14px;
        font-weight: 800;
        line-height: 1.25;
    }

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

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

/* Footer — Velwins navy bar, steel nav → orange hover, 18+ chip */
.footer {
    flex-shrink: 0;
    position: relative;
    background: #111827;
    background-image: none;
    padding: 24px var(--space-page-x-mobile) 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 0;
}

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

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

.footer-content {
    max-width: 1400px;
    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: #ABBEDE;
    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 var(--motion-duration) var(--motion-ease);
}

.footer-nav a:hover {
    color: #EB6D42;
    text-decoration: none;
}

.footer-nav a:focus-visible {
    color: #EB6D42;
    text-decoration: none;
    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: #111827;
    padding-top: 73px;
    padding-left: var(--space-page-x-mobile);
    padding-right: var(--space-page-x-mobile);
}

.legal-document {
    background: #152236;
    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: none;
}

/* Beat article H1 24/800 centered — legal document chrome is left 700 */
.page-legal .content-title {
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 20px;
}

.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,
.legal-document .text-content h4 {
    font-family: var(--font-display);
    line-height: 1.3;
    letter-spacing: 0;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--content-primary);
    font-weight: 700;
    text-align: left;
}

.legal-document .text-content h2 {
    font-size: 20px;
}

.legal-document .text-content h3 {
    font-size: 18px;
}

.legal-document .text-content h4 {
    font-size: 16px;
    color: var(--content-secondary);
}

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

/* Beat O5 `.text-content a` — legal pages only. Idle #E24C18, hover #EB6D42 */
.legal-link,
.page-legal .legal-link,
.page-legal .text-content a,
.legal-document .text-content a.legal-link {
    color: #E24C18;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--motion-duration) var(--motion-ease);
}

.legal-link:hover,
.page-legal .legal-link:hover,
.page-legal .text-content a:hover,
.legal-document .text-content a.legal-link:hover {
    color: #EB6D42;
}

.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: #EB6D42;
    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: elevated #152236 card — no cyan glow */
.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 var(--border-divider);
    border-radius: var(--radius-card);
    background: #152236;
    box-shadow: none;
}

.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: #E85A29 !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%, 280px);
    justify-self: end;
}

.legal-visual-media img {
    display: block;
    width: 100%;
    max-width: 280px;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: none;
    background: #141C2E;
}

.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 var(--border-divider);
    background: #141C2E;
}

.legal-mini-card:nth-child(even) {
    background: #1B2C46;
}

.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: 36px;
    min-height: 36px;
    width: auto;
    height: auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: #152236;
    border: 1px solid var(--border-divider);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    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-tertiary);
    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: var(--content-tertiary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.54;
    letter-spacing: normal;
    margin: 0;
}

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

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

    .page-legal .content-section,
    .page-legal .legal-main .content-section {
        padding-left: var(--space-page-x-desktop);
        padding-right: var(--space-page-x-desktop);
        padding-top: 73px;
        padding-bottom: 56px;
    }

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

@media (max-width: 768px) {
    .page-legal .content-section,
    .page-legal .legal-main .content-section {
        padding-top: 65px;
        padding-left: var(--space-page-x-mobile);
        padding-right: var(--space-page-x-mobile);
    }

    .page-legal .content-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
    }

    .footer {
        padding: 16px var(--space-page-x-mobile) 24px;
    }

    .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: 8px 16px;
    }

    .footer-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        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: 240px;
        max-height: 180px;
    }

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

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

@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;
        filter: none;
    }
}

/* Desktop hero pair: contained ~372 slider analog (wallet contain/right, dual CTAs uncropped) */
@media (min-width: 1025px) {
    .form-container {
        padding: 16px;
        gap: 8px;
    }

    .form-container .logo-img {
        max-height: 32px;
    }

    .form-container .headline-1 {
        font-size: clamp(22px, 2.2vw, 28px);
        line-height: 1.15;
        margin-bottom: 0;
    }

    .form-container .headline-2 {
        font-size: 13px;
        line-height: 1.2;
    }

    body:not(.page-bonuses) .form-container .headline-offer {
        display: none;
    }

    .page-bonuses .form-container .headline-offer {
        margin: 0;
        font-size: 16px;
    }

    .page-bonuses .form-container .offer-accent-money {
        font-size: clamp(24px, 2.4vw, 32px);
    }

    .form-container .hero-buttons {
        gap: 8px;
        margin-top: 0;
    }

    .banner-container,
    .page-bonuses .banner-container {
        min-height: 372px;
        max-height: 372px;
        height: 372px;
        align-self: stretch;
    }

    .banner-img,
    .page-bonuses .banner-img {
        object-fit: contain;
        object-position: right center;
    }
}

/* Hero CTA — Velwins: ghost login + orange 4px register, centered labels */
.form-container .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    text-align: center;
    order: 4;
}

.form-container .hero-buttons > a[href] {
    display: 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: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--content-on-accent);
    text-shadow: none;
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: none;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background var(--motion-duration) var(--motion-ease),
        color var(--motion-duration) var(--motion-ease),
        border-color var(--motion-duration) var(--motion-ease),
        box-shadow var(--motion-duration) var(--motion-ease);
}

.form-container .hero-buttons .btn-register.btn-login,
.form-container .hero-buttons a.btn-register.btn-login {
    background: var(--x1-login-blue);
    background-image: none;
    margin-bottom: 0;
    min-height: var(--btn-height);
    font-size: 14px;
    color: var(--content-primary);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-btn);
    box-shadow: none;
}

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

.form-container .hero-buttons .btn-register:active,
.form-container .hero-buttons a.btn-register:active,
.form-container .hero-buttons button.btn-register:active {
    background: var(--accent-orange-active);
    box-shadow: none;
    color: var(--content-on-accent);
}

.form-container .hero-buttons .btn-register.btn-login:hover,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    background-image: none;
    color: var(--content-primary);
    border-color: var(--border-divider);
    box-shadow: none;
    filter: none;
}

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

body.page-legal {
    padding-top: 0;
    background: #111827;
}

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

body.page-legal .legal-wrap h1 {
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 20px;
}

body.page-legal .legal-wrap h2 {
    color: var(--content-primary);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

body.page-legal .legal-wrap p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--content-secondary);
}

body.page-legal .legal-wrap a {
    color: #E24C18;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--motion-duration) var(--motion-ease);
}

body.page-legal .legal-wrap a:hover {
    color: #EB6D42;
}

body.page-legal .legal-back {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 20px;
    color: #E24C18;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--motion-duration) var(--motion-ease);
}

body.page-legal .legal-back:hover {
    color: #EB6D42;
}

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

/* Gates of Olympus — inherit navy/orange legal chrome (no plum, no lobby rails) */
.page-gates-of-olympus,
.page-gates-of-olympus .legal-main .content-section {
    background: #111827;
}

.page-gates-of-olympus .legal-document {
    background: #152236;
    border-color: var(--border-divider);
    box-shadow: none;
}

.page-apk .legal-document {
    background: #152236;
    box-shadow: none;
}

/* 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) {
    .banerBody.mobile-promo-banner,
    .mobile-promo-banner {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0 12px;
        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: var(--radius-hero);
        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: 204px;
        max-height: 204px;
        border-radius: var(--radius-hero);
        background: linear-gradient(90deg, #0B1A6A 0%, #1A237E 40%, #4A6CFF 75%, #5B7CFF 100%);
        border: 1px solid var(--border-divider);
        box-shadow: var(--shadow-m);
        isolation: isolate;
    }

    .mobile-promo-banner__banner.bonusBanner::before {
        content: none;
        display: none;
    }

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

    .mobile-promo-banner__backImg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right center;
        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: contain;
        object-position: right center;
        transform: none;
        z-index: 0;
        pointer-events: none;
        filter: none;
    }

    .mobile-promo-banner__inside {
        position: relative;
        z-index: 2;
        padding: 16px;
        max-width: 56%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        min-height: 204px;
        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: var(--font-body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--content-primary);
    }

    .mobile-promo-banner__lead {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp(18px, 5vw, 22px);
        font-weight: 800;
        line-height: 1.05;
        color: var(--content-primary);
        letter-spacing: -0.02em;
        text-transform: uppercase;
        text-shadow: none;
    }

    .mobile-promo-banner__lead .offer-accent-money {
        color: var(--content-primary);
        font-size: calc(clamp(28px, 4vw, 36px) / 2.5);
    }

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

    .mobile-promo-banner__cta {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
        padding: 0 20px;
        box-sizing: border-box;
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 700;
        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-btn);
        box-shadow: none;
        transition: background var(--motion-duration) var(--motion-ease);
    }

    .mobile-promo-banner__link:hover .mobile-promo-banner__cta,
    .mobile-promo-banner__link:focus-visible .mobile-promo-banner__cta {
        background: var(--accent-orange-hover);
        box-shadow: none;
        filter: none;
        color: var(--content-on-accent);
    }
}

/* Tablet compact promo: taller blue plate, same contain/right cutout */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-promo-banner__banner.bonusBanner {
        min-height: 260px;
        max-height: 260px;
    }

    .mobile-promo-banner__inside {
        min-height: 260px;
        max-width: 52%;
    }
}

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

    .mobile-promo-banner__banner.bonusBanner {
        min-height: 148px;
        max-height: 148px;
    }

    .mobile-promo-banner__inside {
        /* max-width: 40%; */
        padding: 10px 8px 10px 10px;
        min-height: 148px;
        gap: 6px;
    }

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

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

    .mobile-promo-banner__cta {
        width: auto;
        max-width: 100%;
        min-height: 44px;
        padding: 0 12px;
        font-size: 12px;
    }

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

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

    .mobile-promo-banner__inside {
        /* max-width: 40%; */
        padding: 8px;
    }

    .mobile-promo-banner__lead {
        font-size: clamp(13px, 3.8vw, 15px);
    }

    .header-content {
        padding: 0 10px;
        gap: 8px;
    }

    .header-brand {
        flex: 0 0 auto;
        gap: 6px;
    }

    .header-right {
        gap: 6px;
    }

    .header .header-login,
    .header .header-register {
        display: inline-flex;
        flex-shrink: 0;
        padding: 8px 10px;
        min-height: 44px;
    }

    .header .lang-dropdown-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0 8px;
    }

    .stats-table td {
        padding: 10px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

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


