body {
    font-family: 'Inter', sans-serif;
    background-color: #080c14;
    color: #f8fafc;
}
.font-comfortaa {
    font-family: 'Comfortaa', sans-serif;
}
@keyframes pulse-radar {
    0% { transform: scale(0.95); opacity: 0.15; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.15; }
}
.radar-pulse { animation: pulse-radar 4s infinite ease-in-out; }
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.radar-spin { animation: spin-slow 8s linear infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.floating-glow { animation: float 6s infinite ease-in-out; }
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 8px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 8px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(249,115,22,0.3); }
.scrollbar-none { scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }
.overflow-y-auto, .overflow-x-auto { -webkit-overflow-scrolling: touch; }
dialog {
    max-height: 90vh;
    overflow-y: auto;
}
@media (prefers-reduced-motion: reduce) {
    .radar-pulse, .radar-spin, .floating-glow { animation: none; }
}
