@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');
        
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #d4d4d8; /* Increased from e5e5e5 to d4d4d8 for consistent brightness */
    overflow-x: hidden;
}

/* Minimal Card Style */
.project-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    border-bottom-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.section-title {
    color: #a1a1aa; /* Increased contrast from #555 */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    scroll-margin-top: 100px; /* Offset for sticky nav */
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #e4e4e7; /* Brighter text for tags */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #3f3f46; }