body {
                margin: 0;
                padding: 0;
                height: 100vh;
                font-family: "GT Eesti Pro Display Regular", sans-serif;
                background-color: transparent;
                color: #333;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

            .videoContainer {
                position: relative;
                width: 100%;
                height: 100%;
            }

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

            #overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: black;
                opacity: 0;
                z-index: 1;
                transition: opacity 0.5s ease;
            }

            .content {
                position: relative;
                z-index: 1;
                text-align: center;
                padding: 10px;
                background-color: rgba(255, 255, 255, 0.8);
                border-radius: 10px;
                max-width: 800px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .button-container {
                display: flex;
                gap: 5px;
            }


            .music-button {
                background-color: transparent;
                border: none;
                font-size: 16px;
                cursor: pointer;
                border-radius: 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background-color 0.3s ease;
            }

            .music-button img {
                width: 24px;
                height: 24px;
            }

            .music-button:hover {
                background-color: rgba(0, 0, 0, 0.1);
            }



            .icon-link {
                margin-top: 10px;
            }

            .icon-link img {
                width: 30px;
                height: 30px;
            }
.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
	margin-top:10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
    transform: skewX(-20deg);
}

.progress-text {
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.realtime-data {
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 15px;
    border-radius: 12px;
    margin-top: 10px;
    color: #fff;
    width: 200px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
