* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    width: 100%; height: 100%;
    background: #000;
    overflow: hidden;
    position: fixed;
}

#videoContainer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pastikan video tidak menutupi navigasi */
.video-js {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

/* Memindahkan navigasi lebih tinggi ke area tengah-bawah */
.stream-nav {
    position: absolute;
    bottom: 120px; /* Naik lebih tinggi dari kontrol video */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.stream-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.stream-btn.active { 
    background: #ff0050; 
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.6);
}