.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.video-container .video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.video-container .player-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}
.gradient-overlay-bottom {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}
.player-ui {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.video-container:hover .player-ui {
    opacity: 1;
}
input[type=range].player-range {
    -webkit-appearance: none;
    background: transparent;
}
input[type=range].player-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}
input[type=range].player-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
input[type=range].player-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}
.volume-slider::-webkit-slider-runnable-track {
    background: rgba(255,255,255,0.3);
}
.center-play-button {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.center-play-button:hover {
    transform: scale(1.1);
}
.player-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.player-scrollbar::-webkit-scrollbar-track {
    background: #131620;
}
.player-scrollbar::-webkit-scrollbar-thumb {
    background: #2a3145;
    border-radius: 10px;
}
.player-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #0d7ff2;
}
