
        body {
            background-color: #050505;
            color: #ffffff;
            cursor: none; /* Скрываем стандартный курсор для кастомного */
            overflow-x: hidden;
        }

        /* Noise Effect */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 50;
            opacity: 0.07;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Custom Cursor */
        .cursor-glow {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(176, 38, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            position: fixed;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 1;
            transition: opacity 0.3s ease;
        }
        
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: #00f3ff;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 100;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
        }

        /* Glassmorphism Utilities */
        .glass-panel {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .glass-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        .glass-btn:hover {
            background: rgba(176, 38, 255, 0.2);
            border-color: #b026ff;
            box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
        }

        /* Typography Effects */
        .text-split {
            position: relative;
            display: inline-block;
        }
        .text-split::before, .text-split::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #050505;
        }
        .text-split::before {
            left: 2px;
            text-shadow: -1px 0 #ff00c1;
            clip-path: inset(44% 0 61% 0);
            animation: glitch 2s infinite linear alternate-reverse;
        }
        .text-split::after {
            left: -2px;
            text-shadow: -1px 0 #00fff9;
            clip-path: inset(50% 0 30% 0);
            animation: glitch 2s infinite linear alternate-reverse;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #b026ff;
        }

        /* Loader */
        #loader {
            position: fixed;
            inset: 0;
            background: #000;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }


    .btn-back {
    position: fixed; /* Фиксируем кнопку относительно окна браузера */
    top: 90px;       /* Отступ сверху (чуть ниже меню, чтобы не перекрывать лого) */
    left: 20px;      /* Отступ слева */
    z-index: 100;    /* У меню z-50, ставим 100, чтобы кнопка была ПОВЕРХ всего */
    
    background-color: rgba(255, 255, 255, 0.9); /* Белый полупрозрачный фон */
    backdrop-filter: blur(5px); /* Размытие фона под кнопкой (эффект стекла) */
    color: #000;     /* Черный текст */
    padding: 10px 20px;
    border-radius: 30px; /* Круглые края */
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Красивая тень */
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-back:hover {
    background-color: #ffffff; /* При наведении становится чисто белой */
    transform: translateY(-2px); /* Чуть всплывает */
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* На мобильных (если экран меньше 768px) сдвигаем кнопку вниз, чтобы не мешала меню */
@media (max-width: 768px) {
    .btn-back {
        top: auto;
        bottom: 20px; /* На телефоне кнопка будет внизу слева */
        left: 20px;
    }
}
