﻿.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
   
    overflow: hidden;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
    }
.video-js {
    width: 100%;
    height: 0;
    padding-top: 56.25%; 
    position: relative;
}

.vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;  
}



.video-info {
    background: white;
    padding: 25px;
}

    .video-info h2 {
        color: #848484;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .video-info p {
        margin-bottom: 15px;
        color: #A0A0A0;
    }

.status {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2ecc71;
    margin-right: 10px;
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
}

.error-message {
    display: none;
    color: #e74c3c;
    text-align: center;
    padding: 20px;
    background: #fdecea;
    border-radius: 8px;
    margin-top: 20px;
}


.vjs-big-play-button {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    top: 12px !important;
    left: 2px !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    width: 60px !important;
    height: 60px !important;
}

    .vjs-big-play-button .vjs-icon-placeholder:before {
        font-size: 40px !important;
        color: white !important;
    }


.video-title {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: clamp(6px, 1vw, 12px) clamp(10px, 2vw, 18px);
    border-radius: 6px;
    display: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

    .video-title.show {
        display: block;
        opacity: 1;
    }


    .video-title .main-title {
        font-size: clamp(12px, 2.5vw, 22px);
        font-weight: 700;
        margin: 0;
        padding-bottom: 2px;
    }


    .video-title .sub-title {
        font-size: clamp(10px, 1.5vw, 16px);
        font-weight: 400;
        margin: 2px 0 0 0;
        opacity: 0.85;
    }
