@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --primary: #f97316;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

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

.hero-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-item:hover {
    transform: translateX(10px);
}

.vote-btn {
    transition: all 0.2s;
}

.vote-btn:active {
    transform: scale(0.9);
}

.vote-btn.voted {
    color: var(--primary);
}

/* Category card interactions */
.category-card:active {
    transform: scale(0.98);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}