/* 
   style.css 
   Extra styles for OldTech Catalog
*/

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090a0f;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Base effects */
.hover-neon {
    transition: all 0.3s ease;
}
.hover-neon:hover {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    border-color: #00f3ff;
}

/* Body pattern */
body {
    background-image: radial-gradient(#111827 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}
