/* Base styles */
body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Project card hover effects */
.project-card:hover .project-description {
    opacity: 1;
    transform: translateY(0);
}

.project-card .project-description {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 5px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
