.video-container {
    position: relative;
    width: 100%;
    max-width: 1025px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-video video {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

.overlay-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

@media(max-width:767px){
    .single-video video, .overlay-single {
        border-radius: 0;
    }
}

.loader-single {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: single-spin 1s linear infinite;
    display: none;
}

@keyframes single-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 8px;
    cursor: pointer;
    z-index: 1;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-moz-media-controls-fullscreen-button {
    display: none !important;
}

video::-ms-media-controls-fullscreen-button {
    display: none !important;
}