body { 
    font-family: 'Inter', sans-serif; 
    background-color: #000000; 
    color: #a1a1aa; 
    scroll-behavior: smooth; 
}

.mono { 
    font-family: 'JetBrains Mono', monospace; 
}

.text-white { 
    color: #ffffff; 
}

.border-zinc {
    border-color: #18181b; 
}

.project-card { 
    border: 1px solid #18181b; 
    background: #050505; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.project-card:hover { 
    border-color: #f4f4f5; 
    transform: translateY(-4px); 
}

.btn-outline { 
    border: 1px solid #27272a; 
    padding: 0.75rem 1.5rem; 
    transition: all 0.2s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
}

.btn-outline:hover {
    background: #ffffff; 
    color: #000000; 
    border-color: #ffffff; 
}

@keyframes marquee {
    0% { 
        transform: translateX(50%); 
    } 
    100% {
        transform: translateX(-100%); 
    } 
}

.animate-marquee {
    display: inline-block; 
    animation: marquee 25s linear infinite; 
}

.section-title {
    font-size: 10px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.4em; 
    color: #52525b; 
    margin-bottom: 3rem; 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.section-title::after {
    content: ""; 
    height: 1px; 
    flex-grow: 1; 
    background: #18181b; 
}