/**
 * Theme Name: KMA
 * File: video-player.css
 * Description: Stylesheet khusus untuk Video Player & Overlay Iklan VAST AdManager Tema KMA.
 */

/* ==========================================
   1. CONTAINER VIDEO PLAYER (RESPONSIF 16:9)
   ========================================== */
.kma-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Ratio 16:9 Fullscreen Width */
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kma-video-wrapper video,
.kma-video-wrapper .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* ==========================================
   2. OVERLAY IKLAN VAST ADMANAGER GOOGLE
   ========================================== */
.ima-ad-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Label Penanda Iklan VAST */
.kma-ad-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffcc00;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 11;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   3. CUSTOM PLAY BUTTON & CONTROLS
   ========================================== */
.kma-custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 3px solid #ffffff;
}

.kma-custom-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

/* Badge Live Streaming */
.kma-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: #ffffff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    animation: blink 1.5s infinite;
    z-index: 5;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ==========================================
   4. OVERRIDE STYLE VIDEO.JS SCRIPT
   ========================================== */
.vjs-default-skin .vjs-big-play-button {
    background-color: rgba(255, 0, 0, 0.8) !important;
    border-color: #ffffff !important;
    border-radius: 50% !important;
    width: 2em !important;
    height: 2em !important;
    line-height: 2em !important;
    margin-top: -1em !important;
    margin-left: -1em !important;
}

.vjs-default-skin:hover .vjs-big-play-button {
    background-color: #ff0000 !important;
}

.vjs-control-bar {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%) !important;
}