#background-music {
    display: block;
    height: 0;
    width: 0;
    visibility: hidden;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    max-width: none !important; 
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#join-button {
    position: absolute;
    top: 58%;  
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 81, 186, 0.8);
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#join-button:hover {
    background-color: rgba(0, 81, 186, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

#audio-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

#mute-button {
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
}

.music-symbol {
    font-size: 20px;
}

.mute-symbol {
    position: absolute;
    font-size: 18px;
    color: red;
    font-weight: bold;
}


#title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 42px;
    text-shadow: 0 0 10px rgba(0, 81, 186, 0.8), 0 0 20px rgba(0, 81, 186, 0.5);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
    font-family: 'Arial', sans-serif;
}
