body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: #121212;
    color: #ffffff;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://popbob.org/bg.gif') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
}

.container {
    text-align: center;
    background-color: rgba(18, 18, 18, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 600px;
    position: relative;
    z-index: 1;
}

.title {
    color: #ffffff;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.video-placeholder {
    width: 100%;
    border-radius: 8px;
}

audio {
    width: 100%;
    display: none;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

#play-pause, #loop {
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    background-color: #333333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#play-pause:hover, #loop:hover {
    background-color: #555555;
}

#seek-bar, #volume-bar {
    width: 20%;
}

#current-time, #duration {
    font-size: 14px;
}
