      body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            overflow-x: hidden; /* Предотвращает появление горизонтального скролла из-за анимаций */
        }
       .paragraf {
              text-align: justify;
               font-family: 'Montserrat', sans-serif; 
              font-weight: 300; 
             line-height: 1.6; 
}


        h2 {
            color: #00ff88;
            text-align: left;
            font-size: 2rem;
        }
 



             :root {
            --primary-color: #00ff88;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --text-light: #ffffff;
            --text-dim: #888888;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Техно-стилизация */
        .glitch-text {
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            position: relative;
            text-shadow: 0.05em 0 0 rgba(255,0,0,0.75),
                        -0.05em -0.025em 0 rgba(0,255,255,0.75);
            animation: glitch 500ms infinite;
        }

        @keyframes glitch {
            0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,255,0.75); }
            25% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.05em 0 rgba(0,255,255,0.75); }
            50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,255,0.75); }
            75% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,255,0.75); }
            100% { text-shadow: 0.025em -0.025em 0 rgba(255,0,0,0.75), -0.025em 0.05em 0 rgba(0,255,255,0.75); }
        }

        /* Секция с видео-фоном */
        .hero-section {
            min-height: 35vh;
            position: relative;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }

        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(0, 255, 136, 0.1);
            animation: scan 8s linear infinite;
        }

        @keyframes scan {
            0% { top: -2px; }
            100% { top: 100%; }
        }

        /* Карточки треков */
        .track-card {
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
        }

        .track-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
        }

        .track-card.playing {
            border-color: var(--primary-color);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
        }

        .play-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            border: none;
            color: black;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px var(--primary-color);
        }

        /* Прогресс-бар плеера */
        .player-progress {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            cursor: pointer;
        }

        .player-progress-fill {
            height: 100%;
            background: var(--primary-color);
            border-radius: 2px;
            width: 0%;
            position: relative;
        }

        .player-progress-fill::after {
            content: '';
            position: absolute;
            right: -4px;
            top: -4px;
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .player-progress:hover .player-progress-fill::after {
            opacity: 1;
        }

        /* Аудио-визуализация */
        .visualizer {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 40px;
        }

        .visualizer-bar {
            width: 3px;
            background: var(--primary-color);
            height: 100%;
            transition: height 0.1s ease;
        }

        /* Стили для кнопок */
        .btn-outline-neon {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            transition: all 0.3s;
        }

        .btn-outline-neon:hover {
            background: var(--primary-color);
            color: black;
            box-shadow: 0 0 20px var(--primary-color);
        }

        /* Социальные иконки */
        .social-icon {
            color: var(--text-dim);
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-icon:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Кастомный скроллбар */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #00cc6a;
        }
      