/* privacy.css — извлечено из s/privacy.html (1 <style>-блоков) */
/* ===== Базовые настройки и Защита ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            /* Многоуровневая защита от копирования */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        html {
            scroll-behavior: smooth;
            background-color: #0b0d13;
            color: #e2e8f0;
            overflow-x: hidden;
        }

        body {
            min-height: 100vh;
            /* Фон из указанной директории с фоллбеком на градиент */
            background: url('../../static-assets/backgrounds/temples.jpg') no-repeat center center fixed,
                        linear-gradient(135deg, #0b0d13 0%, #111827 100%);
            background-size: cover;
            position: relative;
            overflow-x: hidden;
        }

        /* ===== Интерактивное свечение (Курсор) ===== */
        #glow-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            background: radial-gradient(circle 500px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0, 191, 255, 0.07), transparent 80%);
            transition: opacity 0.3s ease;
        }

        @media (max-width: 1024px) {
            #glow-bg { display: none; }
        }

        /* ===== Шапка (Header) ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(11, 13, 19, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #00bfff;
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(0, 191, 255, 0.15);
            border-color: #00bfff;
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
        }

        /* ===== Основной контент ===== */
        main {
            position: relative;
            z-index: 2;
            max-width: 860px; /* Оптимальная ширина для чтения документов */
            margin: 0 auto;
            padding: 160px 24px 100px 24px;
        }

        /* Анимация появления блоков (Scroll Reveal) */
        .reveal-block {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
            margin-bottom: 50px;
        }

        .reveal-block.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Уведомление об обновлении */
        .update-notice {
            background: rgba(0, 191, 255, 0.1);
            border: 1px solid rgba(0, 191, 255, 0.3);
            border-radius: 12px;
            padding: 16px 24px;
            margin-bottom: 40px;
            color: #e0f2fe;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .update-notice::before {
            content: 'ℹ️';
            font-size: 1.2rem;
        }

        /* Типографика документа */
        .page-title {
            color: #f8fafc;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 30px;
        }

        .hero-statement {
            font-size: 2rem;
            color: #00bfff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 60px;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 1.8rem;
            color: #f8fafc;
            margin-bottom: 20px;
            font-weight: 700;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 12px;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 24px;
        }

        /* Акцентные блоки */
        .highlight-text {
            color: #e2e8f0;
            font-weight: 600;
        }

        /* Подвал документа */
        .doc-footer {
            margin-top: 80px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #64748b;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
        }

        /* ===== Подвал сайта ===== */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 5%;
            position: relative;
            z-index: 3;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #00bfff; }

        .copyright { color: #64748b; font-size: 0.9rem; }

        @media (max-width: 768px) {
            .page-title { font-size: 2.8rem; }
            .hero-statement { font-size: 1.5rem; }
            .doc-footer { flex-direction: column; gap: 10px; }
        }

        /* Небольшие телефоны */
        @media (max-width: 480px) {
            header { padding: 14px 4%; }
            .logo iframe { width: 140px !important; height: 36px !important; }
            .lang-btn { padding: 6px 14px; font-size: 0.78rem; }
            main { padding: 130px 16px 60px; }
            .page-title { font-size: 2.1rem; }
            .hero-statement { font-size: 1.2rem; }
            section p { font-size: 0.95rem; }
            .footer-links { gap: 14px; font-size: 0.85rem; }
        }
