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

        /* ——— SEO Блок (скрыт визуально, но доступен роботам) ——— */
        .seo-content {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            /* Или можно сделать его видимым в самом низу страницы, если нужно: */
            /* 
            position: relative;
            margin-top: 100px;
            opacity: 0.3;
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            text-align: center;
            */
        }

        html {
            background-color: #0f0c29;
            /* Цвет верха градиента, чтобы не было видно "шва" */
            height: 100%;
            width: 100%;
            overflow-x: hidden;
            /* Запрещаем горизонтальный скролл */
            overscroll-behavior: none;
            /* Отключаем "пружину" (bounce effect) на уровне страницы */
        }

        body {
            min-height: 100vh;
            /* Fallback for browsers that don't support dvh */
            min-height: 100dvh;
            width: 100%;

            /* Новый глубокий фон (Dark Mode vibe) */
            background-color: #2b32b2;
            /* Fallback background color */
            background: radial-gradient(circle at top left, #2b32b2, #1488cc);
            /* fallback */
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Фиксируем фон */

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            -webkit-font-smoothing: antialiased;
            /* Делаем шрифты четкими */
            -moz-osx-font-smoothing: grayscale;

            overflow-x: hidden;
            /* Запрещаем горизонтальный скролл */
            position: relative;
            z-index: 0;
            /* Создаем контекст наложения для частиц (z-index: -1), чтобы они были видны */
            padding: 40px 20px;
            /* Увеличил отступы для скролла */
            display: flex;
            flex-direction: column;
            /* Вертикальное размещение */
            justify-content: center;
            /* Начинаем сверху */
            align-items: center;
            /* gap: 60px; REMOVED */
            perspective: 1000px;
            /* Для 3D-эффекта */
            color: white;
            /* Основной цвет текста теперь белый */
            /* Управление скроллом на мобильных */
            /* overscroll-behavior-y: auto; REMOVED/REVERTED */
            touch-action: pan-y;
        }

        /* ... skipped ... */



        /* ... skipped ... */

        /* ——— Адаптация под устройства ——— */


        /* ——— Частицы (фоновая анимация) ——— */
        .particles {
            position: fixed;
            /* Фиксируем частицы, чтобы они не уезжали */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            /* Чуть прозрачнее для темного фона */
            animation: float 15s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            /* Легкое свечение */
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.2;
            }

            50% {
                opacity: 0.6;
            }

            100% {
                transform: translate(var(--tx), var(--ty)) rotate(360deg);
                opacity: 0.2;
            }
        }

        /* Respect user reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .particle {
                animation: none;
                display: none;
            }

            .card,
            .btn,
            .btn::after {
                animation: none;
                transition: none;
                transform: none !important;
                opacity: 1;
            }
        }

        /* ——— Карточка (Glassmorphism) ——— */
        .card {
            background: rgba(255, 255, 255, 0.05);
            /* Очень прозрачный фон */
            backdrop-filter: blur(20px);
            /* Эффект матового стекла */
            -webkit-backdrop-filter: blur(20px);
            /* Safari support */
            border: 1px solid rgba(255, 255, 255, 0.1);
            /* Тонкая рамка */
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            /* Блик сверху */

            border-radius: 24px;
            padding: 40px 32px;
            width: 100%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            /* Более глубокая тень */
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s cubic-bezier(0.17, 0.67, 0.88, 1.01) forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Убираем старый градиент под карточкой, стекло само по себе красиво играет */
        .card::before {
            display: none;
        }

        .avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
            /* Полупрозрачная рамка */
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Анимация "дыхания" для аватара */
        @keyframes breathe {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
                /* Свечение */
            }
        }

        .avatar {
            animation: breathe 4s ease-in-out infinite;
            transform: translateZ(0);
        }

        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #ff8a00;
            /* Акцентный оранжевый */
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 1.5px;
            border: 1px solid rgba(255, 138, 0, 0.3);
            text-transform: uppercase;
            box-shadow: 0 0 15px rgba(255, 138, 0, 0.2);
            /* Неоновое свечение */
        }

        h1 {
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .handle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .stats {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            /* Светло-серый текст */
            line-height: 1.6;
            margin-bottom: 32px;
            text-align: center;
        }

        .description::before {
            content: "🎵 ";
            vertical-align: middle;
            margin-right: 4px;
        }

        .btn {
            /* Яркий градиент для кнопки (Telegram Colors) */
            background: linear-gradient(90deg, #2AABEE, #229ED9);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4);
            position: relative;
            overflow: hidden;
            width: auto;
            min-width: 200px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            text-transform: uppercase;
            /* Стиль */
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(34, 158, 217, 0.6);
            /* background: ... градиент не анимируется, но фильтр можно */
            filter: brightness(1.1);
        }

        .btn:hover::after {
            transform: scaleX(1);
        }

        .btn:active {
            transform: scale(0.98);
            box-shadow: 0 5px 15px rgba(34, 158, 217, 0.3);
        }

        /* ——— Юридическая информация ——— */
        .legal {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            font-size: 11px;
            opacity: 0.4;
            display: flex;
            justify-content: center;
            gap: 16px;
            pointer-events: auto;
            /* Чтобы ссылки кликались */
            z-index: 10;
        }

        .legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        /* ——— Адаптация под устройства ——— */
        @media (max-width: 768px) {
            body {
                perspective: none;
                /* Отключаем 3D на мобильных */
            }

            .card {
                padding: 36px 28px;
                transform: none !important;
                /* Убираем трансформации */
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 16px;
                /* Поднимаем визуальный центр выше (оптическое выравнивание) */
                padding-bottom: 12vh;
                align-items: center;
            }

            .card {
                padding: 32px 24px;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            }

            .avatar {
                width: 80px;
                height: 80px;
                margin-bottom: 16px;
            }

            h1 {
                font-size: 24px;
            }

            .handle {
                font-size: 14px;
            }

            .stats {
                font-size: 12px;
                margin-bottom: 20px;
            }

            .description {
                font-size: 15px;
                margin-bottom: 28px;
                line-height: 1.45;
            }

            .btn {
                width: 100%;
                /* Полная ширина на мобильных */
                padding: 18px;
                /* Удобный тач-таргет */
                font-size: 18px;
                border-radius: 14px;
                margin-bottom: 0px;
            }
        }

        @media (min-width: 1024px) {

            html,
            body {
                overflow: hidden;
                height: 100vh;
            }

            .card {
                padding: 48px 40px;
                max-width: 440px;
                margin-top: -80px;
                /* Поднимаем карточку выше центра */
            }

            .avatar {
                width: 88px;
                height: 88px;
            }

            h1 {
                font-size: 26px;
            }

            .description {
                font-size: 15px;
            }
        }