:root {
    --neon-orange: #f97316;
    --neon-red: #ef4444;
    --dark-bg: #020617;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    overscroll-behavior-y: contain; 
}

.font-display { font-family: 'Oswald', sans-serif; }

.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.fade-in { animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.slide-up { animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-gradient-fire {
    background: linear-gradient(to right, #fbbf24, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.glow-orange { box-shadow: 0 0 15px rgba(249, 115, 22, 0.5); }
.glow-red { box-shadow: 0 0 15px rgba(239, 68, 68, 0.5); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: #f97316; border-radius: 10px; }

/* --- FITUR CAHAYA EDGE LIGHTING --- */
.ambient-edge {
    pointer-events: none; 
    position: absolute;
    inset: 0;
    z-index: 35; 
    border-radius: inherit;
    animation: edgeGlow 8s ease-in-out infinite alternate;
}

@keyframes edgeGlow {
    0% {
        box-shadow: inset 0 0 30px rgba(249, 115, 22, 0.2), inset 0 0 5px rgba(249, 115, 22, 0.4);
        border: 2px solid rgba(249, 115, 22, 0.3);
    }
    33% {
        box-shadow: inset 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 10px rgba(239, 68, 68, 0.5);
        border: 2px solid rgba(239, 68, 68, 0.4);
    }
    66% {
        box-shadow: inset 0 0 60px rgba(99, 102, 241, 0.3), inset 0 0 10px rgba(99, 102, 241, 0.5);
        border: 2px solid rgba(99, 102, 241, 0.4);
    }
    100% {
        box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.2), inset 0 0 5px rgba(16, 185, 129, 0.4);
        border: 2px solid rgba(16, 185, 129, 0.3);
    }
}