/* Futuristic Matte Black & Vibrant Orange Theme Custom Styles */
body {
    background-color: #121212;
    font-family: 'Inter', sans-serif;
}

/* Custom Orange Glow Effect */
.orange-glow {
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.orange-glow:focus-within {
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.45);
}

/* Custom Scrollbar for sleek UI */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #FF6B00;
    border-radius: 3px;
}

/* Shimmer Loading Animation */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; filter: drop-shadow(0 0 8px #FF6B00); }
}
.loading-pulse {
    animation: pulse-glow 1.5s infinite;
}
