/* Custom variables and general resets */
body {
    background-color: #0B1320;
    color: #FFFFFF;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: rgba(11, 19, 32, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #D4AF37, #FDE08B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Marquee Animation */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    min-width: 200%;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Custom range slider styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #4B5563;
    border-radius: 2px;
}
input[type=range]:focus {
    outline: none;
}

/* Scroll Animations */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
