@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

body { 
    background-color: #000; 
    color: #fff; 
    margin: 0; 
    overflow: hidden; 
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Mengunci scroll per video */
.video-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.video-container::-webkit-scrollbar { display: none; }

.video-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Ikon Tengah saat Play/Pause */
.play-status-icon {
    position: absolute;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 60;
}

.play-status-icon.show {
    opacity: 1;
    transform: scale(1);
}

/* Desain Navigasi */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.tab { 
    font-size: 14px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.4s;
    color: rgba(255,255,255,0.4);
    position: relative;
}

.tab.active { color: #fff; }
.tab.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: #fe2c55;
    border-radius: 10px;
}

/* Teks Kredit ditzz */
.credits {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 50;
    pointer-events: none;
}

.maker { font-weight: 700; font-size: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.support { font-size: 10px; opacity: 0.6; letter-spacing: 1px; }

/* Animasi Loading */
.loader {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #fe2c55;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
