@layer utilities {
    .shadow-glow-gold {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
    
    .shadow-glow-red {
        box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
    }
}

/* Custom Scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505; 
}

::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; 
}

/* Modal Animations */
.modal-open {
    display: block !important;
}

.modal-fade-in {
    opacity: 1 !important;
}

.modal-scale-in {
    transform: scale(1) !important;
}

/* Smooth Image Loading */
.image-loading {
    filter: blur(10px);
    transition: filter 0.5s ease-out;
}

.image-loaded {
    filter: blur(0);
}
