html {
scroll-behavior: smooth;
}

body {
overflow-x: hidden;
}

.glass {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.glass-card {
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-mobile {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-fade-in-up {
animation: fadeInUp 0.8s ease-out forwards;
opacity: 0;
}

.delay-100 {
animation-delay: 100ms;
}

.delay-200 {
animation-delay: 200ms;
}

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
background: #388E3C;
}