body {
    background-image: url('/images/l2_characters_background.jpg'); /* Убедитесь, что этот путь и имя файла верны */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 1px 1px 3px #000;
}

/* Изменено: Убраны отступы между колонками, добавлены отступы внутри */
.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    min-height: 80vh;
}

/* Изменено: Полупрозрачный, едва заметный фон для блоков */
.block {
    background: rgba(0, 0, 0, 0.4); /* Очень прозрачный фон */
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.left-sidebar, .right-sidebar, .main-content {
    padding: 20px 10px; /* Добавляем внутренний отступ для читаемости */
    flex-basis: 25%;
}

.main-content {
    flex-basis: 50%;
    text-align: center;
}

.logo {
    font-size: 3em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
}

a {
    color: #4da6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

li a, .logout-btn {
    display: block;
    padding: 5px 0;
}

.music-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

/* Стили для музыкального блока */
.music-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}