/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #002b38;
}

::-webkit-scrollbar-thumb {
    background: #004459;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #11C983;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(0, 68, 89, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon Text Effect */
.neon-text-gold {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Card Hover Effect */
.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(17, 201, 131, 0.4);
}

/* Hide Scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.5s ease-out;
}