:root {
    /* Irwin core palette */
    --x1-primary: #0d0323;
    --x1-secondary: #acff00;
    --x1-tertiary: #0d0323;
    --x1-bg-deep: #190a38;
    --x1-login-blue: transparent;

    /* Irwin surfaces (violet ladder) */
    --bg-secondary: #291456;
    --bg-tertiary: #361c6b;
    --bg-elevated: #190a38;
    --surface-a: #0d0323;
    --surface-b: #190a38;
    --surface-c: #291456;
    --surface-d: #361c6b;

    /* Irwin content colors */
    --content-primary: #ffffff;
    --content-secondary: rgba(255, 255, 255, 0.8);
    --content-tertiary: rgba(255, 255, 255, 0.6);
    --content-on-accent: #0d0323;

    /* Controls & borders */
    --control-neutral: transparent;
    --control-neutral-hover: rgba(219, 83, 255, 0.16);
    --border-divider: rgba(255, 255, 255, 0.1);
    --border-focus: rgba(172, 255, 0, 0.56);

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

    --hero-sand: var(--content-secondary);
    --hero-deep: var(--x1-bg-deep);
    --hero-gold: var(--content-primary);
    --hero-gold-bright: var(--content-primary);
    --hero-cream: var(--content-primary);
    --accent-pink-rgb: 255, 0, 61;
    --accent-gold-rgb: 255, 255, 255;
    --accent-green-rgb: 172, 255, 0;
    --accent-blue-rgb: 219, 83, 255;
    --ui-panel: 25, 10, 56;
    --ui-panel-2: 41, 20, 86;
    --link-accent: #db53ff;
    --brand-purple: #db53ff;
    --brand-magenta: #db53ff;
    --accent-orange: #ff5c00;
    --accent-orange-hover: #ff881b;
    --btn-promo: #ff5c00;
    --btn-promo-hover: #ff881b;
    --gradient-brand: linear-gradient(101deg, #462982 8%, #190a38 71%);
    --gradient-night: linear-gradient(180deg, #1a083e, #13052f);
    --shadow-m: 0 4px 24px rgba(0, 0, 0, 0.5);
    --radius-pill: 999px;
    --radius-btn: 100px;
    --radius-tab: 12px;
    --radius-card: 16px;
    --radius-hero: 16px;

    --header-fade-gradient: none;

    --primary-color: #0d0323;
    --primary-color-light: #190a38;
    --btn-dark-color: transparent;

    --secondary-color: #acff00;
    --btn-secondary-color: #acff00;
    --btn-primary-hover: #c2ff44;
    --tertiary-color: #0d0323;
    --red-color: #ff003d;
    --blue-color: var(--brand-purple);
    --dark-btn-text: #ffffff;

    /* Typography families (loaded via Google Fonts in templates) */
    --font-sans: Jost, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: Pacifico, cursive;

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

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

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

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

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

body {
    font-family: var(--font-sans);
    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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--link-accent);
}

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

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

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

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

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

/* ===== Header & navigation (Irwin) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--x1-primary);
    border-bottom: 1px solid var(--border-divider);
    padding: 0;
}

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

.page-legal .header {
    background: var(--x1-primary);
}

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

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

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

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

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

.header-logo-img--desktop {
    height: 22px;
    width: auto;
    max-width: 148px;
}

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

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

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

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
    padding: 0 12px;
    min-height: 36px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-divider);
    background: var(--bg-secondary);
    color: var(--content-primary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    user-select: none;
    transition: background 0.15s ease, border-color 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 {
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--brand-purple);
}

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

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

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

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

.lang-dropdown-panel {
    min-width: 10rem;
    max-height: min(70vh, 22rem);
    overflow-y: auto;
    padding: 6px 0;
    margin: 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    background: var(--bg-elevated);
    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: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    border: none;
    text-align: left;
}

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

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

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

.lang-dropdown-current {
    color: var(--content-primary);
    cursor: pointer;
    box-shadow: inset 3px 0 0 var(--brand-purple);
}

/* Download links (desktop icon buttons) — compact utility cluster */
.download-links {
    display: none;
    align-items: center;
    gap: 2px;
}

.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: 32px;
    height: 32px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    background: var(--bg-secondary);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.download-link:hover {
    background: var(--bg-tertiary);
    border-color: rgba(219, 83, 255, 0.35);
    color: var(--brand-purple);
}

.download-link:hover .download-icon {
    fill: var(--brand-purple);
}

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

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

/* Header CTAs — ghost Log In + lime Sign Up pills */
.header-login,
.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.header-login {
    background: transparent;
    color: var(--content-primary);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.header-login:hover {
    background: transparent;
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

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

.header-register {
    background: var(--btn-secondary-color);
    color: var(--content-on-accent);
    border: 1px solid transparent;
}

.header-register:hover {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
}

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

.header-help:hover {
    color: var(--brand-purple);
}

.header-help:hover .help-icon {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.help-icon {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--content-tertiary);
    transition: border-color 0.15s ease, color 0.15s ease;
}

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

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

    .download-links {
        display: flex;
    }

    .header-right {
        gap: 10px;
    }

    .header-help {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .lang-dropdown--desktop {
        display: none;
    }

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

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

    .header-logo-img--desktop {
        display: none;
    }

    .header-logo-img--mobile {
        display: block;
    }

    .header-right {
        gap: 6px;
    }

    /* Mobile: Sign Up first (ref top-bar emphasis), then Log In */
    .header-register {
        order: 1;
    }

    .header-login {
        order: 2;
    }

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

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

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

.container::after {
    display: none;
}

/* Irwin hero stage: soft pink / lilac atmosphere + offer + husky */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px 28px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    height: auto;
    min-height: 300px;
    padding: 20px 28px;
    overflow: visible;
    border-radius: var(--radius-hero);
    box-shadow: var(--shadow-m);
    background:
        radial-gradient(ellipse 48% 70% at 82% 55%, rgba(255, 170, 210, 0.55) 0%, transparent 62%),
        radial-gradient(ellipse 42% 55% at 18% 35%, rgba(180, 130, 255, 0.42) 0%, transparent 58%),
        radial-gradient(circle at 55% 20%, rgba(255, 220, 245, 0.35) 0%, transparent 45%),
        linear-gradient(105deg, #2a0f55 0%, #5c2a7a 30%, #c48bb8 64%, #f0c4d8 100%);
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(13, 3, 35, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 22px 22px 20px;
    max-width: 380px;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 22px rgba(13, 3, 35, 0.28);
}

/* Speech-bubble pointer toward mascot (desktop two-column only) */
.form-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 22px;
    height: 22px;
    background: rgba(13, 3, 35, 0.48);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

.banner-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.banner-img {
    width: auto;
    max-width: min(400px, 100%);
    height: auto;
    max-height: 420px;
    aspect-ratio: 319 / 400;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    border: none;
    filter: drop-shadow(0 12px 28px rgba(13, 3, 35, 0.45));
}

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

.page-bonuses .banner-img {
    object-position: center;
    transform: scale(1.2);
    transform-origin: center center;
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 0;
        padding: 18px 16px;
    }

    .form-container {
        margin: 0 auto;
        max-width: 440px;
    }

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

    .banner-container {
        display: none;
    }
}

.headline-1 {
    text-align: center;
    color: var(--content-tertiary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.3;
}

/* IRWIN JSON string — de-emphasized so Irwin logo leads brand read */
.headline-2 {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.08em;
    order: 0;
}

/* Welcome offer amounts (speech-bubble hierarchy) */
.headline-offer {
    text-align: center;
    margin: 2px 0 0;
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
}

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

.offer-accent-fs {
    color: var(--brand-purple);
}

.btn-register {
    width: 100%;
    min-height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    background: var(--accent-orange);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-register.btn-login {
    background: transparent;
    margin-bottom: 0;
    color: var(--content-primary);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--brand-purple);
    border-color: rgba(219, 83, 255, 0.7);
}

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);
    color: #ffffff;
}

.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 (Irwin) ===== */
.content-section {
    position: relative;
    background: var(--surface-a);
    padding: 48px var(--space-page-x-mobile) 56px;
}

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

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

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

.content-title {
    color: var(--content-primary);
    font-family: var(--font-sans);
    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 CTAs — Irwin lime Sign Up pills (mid + bottom) */
.content-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 12px);
}

.content-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: var(--btn-height);
    min-width: 200px;
    padding: 0 var(--btn-padding-x);
    background: var(--btn-secondary-color);
    color: var(--content-on-accent);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.content-btn:active {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
}

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

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

.cons-block {
    background: var(--surface-c);
}

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

.pros-block .pros-cons-title {
    color: var(--x1-secondary);
}

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

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

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

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

.pros-cons-list li {
    font-size: 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: var(--x1-secondary);
    margin-top: 2px;
}

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

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

/* Intro band: author meta + rating card + mid CTA (Irwin elevated violet) */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: var(--section-gap);
    padding: var(--card-padding);
    background: var(--surface-b);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: var(--shadow-m);
}

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

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

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

.rating-card {
    background: var(--surface-b);
    border: 1px solid rgba(219, 83, 255, 0.28);
    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: var(--shadow-m);
}

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

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

.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(--brand-purple);
    font-size: 18px;
    opacity: 0.85;
}

.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;
    padding: 10px 12px;
    background: var(--surface-c);
    border-radius: 12px;
    border: 1px solid var(--border-divider);
}

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

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

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

.fact-value.warn {
    color: var(--brand-purple);
}

@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;
        gap: 8px;
    }

    .fact-item {
        padding: 8px 10px;
    }

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

/* Casino facts table — Irwin violet surface ladder */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 8px);
    font-size: 15px;
}

.stats-table tr {
    background: var(--surface-b);
}

.stats-table tr:nth-child(even) {
    background: var(--surface-c);
}

.stats-table td {
    padding: 12px var(--card-padding);
    vertical-align: middle;
}

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

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

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

.text-content p {
    margin-bottom: var(--section-gap);
}

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

.text-content a:hover {
    color: var(--brand-purple);
}

/* Table of contents — category chip row (Irwin) */
.article-toc {
    width: 100%;
    margin: var(--section-gap) 0;
    padding: 16px 18px;
    border: 1px solid var(--border-divider);
    border-radius: var(--radius-card);
    background: var(--surface-b);
    box-sizing: border-box;
    box-shadow: var(--shadow-m);
}

.article-toc-heading {
    margin: 0 0 12px;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.6vw, 22px);
    font-weight: 400;
    color: var(--content-primary);
    letter-spacing: 0;
    line-height: 1.25;
}

.text-content .article-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    line-height: 1.2;
}

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

.article-toc-list .level-1::marker {
    content: none;
    color: transparent;
}

.article-toc-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 14px;
    min-height: 36px;
    border-radius: var(--radius-btn);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: normal;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: #ffffff;
    text-decoration: none;
}

.article-toc-list a:active {
    background: var(--x1-secondary);
    border-color: var(--x1-secondary);
    color: var(--content-on-accent);
}

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

    .text-content .article-toc-list {
        gap: 6px;
    }

    .article-toc-list a {
        padding: 8px 12px;
        font-size: 11px;
        min-height: 34px;
    }
}

.content-screen-figure {
    margin: var(--section-gap) 0;
    text-align: center;
}

.content-screen-img {
    display: block;
    max-width: min(100%, 560px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-divider);
    box-shadow: var(--shadow-m);
    background: var(--surface-b);
}

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

/* Pacifico only on article H2 titles — slightly tighter for long SEO titles */
.text-content h2.anchor-heading {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.6vw, 22px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.28;
}

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

.text-content ul,
.text-content ol {
    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(--brand-purple);
}

/* FAQ accordion — Irwin violet surface bars + purple open accent */
.faq-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item[open] {
    background: var(--bg-elevated);
    border-color: rgba(219, 83, 255, 0.65);
    box-shadow:
        inset 3px 0 0 var(--brand-purple),
        0 0 0 1px rgba(172, 255, 0, 0.18);
}

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

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 44px 14px 16px;
    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;
}

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

.faq-summary:hover {
    color: var(--brand-purple);
}

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

.faq-item[open] .faq-summary:hover {
    color: var(--brand-purple);
}

.faq-summary::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--content-tertiary);
    border-bottom: 2px solid var(--content-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: 0 16px 16px 19px;
}

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

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


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        padding: 92px var(--space-page-x-mobile) 12px;
        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;
    }

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

    .article-meta {
        padding: 12px;
    }

    .text-content {
        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: 20px;
    }

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

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

    .pros-block,
    .cons-block {
        box-shadow: none;
    }

    .content-screen-img {
        max-width: 100%;
    }

    .faq-list {
        gap: 8px;
    }

    .faq-summary {
        font-size: 15px;
        padding: 12px 38px 12px 14px;
    }

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

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

    .faq-item[open] {
        box-shadow:
            inset 3px 0 0 var(--brand-purple),
            0 0 0 1px rgba(172, 255, 0, 0.18);
    }

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

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

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

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

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

/* Footer (Irwin reference) */
.footer {
    flex-shrink: 0;
    background: var(--x1-primary);
    padding: 32px var(--space-page-x-desktop) 32px;
    border-top: none;
    box-shadow: none;
}

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

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 280px;
    min-width: 0;
    gap: 16px 22px;
}

.footer-nav a {
    color: var(--content-tertiary);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.footer-nav a:hover {
    color: var(--brand-purple);
}

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

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

.page-legal .content-section {
    background: var(--surface-a);
}

.legal-document {
    background: var(--surface-b);
    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: var(--shadow-m);
}

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

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

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

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

.legal-link:hover {
    color: var(--brand-purple);
}

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

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

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

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

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

.legal-visual-media img {
    display: block;
    width: 100%;
    max-width: 280px;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius-card) - 4px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-m);
}

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

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

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

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

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

.age-restriction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-b);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: var(--content-primary);
}

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

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

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

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

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


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

    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

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

    .footer-nav {
        width: 100%;
        max-width: none;
        flex: none;
        justify-content: flex-start;
        padding-top: 0;
        border-top: none;
    }

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

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

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

/* Hero CTA — Irwin: ghost login + orange Claim-style register */
.form-container .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}

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

.form-container .hero-buttons button.btn-register {
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    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(--accent-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: none;
    min-height: var(--btn-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-container .hero-buttons .btn-register.btn-login,
.form-container .hero-buttons a.btn-register.btn-login {
    background: transparent;
    margin-bottom: 0;
    color: var(--content-primary);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.form-container .hero-buttons .btn-register.btn-login:hover,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--brand-purple);
    border-color: rgba(219, 83, 255, 0.7);
}

.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);
    color: #ffffff;
    transform: none;
}

.form-container .hero-buttons .btn-register.btn-login:hover,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--brand-purple);
    border-color: rgba(219, 83, 255, 0.7);
}

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

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

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

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

body.page-legal .legal-wrap a {
    color: var(--brand-purple);
    font-weight: 700;
}

body.page-legal .legal-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--brand-purple);
    font-weight: 700;
    text-decoration: none;
}

body.page-legal .legal-back:hover {
    color: var(--x1-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Mobile-only promo strip (Irwin download / Claim energy) */
.banerBody.mobile-promo-banner,
.mobile-promo-banner {
    display: none;
}

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

/* Show compact promo whenever desktop hero mascot is hidden (≤1024) */
@media (max-width: 1024px) {
    .banerBody.mobile-promo-banner,
    .mobile-promo-banner {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 12px;
        margin-top: 0;
        position: relative;
        z-index: 50;
    }

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

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

    .mobile-promo-banner__banner.bonusBanner {
        position: relative;
        overflow: hidden;
        min-height: 108px;
        max-height: 132px;
        border-radius: var(--radius-card);
        background:
            radial-gradient(ellipse 55% 120% at 92% 50%, rgba(255, 160, 210, 0.28) 0%, transparent 55%),
            var(--bg-secondary);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-m);
        isolation: isolate;
    }

    .mobile-promo-banner__banner.bonusBanner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            90deg,
            rgba(41, 20, 86, 0.96) 0%,
            rgba(41, 20, 86, 0.78) 48%,
            rgba(41, 20, 86, 0.15) 100%
        );
        pointer-events: none;
    }

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

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

    .mobile-promo-banner__mainImg.bonusBannerMain {
        position: absolute;
        right: 4px;
        bottom: 0;
        top: auto;
        left: auto;
        width: auto;
        height: 100%;
        max-height: 128px;
        aspect-ratio: 319 / 400;
        object-fit: contain;
        object-position: center bottom;
        z-index: 1;
        pointer-events: none;
        filter: drop-shadow(0 4px 12px rgba(13, 3, 35, 0.4));
    }

    .page-bonuses .mobile-promo-banner__mainImg.bonusBannerMain {
        top: 50%;
        bottom: auto;
        object-position: center;
        filter: none;
        transform: translateY(-50%) scale(1.2);
        transform-origin: center center;
    }

    .mobile-promo-banner__inside {
        position: relative;
        z-index: 2;
        padding: 12px 14px;
        max-width: 72%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 12px;
        justify-content: flex-start;
        min-height: 108px;
        box-sizing: border-box;
    }

    .mobile-promo-banner__text {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1 1 140px;
        min-width: 0;
    }

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

    .mobile-promo-banner__lead {
        margin: 0;
        font-family: inherit;
        font-size: clamp(15px, 4vw, 18px);
        font-weight: 800;
        line-height: 1.2;
        color: #ffffff;
        letter-spacing: -0.01em;
        text-transform: none;
    }

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

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

    .mobile-promo-banner__cta {
        align-self: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
        padding: 0 16px;
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #ffffff;
        line-height: 1;
        background: var(--accent-orange);
        border-radius: var(--radius-btn);
        box-shadow: none;
    }

    .mobile-promo-banner__link:hover .mobile-promo-banner__cta,
    .mobile-promo-banner__link:focus-visible .mobile-promo-banner__cta {
        background: var(--accent-orange-hover);
    }
}


