* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('https://sun9-45.userapi.com/c10003/u157343632/-6/x_eba61209.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column; /* Added to align footer at the bottom */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#listener-count {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.dj-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.dj-info img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

audio {
    width: 100%;
    max-width: 600px;
}

.chat {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.chat h2 {
    margin-bottom: 10px;
}

.chat-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

#chat-input {
    width: calc(100% - 80px);
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background: #555;
}

/* Footer styles */
footer {
    margin-top: auto; /* Push the footer to the bottom */
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #444;
}

footer p {
    margin: 0;
    color: #aaa;
}
