/* Custom Animations */
@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; box-shadow: 0 0 20px #22d3ee; }
}

.vip-glow {
    animation: pulse-glow 2s infinite;
}

/* Glassmorphism Effect for Navbar or Cards */
.glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0c10;
}
::-webkit-scrollbar-thumb {
    background: #45a29e;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #66fcf1;
}

/* Neon Cursor (Optional) */
#cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #66fcf1;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px #66fcf1;
}