/* Base Reset */
::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; background-color: #050505; }

/* Smooth Scroll Animations (Bug-free alternative) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Blur reveal */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.98);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Navbar State */
.nav-transparent {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.nav-scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.8);
}

/* Animated Gold Button (Inspired by Lumina & Finex) */
.btn-gold {
    position: relative;
    background: linear-gradient(to bottom, #D4AF37, #B5942F);
    z-index: 1;
    overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, #E8C861, #D4AF37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-gold:hover::before { opacity: 1; }

/* Infinite Carousel */
@keyframes scroll-x {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.animate-scroll {
    animation: scroll-x 15s linear infinite;
    display: flex;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.animate-scroll:hover {
    animation-play-state: paused;
}

/* Glassmorphism Panel (Used in forms and modals) */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Base Green Button */
.btn-green {
    background: #25D366;
    color: #fff;
}
.btn-green:hover {
    background: #20bd5a;
}
