@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --color-primary: #20aa93;
    --color-bg-light: #f6f8f8;
    --color-bg-dark: #12201e;
}

body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-pill {
    background: rgba(32, 170, 147, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(32, 170, 147, 0.2);
}

.glass-navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Glow Effects */
.glow-effect {
    background: radial-gradient(circle, rgba(32, 170, 147, 0.4) 0%, rgba(18, 32, 30, 0) 70%);
}

.text-glow {
    text-shadow: 0 0 25px rgba(32, 170, 147, 0.6);
}

.bg-mesh-gradient {
    background-image:
        radial-gradient(at 0% 0%, rgba(32, 170, 147, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(32, 170, 147, 0.1) 0px, transparent 50%);
}

/* Micro-interactions */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #12201e;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #1a8a77;
}

/* Animation Utilities */
@keyframes interact-bloom {
    0% {
        filter: drop-shadow(0 0 0 rgba(32, 170, 147, 0));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(32, 170, 147, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(32, 170, 147, 0));
    }
}

@keyframes gradient-x {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: left center;
    }

    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

.animate-gradient-x {
    animation: gradient-x 3s ease infinite;
}

@keyframes title-reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-title-reveal {
    animation: title-reveal 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.animate-pulse-soft {
    animation: pulse-soft 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}