
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            
        }
        .synt {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-image: url("/assets/background.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        nav {
            display: block;
            unicode-bidi: isolate;
        }
        main {
            padding: 20px;
            text-align: center;
        }
        .cta-button {
            background-color: #4CAF50;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .player {
            border: 2px solid #ddd;
            border-radius: 8px;
            background-color: #fff;
            display: inline-block;
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        .ul{
            display: block;
            list-style-type: disc;
            margin-block-start: 1em;
            margin-block-end: 1em;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
            padding-inline-start: 40px;
            unicode-bidi: isolate;
        }
        li{
            display: inline;
            margin: 10px;
        }
        body, html {
            margin: 0;
            padding: 0;
        }
        .usual header {
            display: block; /* Используем Flexbox */
            /* flex-direction:row; Располагаем элементы по колонкам */
            /*align-items: center;  Центрируем все элементы по горизонтали */
            background-color: #4CAF50; /* Цвет фона header */
            color: white; /* Цвет текста */
            padding: 10px 0; /* Отступы сверху и снизу */
            height: 90px;
        }    
        
        .synt header {
            display: flex;
            justify-content: center; /* Раздвигает элементы */
            align-items: center; /* Выравнивает по центру */
            padding: 22px;
            position: relative;
            background: linear-gradient(180deg, #f222ff, #8c1eff, #0dc4f2);
        }
        nav {
            margin-top: 10px; /* Отступ сверху для навигации */
        }
        
        nav ul {
            list-style-type: none; /* Убираем маркеры списка */
            margin-bottom: 20px;
            padding: 0;
            display: flex; /* Flexbox для центровки элементов */
            justify-content: left; /* Центрируем элементы по горизонтали */
        }
        
        nav ul li {
            margin: 0 15px; /* Отступы между элементами меню */
        }
        
        nav ul li a {
            color: white; /* Цвет ссылок */
            text-decoration: none; /* Убираем подчеркивание */
        }
        
        nav ul li a:hover {
            text-decoration: underline; /* Подчеркивание при наведении */
        }
        .large-text {
            max-width: 800px; /* Максимальная ширина блока с текстом */
            margin: 0 auto; /* Центрируем блок по горизонтали */
            padding: 20px;
            text-align: center; /* Центрируем текст внутри блока */
            background-color: #fff; /* Цвет фона для блока с текстом */
            border-radius: 8px; /* Скругленные углы блока */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Тень для блока */
            animation: squeeze 10s linear infinite;
        }
        
        .large-text h2 {
            font-size: 2.5em; /* Размер заголовка */
            color: #333; /* Цвет текста заголовка */
        }
        
        .large-text p {
            font-size: 1.2em; /* Размер обычного текста */
            color: #666; /* Цвет обычного текста */
        }
        @keyframes squeeze {
            0%, 100% {
                transform: scaleX(1.5); /* Normal width */
            }
            50% {
                transform: scaleX(0.5); /* Squeezed effect */
            }
        }
        .synthwave-btn {
            font-size: 18px;
            font-weight: bold;
            padding: 15px 15px;
            color: #fff;
            background: linear-gradient(90deg, #f222ff, #8c1eff, #0dc4f2);
            border: none;
            border-radius: 8px;
            position: absolute;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
            outline: none;
            left: 15px;
            text-decoration: none;
        }
        
        .synthwave-btn:hover {
            box-shadow: 0 0 25px #ff00ff, 0 0 50px #00ffff;
            transform: scale(1.1);
        }
        
        /* Глитч-эффект */
         /* .synthwave-btn::after {
            content: "НАЗАД";
            position: absolute;
            top: 0;
            left: 0;
            padding: 15px 40px;
            color: #fff;
            background: inherit;
            border-radius: 8px;
            clip-path: inset(0 0 0 0);
            opacity: 0.3;
        }  */
        
         /* .synthwave-btn::before {
            transform: translate(-2px, -2px);
            color: #ff00ff;
        } */
        
        /* .synthwave-btn::after {
            transform: translate(3px, 3px);
            color: #00ffff;
        } */
        
        /* Анимация мерцания */
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
            }
            50% {
                box-shadow: 0 0 25px #ff00ff, 0 0 50px #00ffff;
            }
        }
        
        .synthwave-btn {
            animation: glow 1.5s infinite alternate;
        }
     .synt  h1 {
            font-size: 24px;
            color: #fff;
            text-transform: uppercase;
            margin: 0;
        }
        @media (max-width: 600px) {
            .synthwave-btn {
                display: none;
            }
        }
    
        
        
