:root {
    /* Beef Casino core palette */
    --x1-primary: #0F152B;
    --x1-secondary: #FFFF00;
    --x1-tertiary: #572615;
    --x1-bg-deep: #0F152B;
    --x1-login-blue: rgba(255, 255, 255, 0.12);

    /* Surfaces: navy page vs mahogany chrome vs slate cards */
    --bg-secondary: #572615;
    --bg-tertiary: #2C3352;
    --bg-elevated: #2C3352;

    /* Content */
    --content-primary: #FFFFFF;
    --content-secondary: rgba(255, 255, 255, 0.85);
    --content-tertiary: rgba(255, 255, 255, 0.65);
    --content-on-accent: #0F152B;

    /* Controls & borders */
    --control-neutral: rgba(255, 255, 255, 0.12);
    --control-neutral-hover: rgba(255, 255, 255, 0.20);
    --border-divider: #2C3352;
    --border-focus: #FFFF00;

    /* Legacy aliases */
    --iris-bg: var(--x1-bg-deep);
    --iris-purple-a: var(--x1-secondary);
    --iris-purple-b: var(--x1-secondary);
    --iris-cta-a: var(--x1-secondary);
    --iris-cta-b: #FFFFFF;

    --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: 226, 59, 59;
    --accent-gold-rgb: 255, 255, 0;
    --accent-green-rgb: 255, 255, 0;
    --accent-blue-rgb: 44, 51, 82;
    --ui-panel: 44, 51, 82;
    --ui-panel-2: 87, 38, 21;
    --link-accent: #FFFF00;
    --radius-pill: 999px;
    --radius-btn: 5px;
    --radius-tab: 16px;
    --radius-card: 20px;
    --radius-hero: 20px;

    --header-fade-gradient: none;

    --primary-color: #0F152B;
    --primary-color-light: #2C3352;
    --btn-dark-color: rgba(255, 255, 255, 0.12);

    --secondary-color: #FFFF00;
    --btn-secondary-color: #FFFF00;
    --btn-primary-hover: #FFFFFF;
    --tertiary-color: #572615;
    --red-color: #E23B3B;
    --blue-color: var(--x1-tertiary);
    --dark-btn-text: #FFFFFF;

    --cta-inset: rgba(255, 230, 204, 0.6);
    --heading-shadow: #0F152B;
    --faq-fill: color-mix(in srgb, #2C3352 70%, transparent);
    --hairline: rgba(255, 255, 255, 0.2);
    --font-family: Poppins, Arial, Helvetica, sans-serif;

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

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

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

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

    .header-login,
    .header-register,
    .header-help,
    .lang-dropdown-btn,
    .lang-dropdown-chevron,
    .download-link,
    .download-icon,
    .btn-register,
    .content-btn,
    .faq-item,
    .faq-summary,
    .faq-summary::after,
    .mobile-promo-banner__cta,
    .footer-nav a,
    .text-content a {
        transition: none;
    }
}

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

body {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.01em;
    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;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 20px;
    }
}

a {
    color: var(--link-accent);
    text-decoration: none;
}

a:hover {
    color: var(--content-primary);
}

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 (Beef Casino mahogany) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--x1-tertiary);
    border-bottom: 2px solid var(--border-divider);
    padding: 0;
    overflow: visible;
}

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

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

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

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

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

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

.header-logo-img--desktop {
    width: 150px;
    height: 68px;
    max-width: 150px;
}

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

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

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

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
    padding: 0 12px;
    min-height: 40px;
    border-radius: var(--radius-btn);
    border: none;
    background: var(--control-neutral);
    color: var(--content-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    user-select: none;
    transition: background 0.2s ease, color 0.2s 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(--x1-secondary);
}

.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: 8px;
    border: 1px solid #FFFFFF;
    background: var(--x1-tertiary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

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

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

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

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

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

.lang-dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    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-primary);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

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

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

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

.download-label {
    display: none;
}

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

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-btn);
    background: transparent;
    color: var(--content-primary);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.download-link:hover {
    background: transparent;
    color: var(--x1-secondary);
}

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

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

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

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

.header-login {
    background: var(--x1-login-blue);
    color: var(--content-primary);
    border: 1px solid var(--hairline);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.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);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    box-shadow: inset 0 3px 12px var(--cta-inset);
}

.header-register:hover {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
    box-shadow: inset 0 3px 12px var(--cta-inset);
}

.header-help {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 40px;
    color: var(--content-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease;
}

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

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

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

.help-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--content-primary);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.help-text {
    color: inherit;
}

@media (min-width: 769px) {
    .header-content {
        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;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 40px;
    }
}

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

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

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

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

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

    .header-right {
        gap: 4px;
        flex-shrink: 1;
        min-width: 0;
        justify-content: flex-end;
    }

    .header-login,
    .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 40px;
        height: 40px;
        padding: 0 10px;
        flex-shrink: 0;
    }

    .header-login {
        font-size: 13px;
    }

    .header-register {
        font-size: 14px;
        letter-spacing: 0;
    }

    .lang-dropdown-btn {
        min-height: 40px;
        height: 40px;
        padding: 0 8px;
        font-size: 13px;
    }
}

.container {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 128px var(--space-page-x-desktop) 40px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 72% 98% at 80% 50%, rgba(87, 38, 21, 0.55) 0%, rgba(196, 72, 24, 0.28) 38%, transparent 72%),
        var(--x1-primary);
    box-shadow: none;
}

.container::after {
    display: none;
}

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

.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: var(--radius-hero);
    padding: 28px 0 24px;
    max-width: 675px;
    width: 50%;
    flex-shrink: 0;
    margin: 0;
    z-index: 1;
    text-align: left;
}

.banner-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
}

.banner-img {
    display: block;
    width: auto;
    max-width: min(100%, 615px);
    max-height: 720px;
    height: auto;
    aspect-ratio: 615 / 876;
    object-fit: contain;
    object-position: center bottom;
    border-radius: var(--radius-hero);
    border: none;
    background: transparent;
}

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

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

    .banner-container {
        display: none;
    }
}

.headline-1 {
    text-align: left;
    color: var(--content-primary);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 40px;
    overflow-wrap: break-word;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

.headline-2 {
    text-align: left;
    color: var(--content-primary);
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
    line-height: 24px;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: var(--btn-height);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    background: var(--btn-secondary-color);
    color: var(--content-on-accent);
    border: none;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 3px 12px var(--cta-inset);
    box-sizing: border-box;
}

.btn-register.btn-login {
    background: var(--x1-login-blue);
    margin-bottom: 0;
    color: var(--content-primary);
    border: 1px solid var(--hairline);
    box-shadow: none;
}

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

a.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: var(--content-on-accent);
}

.btn-register:hover {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
    box-shadow: inset 0 3px 12px var(--cta-inset);
}

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

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

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

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

.content-title {
    color: #ffffff;
    font-size: clamp(22px, 2.94vw, 34px);
    font-weight: 700;
    margin-bottom: var(--section-gap);
    text-align: left;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    overflow-wrap: break-word;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

.content-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: 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;
    box-sizing: border-box;
    flex: 0 0 auto;
    min-height: var(--btn-height);
    width: 353px;
    max-width: 100%;
    min-width: 353px;
    padding: 11px var(--btn-padding-x) 9px;
    background: var(--btn-secondary-color);
    color: var(--content-on-accent);
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    box-shadow: inset 0 3px 12px var(--cta-inset);
    transition: background 0.2s ease, color 0.2s ease;
}

.content-btn:hover,
.content-btn:active {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
    transform: none;
    box-shadow: inset 0 3px 12px var(--cta-inset);
}

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

.content-btn:disabled,
.content-btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--section-gap);
    margin: var(--section-gap) 0;
}

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

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

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

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

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

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

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

.pros-cons-list li {
    font-size: 24px;
    font-weight: 500;
    color: var(--content-primary);
    line-height: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pros-block .pros-cons-list li::before {
    content: "✓";
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--x1-secondary);
    margin-top: 0;
}

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

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

    .pros-block,
    .cons-block {
        padding: 15px 20px;
    }

    .pros-cons-title {
        font-size: 20px;
        line-height: 26px;
    }

    .pros-cons-list li {
        font-size: 16px;
        line-height: 22px;
    }

    .pros-block .pros-cons-list li::before,
    .cons-block .pros-cons-list li::before {
        font-size: 16px;
        line-height: 22px;
    }
}

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

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    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: 500;
}

.rating-card {
    background: var(--bg-elevated);
    border: none;
    border-radius: var(--radius-card);
    padding: 22px 25px;
    margin-bottom: var(--section-gap);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .rating-card-score {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-right: 0;
        padding-bottom: 16px;
    }

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

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

/* Casino facts table — stacked detail rows, not zebra cards */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: var(--section-gap) 0 calc(var(--section-gap) + 8px);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.stats-table tr {
    background: transparent;
}

.stats-table td {
    padding: 18px 37px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--content-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    overflow-wrap: break-word;
}

.stats-table tr:first-child td {
    padding-top: 30px;
}

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

.stats-table td:first-child {
    color: var(--content-primary);
    width: 42%;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0;
}

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

.stats-table a {
    color: var(--link-accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-content {
    color: var(--content-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    overflow-wrap: break-word;
}

.text-content p {
    margin-bottom: var(--section-gap);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: var(--content-primary);
}

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

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

.text-content strong,
.text-content b,
.text-content em {
    color: var(--x1-secondary);
    font-style: normal;
    font-weight: 700;
}

/* Table of contents — compact vertical numbered slate card (not WP pills, not sticky) */
.article-toc {
    width: 100%;
    margin: var(--section-gap) 0;
    padding: 22px 25px;
    border: none;
    border-radius: var(--radius-card);
    background: var(--bg-elevated);
    box-sizing: border-box;
    position: static;
}

.article-toc-heading {
    margin: 0 0 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

.text-content .article-toc-list {
    margin: 0;
    padding: 0 0 0 1.5em;
    list-style: decimal;
    list-style-position: outside;
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--content-primary);
}

.article-toc-list .level-1 {
    display: list-item;
    margin: 0 0 8px;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

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

.article-toc-list li::marker {
    color: var(--content-primary);
    font-weight: 700;
}

.article-toc-list a {
    display: inline;
    align-items: unset;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--link-accent);
    text-decoration: none;
    font-weight: 500;
    white-space: normal;
    transition: color 0.15s ease;
}

.article-toc-list a:hover,
.article-toc-list a:focus-visible {
    background: transparent;
    color: var(--content-primary);
    text-decoration: underline;
}

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

    .text-content .article-toc-list {
        overflow-x: visible;
        padding-bottom: 0;
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .article-toc-list .level-1 {
        font-size: 18px;
        overflow-wrap: anywhere;
    }
}

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

.content-screen-img {
    display: block;
    max-width: min(100%, 900px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 21px;
    border: none;
    box-shadow: none;
    aspect-ratio: 1900 / 900;
    object-fit: cover;
}

.text-content h2,
.text-content h2.anchor-heading {
    font-size: clamp(22px, 2.45vw, 28px);
    font-weight: 700;
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 12px;
    color: #ffffff;
    text-align: left;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

.text-content h3,
.text-content h3.anchor-heading {
    font-size: clamp(17px, 1.96vw, 22px);
    font-weight: 700;
    margin-top: calc(var(--section-gap) + 12px);
    margin-bottom: 12px;
    color: #ffffff;
    text-align: left;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    filter: drop-shadow(0 1px 0 var(--heading-shadow));
}

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

.text-content li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

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

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

.faq-item {
    background: var(--faq-fill);
    border-radius: var(--radius-card);
    border-left: none;
    overflow: hidden;
    transition: background 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
    background: var(--bg-elevated);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 68px 22px 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--content-primary);
    position: relative;
    line-height: 24px;
}

.faq-summary .faq-question {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    text-transform: none;
    letter-spacing: normal;
    filter: none;
    text-align: left;
}

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

.faq-summary::marker {
    content: none;
}

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

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

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

.faq-summary::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
    background:
        linear-gradient(#ffffff, #ffffff) center / 12px 1.5px no-repeat,
        linear-gradient(#ffffff, #ffffff) center / 1.5px 12px no-repeat;
    transform: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] .faq-summary::after {
    background: linear-gradient(#ffffff, #ffffff) center / 12px 1.5px no-repeat;
    border-color: #ffffff;
    transform: none;
    margin-top: -18px;
}

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

.faq-body {
    padding: 0 25px 22px;
}

.faq-body p {
    margin: 0;
    color: var(--content-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.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: 112px var(--space-page-x-mobile) 16px;
        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: 22px;
        line-height: 28px;
        margin-bottom: 16px;
    }

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

    .article-meta {
        padding: 16px 18px;
    }

    .text-content {
        font-size: 16px;
        line-height: 20px;
    }

    .text-content p {
        font-size: 16px;
        line-height: 20px;
    }

    .text-content h2,
    .text-content h2.anchor-heading {
        font-size: 22px;
        line-height: 28px;
        margin-top: 28px;
        margin-bottom: 10px;
    }

    .text-content h3,
    .text-content h3.anchor-heading {
        font-size: 17px;
        line-height: 22px;
        margin-top: 28px;
        margin-bottom: 10px;
    }

    .text-content li {
        font-size: 16px;
        line-height: 22px;
    }

    .stats-table td {
        padding: 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .stats-table tr:first-child td {
        padding-top: 20px;
    }

    .stats-table tr:last-child td {
        padding-bottom: 20px;
    }

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

    .faq-summary {
        font-size: 18px;
        line-height: 22px;
        padding: 16px 56px 16px 18px;
    }

    .faq-summary::after {
        right: 12px;
        width: 32px;
        height: 32px;
        margin-top: -16px;
        background:
            linear-gradient(#ffffff, #ffffff) center / 10px 1.5px no-repeat,
            linear-gradient(#ffffff, #ffffff) center / 1.5px 10px no-repeat;
    }

    .faq-item[open] .faq-summary::after {
        margin-top: -16px;
        background: linear-gradient(#ffffff, #ffffff) center / 10px 1.5px no-repeat;
    }

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

    .form-container {
        gap: 8px;
        padding: 12px 0 8px;
    }

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

    .headline-1 {
        font-size: 27px;
        line-height: 35px;
    }

    .headline-2 {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 600px) {
    .form-container {
        gap: 8px;
        padding: 8px 0 6px;
        width: 100%;
        max-width: none;
    }

    .headline-1 {
        font-size: 27px;
        line-height: 35px;
    }

    .headline-2 {
        font-size: 14px;
        line-height: 19px;
    }
}

/* Footer (Beef mahogany) */
.footer {
    flex-shrink: 0;
    width: 100%;
    background: var(--x1-tertiary);
    padding: 24px 0;
    border-top: 1px solid var(--hairline);
    box-shadow: none;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-page-x-desktop);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px 40px;
    flex-wrap: wrap;
}

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

.footer-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40px;
    color: var(--content-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

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

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

.legal-main {
    min-height: 50vh;
    background: var(--x1-primary);
}

.legal-document {
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    padding: calc(var(--card-padding) * 2) calc(var(--card-padding) * 1.5);
}

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

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

.legal-document .text-content strong,
.legal-document .text-content b,
.legal-document .text-content em {
    color: var(--content-primary);
    font-style: normal;
    font-weight: 700;
}

.legal-link {
    color: var(--link-accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

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

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

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

.age-restriction-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border-divider);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    color: var(--content-primary);
}

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

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

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

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

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

@media (max-width: 768px) {
    .footer {
        padding: 16px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 var(--space-page-x-mobile);
    }

    .footer-left {
        width: 100%;
    }

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

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

.content-wrapper {
    position: relative;
}


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

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

    .form-container .logo-img {
        display: block;
        width: 150px;
        height: 68px;
        max-width: 150px;
        max-height: 68px;
        object-fit: contain;
        transform: none;
    }
}

/* Hero CTA — ghost login + yellow register. Nested <button> inside register <a> stays. */
.form-container .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
}

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

.form-container .hero-buttons > a[href]:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: var(--radius-btn);
}

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

.form-container .hero-buttons .btn-register,
.form-container .hero-buttons a.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--btn-secondary-color);
    font-weight: 700;
    font-size: 22px;
    color: var(--content-on-accent);
    border: none;
    border-radius: var(--radius-btn);
    box-shadow: inset 0 3px 12px var(--cta-inset);
    min-height: var(--btn-height);
    height: var(--btn-height);
}

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

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

.form-container .hero-buttons .btn-register:hover,
.form-container .hero-buttons a.btn-register:hover,
.form-container .hero-buttons button.btn-register:hover,
.form-container .hero-buttons > a[href]:hover > button.btn-register {
    background: var(--btn-primary-hover);
    color: var(--content-on-accent);
    box-shadow: inset 0 3px 12px var(--cta-inset);
    transform: none;
}

.form-container .hero-buttons > a[href]:hover > button.btn-register.btn-login,
.form-container .hero-buttons a.btn-register.btn-login:hover {
    background: var(--control-neutral-hover);
    color: var(--content-primary);
    box-shadow: none;
}

@media (max-width: 768px) {
    .form-container .hero-buttons {
        margin-top: 12px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .form-container .hero-buttons {
        flex-direction: column;
    }

    .form-container .hero-buttons > a[href] {
        width: 100%;
        flex: 1 1 auto;
    }
}

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

body.page-legal .page-fill {
    padding-top: 104px;
}

body.page-legal .legal-main .content-section {
    background: var(--x1-primary);
}

body.page-legal .legal-document .text-content a,
body.page-legal .legal-link {
    color: var(--link-accent);
    font-weight: 500;
}

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

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

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

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

    .mobile-promo-banner__link {
        display: flex;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        width: 100%;
        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;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 232px;
        border-radius: var(--radius-hero);
        background: var(--x1-tertiary);
        border: 2px solid var(--border-divider);
        box-shadow: none;
        isolation: isolate;
        padding: 16px;
        box-sizing: border-box;
    }

    .mobile-promo-banner__banner.bonusBanner::before {
        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;
    }

    .mobile-promo-banner__mainImg.bonusBannerMain {
        position: relative;
        z-index: 1;
        order: 2;
        flex: 0 0 42%;
        width: 42%;
        max-width: 42%;
        height: 200px;
        object-fit: contain;
        object-position: center bottom;
        pointer-events: none;
    }

    .mobile-promo-banner__inside {
        position: relative;
        z-index: 2;
        order: 1;
        flex: 1 1 auto;
        padding: 0;
        max-width: none;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: stretch;
        min-height: 0;
        box-sizing: border-box;
        text-align: left;
    }

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

    .mobile-promo-banner__eyebrow {
        margin: 0;
        font-family: inherit;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -0.01em;
        line-height: 1.3;
        text-transform: none;
        color: var(--content-primary);
    }

    .mobile-promo-banner__lead {
        margin: 0;
        font-family: inherit;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: var(--content-primary);
        letter-spacing: -0.01em;
        text-transform: none;
    }

    .mobile-promo-banner__cta {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        min-height: var(--btn-height);
        height: var(--btn-height);
        padding: 0 var(--btn-padding-x);
        font-family: inherit;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0.22px;
        text-transform: uppercase;
        color: var(--content-on-accent);
        line-height: 1.4;
        background: var(--btn-secondary-color);
        border-radius: var(--radius-btn);
        box-shadow: inset 0 3px 12px var(--cta-inset);
        box-sizing: border-box;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-promo-banner__link:hover .mobile-promo-banner__cta {
        background: var(--btn-primary-hover);
        color: var(--content-on-accent);
        box-shadow: inset 0 3px 12px var(--cta-inset);
    }
}

@media (max-width: 430px) {
    .header-content {
        gap: 6px;
    }

    .header-login,
    .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 40px;
        height: 40px;
        padding: 0 8px;
        font-size: 12px;
    }

    .content-btn {
        font-size: 16px;
    }

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

    .mobile-promo-banner__mainImg.bonusBannerMain {
        flex-basis: 40%;
        width: 40%;
        max-width: 40%;
        height: 180px;
    }
}

@media (max-width: 390px) {
    .header-content {
        gap: 4px;
        padding: 0 12px;
    }

    .header-login,
    .header-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 40px;
        height: 40px;
        padding: 0 7px;
        font-size: 12px;
    }

    .lang-dropdown-btn {
        min-height: 40px;
        height: 40px;
        padding: 0 6px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .header-register,
    .header-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 40px;
        height: 40px;
        font-size: 12px;
        padding: 0 6px;
    }
}
