/* Desabilita seleção de texto no site inteiro para evitar cópias */
body {
    user-select: none;
    -webkit-user-select: none;
}

/* Permite interação APENAS no player de vídeo e no INPUT (para conseguir colar) */
#videoPlayer, #shopeeUrl {
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -webkit-touch-callout: default !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #ea580c; border-radius: 8px; }

/* Animação do Toast (Notificações) */
@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.toast-enter { animation: slideIn 0.3s ease-out forwards; }

/* --- MODO CLARO --- */
body.light-mode { background-color: #f3f4f6 !important; color: #1f2937 !important; }
body.light-mode .bg-\[\#111827\] { background-color: #ffffff !important; border-color: #e5e7eb !important; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important; }
body.light-mode .bg-gray-900 { background-color: #f9fafb !important; border-color: #d1d5db !important; color: #111827 !important; }
body.light-mode .bg-black { background-color: #e5e7eb !important; }
body.light-mode .bg-gray-800 { background-color: #ffffff !important; }
body.light-mode .text-gray-400 { color: #4b5563 !important; }
body.light-mode .border-gray-800 { border-color: #e5e7eb !important; }
body.light-mode .text-gray-300 { color: #374151 !important; }