/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a; 
}
 
::-webkit-scrollbar-thumb {
    background: #D4AF37; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5952f; 
}

html {
    scroll-behavior: smooth;
}

/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glow Effect */
.shadow-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Modal Animation */
.modal-enter {
    opacity: 0;
    transform: scale(0.9);
}
.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
}
.modal-exit {
    opacity: 1;
    transform: scale(1);
}
.modal-exit-active {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 200ms ease-in, transform 200ms ease-in;
}
