/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3a7a5f, #4a9c8a);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #2a6a4f, #3a8c7a);
}

/* Smooth transitions */
html {
    scroll-behavior: smooth;
}

/* Custom glow effect */
.glow {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Responsive typography */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}