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 */
.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);
}

/* Custom Scrollbar (Global) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f13;
}
::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 4px;
}

/* Extra: class-based scrollbar (used in search results) */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #0f0f13;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ff4655;
    border-radius: 4px;
}

/* Hero Background */
.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* 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;
}
