:root {
    --title-size: 32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation; 
}

html, body {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.preview-area {
    width: 100%;
    min-height: 100dvh;
    background-color: #000000;
    overflow-x: hidden; 
    overflow-y: visible;
    position: relative;
    display: block;
}

.prevent-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Разрешение выделения текста для удобного чтения */
.allow-select {
    -webkit-touch-callout: default !important;
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Свечение на фоне (прокручивается вместе с контентом) */
.glow-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1800px; 
    height: 100%; 
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(ellipse 484px 244px at calc(50% - 323px) -7px, rgba(0, 217, 255, 1) 0%, rgba(0, 217, 255, 0) 100%),
        radial-gradient(ellipse 484px 244px at calc(50% + 323px) -7px, rgba(0, 255, 225, 1) 0%, rgba(0, 255, 225, 0) 100%);
    background-repeat: no-repeat;
}

.content-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 24px 80px 24px;
    z-index: 2;
    position: relative; 
}

.header-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.back-btn {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    margin-left: -4px;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

.back-btn svg {
    width: 24px;
    height: 24px;
}

.main-title {
    font-size: calc(var(--title-size) * 1px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    line-height: 1.1;
}

.main-desc {
    color: #b5b5b5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

/* =========================================
   ОБЁРТКА ДЛЯ КОНТЕНТА
   ========================================= */
.slide-wrapper {
    width: 100%;
    margin-top: 24px;
}

.slide-content {
    width: 100%;
}

/* =========================================
   ТЕКСТ ДОКУМЕНТА (БЕЗ СЕРОЙ ПЛАШКИ)
   ========================================= */
.policy-card {
    background-color: transparent;
    padding: 0;
    color: #ffffff;
}

.policy-doc-date {
    font-size: 13px;
    color: #777777;
    margin-bottom: 24px;
}

.policy-doc-body {
    line-height: 1.5;
    font-size: 14px;
}

.policy-doc-body h2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.policy-doc-body h2:first-of-type {
    margin-top: 0;
}

.policy-doc-body p {
    color: #b5b5b5;
    margin-bottom: 12px;
}

.policy-doc-body p:last-child {
    margin-bottom: 0;
}

.policy-doc-body ul {
    margin-left: 20px;
    margin-bottom: 12px;
    color: #b5b5b5;
}

.policy-doc-body li {
    margin-bottom: 6px;
}
