/* about.css — извлечено из about.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/app-alt-gradient-bg-dark.jpg') no-repeat center center fixed;
            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 350px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0, 191, 255, 0.12), transparent 80%);
            transition: opacity 0.3s ease;
        }

        @media (max-width: 1024px) {
            #glow-bg { display: none; } /* Отключаем на мобильных для производительности */
        }

        /* ===== Шапка (Логотип и Язык) ===== */
        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: linear-gradient(to bottom, rgba(11, 13, 19, 0.8), transparent);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .logo {
            height: 48px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            pointer-events: none;
        }

        .lang-selector {
            position: relative;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* ===== Контейнер структуры контента ===== */
        main {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 140px 24px 60px 24px;
        }

        /* Анимация появления блоков при прокрутке */
        .reveal-block {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            margin-bottom: 100px;
        }

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

        /* ===== Текстовые стили и структуры разделов ===== */
        h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #f8fafc;
        }

        .text-left { text-align: left; }
        .text-center { text-align: center; }
        .text-gray { color: #94a3b8; }

        /* Блок 1: Hero секция */
        .hero-block {
            margin-bottom: 120px;
        }

        .hero-title {
            color: #00bfff;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 32px;
            display: inline;
        }

        /* Мигающий текстовый курсор */
        .custom-cursor {
            display: inline-block;
            width: 4px;
            height: 3.5rem;
            background-color: #00bfff;
            margin-left: 6px;
            vertical-align: middle;
            animation: blink 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-desc {
            font-size: 1.25rem;
            line-height: 1.75;
            color: #cbd5e1;
            max-width: 1000px;
        }

        /* Блок 3 & Блок 5: Сплит-блоки (текст слева, изображение справа) */
        .split-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            align-items: center;
        }

        .img-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.02);
            cursor: zoom-in;
            transition: transform 0.3s ease;
        }

        .img-wrapper:hover {
            transform: translateY(-4px);
        }

        .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            pointer-events: none;
        }

        /* Интерактивный кликабельный зум для изображений */
        .img-wrapper.zoomed {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.4);
            width: 60vw;
            z-index: 1000;
            cursor: zoom-out;
            box-shadow: 0 0 100px rgba(0,0,0,0.8);
        }

        .zoom-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(11, 13, 19, 0.9);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .zoom-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Блок 4: Сетка преимуществ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 191, 255, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            object-fit: contain;
            pointer-events: none;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #f8fafc;
        }

        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #94a3b8;
        }

        /* Блок 6: Философия */
        .philosophy-content {
            max-width: 850px;
            margin: 0 auto;
            font-size: 1.15rem;
            line-height: 1.8;
            color: #cbd5e1;
        }

        .philosophy-content p {
            margin-bottom: 24px;
        }

        /* Блок 7: Донаты и Сверх-огромная адаптивная кнопка */
        .donate-container {
            max-width: 850px;
            margin: 0 auto;
            text-align: center;
        }

        .donate-title {
            color: #00bfff !important;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .donate-desc {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 32px;
        }

        .donate-list {
            text-align: left;
            max-width: 600px;
            margin: 0 auto 48px auto;
            list-style: none;
        }

        .donate-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 16px;
            font-size: 1.1rem;
            color: #e2e8f0;
            line-height: 1.5;
        }

        .donate-list li::before {
            content: "✦";
            position: absolute;
            left: 0;
            top: 0;
            color: #00bfff;
            font-weight: bold;
        }

        /* Огромная кнопка с заполнением */
        .massive-donate-btn {
            display: inline-block;
            width: 100%;
            max-width: 500px;
            padding: 24px 48px;
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #ffffff;
            background: #1e40af; /* Синий базовый */
            border: none;
            border-radius: 14px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        }

        .massive-donate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #00bfff; /* Голубое заполнение */
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .massive-donate-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 191, 255, 0.5);
        }

        .massive-donate-btn:hover::before {
            transform: scaleX(1);
        }

        /* ===== Блок 8: Подвал сайта (Footer) ===== */
        footer {
            background: rgba(7, 9, 14, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 80px 5% 40px 5%;
            position: relative;
            z-index: 3;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 64px;
            margin-bottom: 60px;
        }

        .footer-column h4 {
            color: #f8fafc;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: 0.02em;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            list-style: none;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            display: inline-block;
        }

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

        .copyright {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #64748b;
            font-size: 0.9rem;
            text-align: center;
        }

        /* ===== Медиа-запросы для мобильных устройств ===== */
        @media (max-width: 968px) {
            .hero-title { font-size: 2.4rem; }
            .custom-cursor { height: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .split-container { grid-template-columns: 1fr; gap: 32px; }
            .features-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            main { padding-top: 110px; }
            .massive-donate-btn { font-size: 1.2rem; padding: 20px 32px; }
        }

        /* Небольшие телефоны */
        @media (max-width: 480px) {
            header { padding: 14px 4%; }
            .logo { height: 40px; }
            .logo iframe { width: 140px !important; height: 36px !important; }
            .lang-btn { padding: 6px 14px; font-size: 0.78rem; }
            main { padding: 100px 16px 60px; }
            .hero-title { font-size: 1.9rem; }
            h2 { font-size: 1.4rem; }
            .footer-grid { gap: 28px; padding: 40px 16px; }
            .footer-links { gap: 10px 14px; font-size: 0.85rem; }
        }
