body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}


.glass-panel {
    backdrop-filter: blur(24px);
    background: rgba(36, 37, 45, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.iridescent-glow {
    background: linear-gradient(135deg, #a1faff 0%, #ac89ff 40%, #ff59e3 100%);
}

.text-glow {
    text-shadow: 0 0 12px rgba(161, 250, 255, 0.4);
}

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

.liquid-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.input-well:focus-within {
    box-shadow: 0 4px 20px -5px rgba(172, 137, 255, 0.3);
}

.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom right, rgba(161, 250, 255, 0.2), rgba(255, 89, 227, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Transitions for QR reveal */
#qrcode img {
    animation: qrReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes qrReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px) rotate(-5deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0);
        filter: blur(0);
    }
}

.tonal-shift {
    box-shadow: 0 -20px 40px -20px rgba(0, 245, 255, 0.05);
}

.footer-link-glow:hover {
    text-shadow: 0 0 10px rgba(161, 250, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Theme Utilities */
.theme-cyan .bg-theme-blob {
    background-color: rgba(0, 245, 255, 0.1);
}
.theme-pink .bg-theme-blob {
    background-color: rgba(255, 89, 227, 0.1);
}

.footer-cyan::before {
    background: linear-gradient(to right, transparent, rgba(0, 245, 255, 0.2), transparent) !important;
}
.footer-pink::before {
    background: linear-gradient(to right, transparent, rgba(255, 89, 227, 0.2), transparent) !important;
}

#nav-logo, #cursor {
    transition: background-color 0.5s ease, filter 0.5s ease;
}
