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

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

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

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

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a7173f, #d97706);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #cb2354, #f59e0b);
}

/* Selection color */
::selection {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* Focus styles */
button:focus, input:focus, textarea:focus {
    outline: none;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}
