/* Animasi Video Login Nutupin Layar */
.splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background-color: #000;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

/* Memaksa video agar 100% full screen dan zoom 10% */
.splash-video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh; height: 100dvh;
    object-fit: cover !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    pointer-events: none;
    z-index: 1;
}

.fallback-container { position: relative; z-index: 10; background: rgba(0,0,0,0.7); padding: 20px; border-radius: 15px; }
.btn-enter { background: #FF1493; color: white; border: none; padding: 15px 30px; font-size: 16px; font-weight: bold; border-radius: 30px; cursor: pointer; box-shadow: 0 0 15px #FF1493; }

/* Dashboard Content muncul halus */
.dashboard-content {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}