/* ==========================================
   PixelGen Lab - Main Styles
   ========================================== */

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

.pixel-font {
    font-family: 'Press Start 2P', cursive;
}

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

::-webkit-scrollbar-track {
    background: #1e293b;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Animation classes */
.animate-in {
    animation: animateIn 0.3s ease-out forwards;
}

@keyframes animateIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade in animation for modals */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Zoom in animation */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

.zoom-in {
    animation: zoomIn 0.3s ease-out forwards;
}

/* Scrollbar thin variant */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Shadow utilities */
.shadow-3xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5);
}
