body {
    background-image: url("../img/var.bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Фон остаётся неподвижным */
    font-family: "Montserrat", sans-serif;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh; /* Убираю скролл с body */
    overflow-y: hidden; /* Скрываю скролл, чтобы он не появлялся на всей странице */
}

/* Стили для контейнера с инструкцией */
.instructions-container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 40px;
    margin: 130px 20px 50px 20px;
    width: 90%;
    max-width: 1300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: justify;
    height: 70vh; /* Задаём фиксированную высоту для блока */
    overflow-y: auto; /* Добавляем скролл только внутри этого блока */
}

.instructions-container h1 {
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: none;
    color: #ba23ac;
    text-align: center;
    margin-bottom: 20px;
}

.instructions-container p, .instructions-container li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.instructions-container ul {
    list-style: none;
    padding-left: 20px;
}

.instructions-container li {
    position: relative;
    padding-left: 30px;
    text-align: justify;
}

.instructions-container li::before {
    content: "🎵";
    position: absolute;
    left: 0;
    color: #a66ef5;
    font-size: 1.2em;
    line-height: 1.6;
}

/* стили для скроллбара, чтобы он был красивым */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

body::-webkit-scrollbar-thumb {
    background: #a66ef5;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #ba23ac;
}