.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: black;
    border-radius: 0.5rem;
}
.video-container iframe,
.video-container video {
    width: 100%;
    height: auto;
    display: block;
}
.video-blur {
    filter: blur(8px);
    transition: filter 0.3s ease;
}
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-container:hover .custom-controls {
    opacity: 1;
}
.control-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}
.control-button:hover {
    color: #4f46e5;
}
.progress-container {
    flex-grow: 1;
    margin: 0 10px;
    height: 5px;
    background: #4b5563;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: #4f46e5;
    width: 0;
    transition: width 0.1s linear;
}
.volume-container {
    display: flex;
    align-items: center;
    position: relative;
}
.volume-slider {
    width: 80px;
    height: 5px;
    background: #4b5563;
    border-radius: 5px;
    margin-left: 8px;
    overflow: hidden;
    display: none;
    position: absolute;
    bottom: 30px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}
.volume-container:hover .volume-slider {
    display: block;
}
.volume-bar {
    height: 100%;
    background: #4f46e5;
    width: 100%;
}
.fullscreen-btn.active::before {
    content: "\25A3";
}
.center-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(79, 70, 229, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.center-play-button:hover {
    background: rgba(79, 70, 229, 1);
}
.center-play-button svg {
    width: 40px;
    height: 40px;
    fill: white;
}
.center-play-button.hidden {
    display: none;
}
.embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
}
@media (min-width: 768px) {
    .embed-wrapper {
        padding-top: 56.25%;
    }
}
.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
