body {
    min-height: max(884px, 100dvh);
}

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

.geometric-bg {
    background-color: #f8fafc;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 101, 101, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
}

.line-accent {
    background: linear-gradient(90deg, transparent, #006565 50%, transparent);
    height: 1px;
    width: 100%;
    opacity: 0.3;
}

/* Premium Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 101, 101, 0.08);
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Dynamic Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

@keyframes progress-stripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 8s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Typography Enhancements */
.text-gradient {
    background: linear-gradient(135deg, #006565 0%, #0d9488 50%, #476083 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-hover {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glow-hover:hover {
    box-shadow: 0 15px 35px rgba(0, 101, 101, 0.15);
    transform: translateY(-5px);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem !important;
        border-radius: 1.5rem !important;
    }
}
