@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, hsla(210, 50%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(280, 50%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(340, 50%, 95%, 1) 0, transparent 50%);
    background-attachment: fixed;
    color: #1e293b;
    min-height: 100vh;
}

/* Glassmorphism utility classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transform: translateZ(0); /* Fixes Safari edge artifacts */
}

.glass-panel {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transform: translateZ(0); /* Fixes Safari edge artifacts */
}

/* Progress bar animation */
@keyframes fillProgress {
    from { width: 0; }
}

.progress-fill {
    animation: fillProgress 1s ease-out forwards;
    background: linear-gradient(90deg, #fcd34d, #f59e0b, #d97706);
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.8);
}
