/* Custom Scrollbar bergaya Xvideos (Menyesuaikan Tema Terang/Gelap) */
::-webkit-scrollbar { width: 4px; height: 4px; }

/* Scrollbar Mode Terang (Default) */
::-webkit-scrollbar-track { background: #f3f4f6; } /* gray-100 */
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 0px; } /* gray-300 */
::-webkit-scrollbar-thumb:hover { background: #dc2626; } /* Warna merah */

/* Scrollbar Mode Gelap (Otomatis aktif saat class 'dark' ada di HTML) */
html.dark ::-webkit-scrollbar-track { background: #141414; }
html.dark ::-webkit-scrollbar-thumb { background: #333333; border-radius: 0px; }
html.dark ::-webkit-scrollbar-thumb:hover { background: #dc2626; }

* { -webkit-tap-highlight-color: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 12px; height: 12px; background: #dc2626; cursor: pointer; border-radius: 50%; }
video::-internal-media-controls-download-button { display:none; }
video::-webkit-media-controls-enclosure { display:none !important; }
video::-webkit-media-controls { display:none !important; }

/* Mencegah seleksi gambar */
.no-select-image {
    -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none; -webkit-user-drag: none; -webkit-touch-callout: none;
}

/* Animasi & Transisi */
.seek-ripple { animation: seekFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes seekFade { 0% { opacity: 0; transform: scale(0.9); } 20% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0; transform: scale(1); } }
.animate-fade-in-up { animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.animate-slide-in-left { animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

#customPlayerWrapper:fullscreen { width: 100vw !important; height: 100vh !important; background-color: #000; }
.hide-cursor { cursor: none !important; }
#clickOverlay { touch-action: none; }
video::cue { background-color: rgba(0, 0, 0, 0.7); color: white; font-size: 14px; font-family: sans-serif; text-shadow: 1px 1px 2px black; padding: 4px 8px; border-radius: 4px; }

/* KODE INVERSI TEMA TERANG SEBELUMNYA TELAH DIHAPUS SEPENUHNYA */
