/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #111827;
    line-height: 1.5;
}

/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom components */
.glass-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}

/* Utility classes */
.text-balance {
    text-wrap: balance;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #28C76F;
    border-radius: 10px;
}

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