html {
    scroll-behavior: smooth;
}
.glass-card {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.glass-card:hover {
    border-color: #00FFC2;
    transform: translateY(-4px);
}
.text-glow:hover {
    text-shadow: 0 0 10px rgba(0, 255, 194, 0.5);
}
.mint-glow-bg {
    background: radial-gradient(circle at center, rgba(0, 255, 194, 0.05) 0%, transparent 70%);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0B0E14; }
::-webkit-scrollbar-thumb { background: #1D2022; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #00FFC2; }

#mobileMenu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobileMenu.is-open {
    transform: translateX(0);
}
