body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Campton', Bold;
    text-align: center;
    position: relative;
    height: 100vh;
    background-color: #1a1a1a;
    color: #ffffff;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.loading-bar {
    position: absolute;
    bottom: 11.8vh;
    left: 42.3%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 1780px;
    min-width: 300px;
    height: 2.7vh;
    min-height: 24px;
    border-radius: 90px;
    overflow: hidden;
}

@media screen and (min-width: 2560px) {
    .loading-bar {
        left: 49%;
        max-width: 2350px;
    }
}

.loading-text {
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8em;
    animation: glow 1s ease-in-out infinite alternate;
}

#loadingBar {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #9900ff 0%, #4400ff 80%, rgba(33, 203, 209, 0) 100%);
    transition: width 0.3s ease-in-out;
}

.music-player {
    position: absolute;
    bottom: 90%;
    left: 9%;
    transform: translateX(-50%);
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.music-title {
    font-size: 1.5em;
    color: white;
    animation: glow 1s ease-in-out infinite alternate;
}

.music-progress-container {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.music-progress-bar {
    height: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    width: 0%;
    position: relative;
}

.music-progress-circle {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.music-time {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.9em;
    animation: glow 1s ease-in-out infinite alternate;
}

.Progress-text {
    position: absolute;
    bottom: 22vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8em;
    animation: glow 1s ease-in-out infinite alternate;
}

#backgroundMusic {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}
