:root {
    /* SpinEmpire desktop palette */
    --bg-deep: #0c1017;
    --bg-panel: #121820;
    --accent-red: #ff2b4d;
    --accent-red-light: #ff5c73;
    --accent-red-rgb: 255, 43, 77;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --border-subtle: rgba(255, 255, 255, 0.14);
    --btn-primary: linear-gradient(180deg, #ff5c73 0%, #ff2b4d 100%);
    --btn-primary-shadow: 0 10px 24px rgba(255, 43, 77, 0.32);
    --btn-pill-radius: 999px;

    --hero-sand: #ff5c73;
    --hero-deep: #0c1017;
    --hero-gold: #ff2b4d;
    --hero-gold-bright: #ff5c73;
    --hero-cream: #ffffff;
    --accent-pink-rgb: 255, 43, 77;
    --accent-gold-rgb: 255, 92, 115;
    --accent-green-rgb: 255, 43, 77;
    --accent-blue-rgb: 100, 180, 255;
    --ui-panel: 18, 24, 32;
    --ui-panel-2: 24, 32, 42;

    --header-fade-gradient: linear-gradient(180deg,
            rgba(12, 16, 23, 0.98) 0%,
            rgba(12, 16, 23, 0.92) 100%);

    --primary-color: #ffffff;
    --primary-color-light: #121820;
    --btn-dark-color: #121820;

    --secondary-color: #ff2b4d;
    --btn-secondary-color: var(--btn-primary);
    --tertiary-color: #0c1017;
    --blue-color: var(--btn-primary);
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

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

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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100%;
    min-height: 100dvh;
    position: relative;
    background: var(--bg-deep);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

.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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

.page-legal .header {
    background: var(--bg-deep);
}

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

.header-content {
    max-width: 1400px;
    padding: 12px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transform: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--btn-pill-radius);
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.header-login:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #ffffff;
}

.header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    background: var(--btn-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    border-radius: var(--btn-pill-radius);
    box-shadow: var(--btn-primary-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-register:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 28px rgba(255, 43, 77, 0.38);
}

.header-help {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.help-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.download-label {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

/* Header Left Section */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    min-height: 42px;
    border-radius: 6px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.45);
    background: rgba(var(--ui-panel), 0.96);
    color: #e5e5e5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    user-select: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 1px rgba(var(--accent-gold-rgb), 0.08) inset;
}

.lang-dropdown-btn::-webkit-details-marker {
    display: none;
}

.lang-dropdown-btn:hover {
    background: rgba(var(--ui-panel-2), 0.98);
    border-color: rgba(var(--accent-gold-rgb), 0.75);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(var(--accent-gold-rgb), 0.15) inset;
}

.lang-dropdown-btn:focus {
    outline: 2px solid rgba(var(--accent-gold-rgb), 0.55);
    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[open] .lang-dropdown-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 10rem;
    max-height: min(70vh, 22rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--accent-gold-rgb), 0.06) inset;
}

.lang-dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    text-align: left;
}

.lang-dropdown-link {
    color: #fbbf24;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown-link:hover {
    background: rgba(var(--accent-gold-rgb), 0.14);
    color: #f8fafc;
}

.lang-dropdown-current {
    color: rgba(var(--accent-gold-rgb), 0.55);
    cursor: default;
}

.footer-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 12px;
    margin-top: 12px;
    justify-content: flex-end;
    max-width: 100%;
}

.footer-langs a {
    color: rgba(var(--accent-gold-rgb), 0.92);
    text-decoration: none;
}

.footer-langs a:hover {
    text-decoration: underline;
}

.download-links {
    display: none;
    align-items: center;
    gap: 0px;
    width: fit-content;
    padding: 5px 8px;
    border-radius: 12px;
}

.download-nav {
    display: flex;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    text-decoration: none;
    transition: opacity 0.2s;
    opacity: .7;
}

.download-link:hover {
    opacity: 0.8;
}

.download-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

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

.logo-header-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transform: scale(1.2);
}


.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--btn-dark-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    box-shadow: 0 1px 1px 0 hsla(340, 35%, 40%, .18) inset;
}


.btn-login-icon {
    display: block;
    width: 130px;
    text-decoration: none;
    color: #FFF;
    transition: filter 0.2s;
    font-weight: 600;
    font-size: 14px;
}

.btn-login-icon:hover {
    filter: brightness(1.2);
}

/* Header Search Section */
.header-search {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0;
    position: relative;
    border: 1px solid rgba(var(--accent-pink-rgb), 0.32);
    height: 50px;
}

.header-search-link {
    display: block;
    width: 100%;
    max-width: 220px;
    margin-left: 40px;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-input::placeholder {
    color: #9ca3af;
    opacity: 0.85;
}

.search-btn {
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;

}

.search-btn .icon-img {
    filter: brightness(0) invert(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 42px;
    background: var(--btn-secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: filter 0.2s;
}

.btn-signup:hover {
    filter: brightness(1.15);
}

.logo-img {
    object-fit: contain;
    width: 100%;
    transform: scale(1.3);
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 80px 20px 0px 20px;
    overflow: hidden;
    background: var(--bg-deep);
}

.container-bg-wrap {
    position: absolute;
    inset: 0;
    top: 80px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    height: fit-content;
}

.container-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow:
        inset 0 0 100px 90px rgba(10, 0, 20, 0.75),
        inset 0 -120px 100px -40px rgba(var(--accent-gold-rgb), 0.1);
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 150px;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.hero-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    /* max-width: 430px; */
    margin-left: 20px;
}

.hero-secondary-img {
    display: block;
    width: 50%;
    margin: auto;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: 50px;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-left: 0;
    border-radius: 18px;
    padding: 34px 30px 28px;
    max-width: 430px;
    width: 100%;
    flex-shrink: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(15, 18, 30, 0.9) 0%, rgba(15, 18, 30, 0.82) 56%, rgba(15, 18, 30, 0.56) 100%);
    backdrop-filter: blur(2px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-container .logo {
    display: block;
    text-align: left;
    margin: auto;
}

.form-container .logo-img {
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transform: none;
}

.form-container .headline-1 {
    margin: 0;
    text-align: center;
    text-transform: none;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 600;
    text-shadow: none;
}

.form-container .headline-2 {
    margin: 0 0 6px;
    text-align: left;
    text-transform: none;
    color: #ffffff;
    font-size: 46px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: none;
}

.hero-buttons {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
}

.form-container .hero-signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 48px;
    padding: 0 32px;
    border-radius: var(--btn-pill-radius);
    background: var(--btn-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    box-shadow: var(--btn-primary-shadow);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.form-container .hero-signup-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 24px rgba(255, 48, 77, 0.34);
}

.form-container .hero-signup-btn:active {
    transform: translateY(0);
}

.banner-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.banner-img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.logo {
    display: none;
    justify-content: center;
}

.headline-1 {
    text-align: center;
    color: #cccccc;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(var(--accent-pink-rgb), 0.3);
}

.headline-2 {
    text-align: center;
    color: #ffcc00;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow:
        0 0 26px rgba(var(--accent-gold-rgb), 0.45),
        0 0 18px rgba(var(--accent-green-rgb), 0.35),
        0 0 12px rgba(var(--accent-pink-rgb), 0.2),
        0 2px 18px rgba(0, 0, 0, 0.65);
}

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

a.btn-register {
    display: block;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

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

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

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

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

/* Content Section */
.content-section {
    position: relative;
    background: linear-gradient(180deg, #0c1017 0%, #101620 100%);
    padding: 60px 20px;
    padding-top: 72px;
}

.content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(12, 16, 23, 0.4) 100%);
}

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

.content-max-width {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 32px;
    border: 1px solid rgba(var(--accent-blue-rgb), 0.28);
    border-radius: 20px;
    background: rgba(18, 24, 32, 0.55);
}

.content-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.3;
}

.content-button-wrapper {
    text-align: center;
    margin: 32px 0;
}

.content-btn {
    display: inline-block;
    min-width: 200px;
    padding: 16px 48px;
    background: var(--btn-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--btn-pill-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-transform: none;
    box-shadow: var(--btn-primary-shadow);
}

.content-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 28px rgba(255, 43, 77, 0.38);
}

/* Pros / cons cards (RU, before bottom CTA) */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 8px 0 12px;
}

.pros-block,
.cons-block {
    border-radius: 14px;
    padding: 22px 24px;
    background: rgba(15, 17, 26, 0.92);
}

.pros-block {
    border: 1px solid rgba(74, 222, 128, 0.4);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.06) inset;
}

.cons-block {
    border: 1px solid rgba(248, 113, 113, 0.42);
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.06) inset;
}

.pros-cons-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-block .pros-cons-title {
    color: #4ade80;
}

.cons-block .pros-cons-title {
    color: #f87171;
}

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

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

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

.pros-cons-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    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: #4ade80;
    margin-top: 1px;
}

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

/* Under H1: compact meta and rating block */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border-left: 3px solid rgba(212, 175, 55, 0.6);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.article-meta-icon {
    width: 16px;
    height: 16px;
    fill: rgba(212, 175, 55, 0.7);
    flex-shrink: 0;
}

.article-meta-label {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

.rating-card {
    background: linear-gradient(135deg, rgba(28, 12, 42, 0.95) 0%, rgba(42, 18, 58, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 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(212, 175, 55, 0.2);
    padding-right: 24px;
}

.rating-number {
    font-size: 54px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.rating-max {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

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

.rating-stars .star {
    color: #fbbf24;
    font-size: 20px;
}

.rating-stars .star-half {
    color: #fbbf24;
    font-size: 20px;
    opacity: 0.5;
}

.rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

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

.fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.fact-value.good {
    color: #4ade80;
}

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

/* Quick stats table */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 14px;
}

.stats-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

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

.stats-table td:first-child {
    color: rgba(255, 255, 255, 0.5);
    width: 40%;
    font-size: 13px;
}

.stats-table td:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.stats-table tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.025);
}

.text-content {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 25px;
}

/* Table of contents (under first paragraph) */
.article-toc {
    max-width: 28rem;
    width: 100%;
    margin: 0.25rem auto 1.75rem;
    padding: 1rem 1.25rem 1.1rem;
    border: 1px solid rgba(var(--accent-pink-rgb), 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
}

.article-toc-heading {
    margin: 0 0 0.9rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.text-content .article-toc-list {
    margin: 0;
    padding: 0 0 0 1.35rem;
    list-style: decimal;
    font-size: 0.95rem;
    line-height: 1.45;
}

.article-toc-list .level-1 {
    margin: 0 0 0.55rem;
    padding-left: 0.15rem;
}

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

.article-toc-list a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: inherit;
    transition: color 0.15s ease, text-decoration 0.15s ease;
}

.article-toc-list a:hover {
    color: rgb(var(--accent-blue-rgb));
    text-decoration: underline;
}

.content-screen-figure {
    margin: 28px 0 32px;
    width: 100%;
}

.content-screen-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.text-content h2,
.text-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
}

.text-content ul,
.text-content ol {
    margin: 0 0 20px 1.2em;
    padding: 0;
}

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

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

.faq-item {
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.22);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 28px 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: #e2e8f0;
    position: relative;
    line-height: 1.35;
    text-shadow: 0 0 18px rgba(var(--accent-gold-rgb), 0.08);
}

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

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

.faq-summary:hover {
    color: #ffffff;
}

.faq-item[open] .faq-summary:hover {
    color: #fecdd3;
}

.faq-summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid rgba(var(--accent-gold-rgb), 0.88);
    border-bottom: 2px solid rgba(var(--accent-gold-rgb), 0.88);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.faq-item[open] .faq-summary {
    color: #fb7185;
    text-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.28);
}

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

.faq-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.faq-body .faq-answer-plain {
    margin: 0 0 12px 0;
    font-weight: 600;
}

/* Footer */
.footer {
    flex-shrink: 0;
    background: linear-gradient(180deg, #101620 0%, var(--bg-deep) 100%);
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

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

.footer-nav a {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, opacity 0.2s;
}

.footer-nav a:hover {
    color: rgb(var(--accent-blue-rgb));
    text-decoration: underline;
}

.legal-main {
    min-height: 50vh;
    /* padding-top: 72px; */
}

.legal-document .text-content h2,
.legal-document .text-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

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

.legal-link:hover {
    color: rgb(var(--accent-blue-rgb));
}

.legal-meta {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.age-restriction-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(var(--accent-pink-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.age-number {
    font-size: 22px;
    font-weight: 700;
    color: rgba(232, 237, 248, 0.95);
    position: absolute;
}

.age-plus {
    font-size: 10px;
    color: rgba(232, 237, 248, 0.95);
    position: absolute;
    top: 8px;
    left: 32px;
}

.footer-copyright {
    color: rgba(156, 163, 175, 0.92);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px 0 !important;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer p:first-child {
    margin-bottom: 5px;
}

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

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

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

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

body.page-legal .legal-wrap a {
    color: var(--accent-red-light);
    font-weight: 700;
}

body.page-legal .legal-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-red-light);
    font-weight: bold;
    text-decoration: none;
}

/* ===== Responsive (max-width: largest → smallest) ===== */

@media (max-width: 1000px) {
    .content-wrapper {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .lang-dropdown-btn {
        padding: 6px 10px;
        min-height: 38px;
        font-size: 12px;
    }

    .download-links {
        display: flex;
    }

    .header-content {
        padding: 12px 15px;
        gap: 10px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        background: #161626;
    }

    .header-search {
        max-width: none;
        min-width: 0;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-signup {
        display: none;
    }

    .btn-login-icon {
        margin-left: auto;
        width: 100px;
    }

    .header-logo {
        display: none;
    }

    .header-logo-img {
        height: 30px;
    }

    .header-help,
    .help-text {
        display: none;
    }

    .header-login {
        margin-left: auto;
        min-height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }

    .header-register {
        padding: 0 18px;
        min-height: 36px;
        font-size: 13px;
    }

    .logo {
        display: flex;
    }

    .hero-stack {
        margin-left: 0;
        max-width: 100%;
        height: 100%;
    }
    .hero-secondary-img {
        width: 80%;
        margin-bottom: 80px;
    }
    .container {
        margin-top: 100px;
        padding: 20px 30px;
    }

    .container-bg-wrap {
        top: 0;
        margin: 0 auto;
        height: 475px;
    }

    .container-bg-img {
        object-position: 60% center;
    }

    .content-wrapper {
        margin-top: 0;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-max-width {
        padding-top: 40px;
    }

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

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

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

    .text-content h2,
    .text-content h3 {
        font-size: 20px;
        margin-top: 30px;
    }

    .article-toc {
        max-width: 100%;
    }

    .faq-summary {
        font-size: 16px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

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

    .footer {
        padding: 15px 20px;
    }

    .age-restriction-icon {
        width: 45px;
        height: 45px;
    }

    .age-number {
        font-size: 20px;
    }

    .age-plus {
        font-size: 9px;
        top: 7px;
        left: 28px;
    }

    .footer-disclaimer p {
        font-size: 12px;
    }

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

    .footer-nav {
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid rgba(var(--accent-pink-rgb), 0.15);
    }
}

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

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

    .banner-container {
        display: none;
    }

    .header-search {
        display: none;
    }

    .form-container {
        padding: 20px;
    }



    .logo-header-img {
        height: 50px;
        transform: scale(1.3);
    }

    .header-actions {
        width: 100%;
    }

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

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

    .rating-card-score {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding-right: 0;
        padding-bottom: 20px;
    }

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