/* Glassmorphism Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.animate-pulse-slow {
    animation: pulse-soft 4s infinite ease-in-out;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Bubbles Animation */
.bubble {
    position: absolute;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}

@keyframes rise {
    0% {
        bottom: -20px;
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 110%;
        transform: translateX(20px);
        opacity: 0;
    }
}

/* Custom Utilities */
.font-script {
    font-family: 'Great Vibes', cursive;
}

.lux-button {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lux-button:hover::after {
    opacity: 1;
}

.lux-button:hover {
    box-shadow: 0 0 40px rgba(64, 224, 208, 0.25);
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Scrollbar Hide */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}