body {
    background-color: #0f0f13;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Orbitron', sans-serif;
}

/* Neon Glow Effects (if needed anywhere) */
.neon-text {
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

/* Global Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f13;
}
::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 4px;
}

/* Scrollbar only for results list */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #0f0f13;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 4px;
}

/* Search Bar Animation */
#search-container {
    transition: all 0.3s ease-in-out;
    transform-origin: top;
}
.search-hidden {
    transform: scaleY(0);
    opacity: 0;
    height: 0;
}
.search-visible {
    transform: scaleY(1);
    opacity: 1;
    height: auto;
}

/* Spinner for Overlay */
.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 157, 0.2);
    border-top-color: #00ff9d;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
