* {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}

.banana-button {
    background: linear-gradient(135deg, #FFE135 0%, #FFA500 100%);
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.banana-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFA500 0%, #FFE135 100%);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banana-bounce {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banana-spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.comparison-slider {
    position: relative;
    overflow: hidden;
}

.comparison-slider img {
    width: 100%;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

button {
    transition: all 0.2s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFE135 0%, #FFA500 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFE135 100%);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}