* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #222;
}

h1 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.projects-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 2rem;
}

.project-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.project-card:hover {
    background: #111;
    border-color: #2a2a2a;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.project-desc {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.project-year {
    color: #555;
    font-family: 'Monaco', 'Consolas', monospace;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
}

.project-tag {
    background: #1a1a1a;
    color: #888;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
}

.project-link {
    display: inline-block;
    color: #888;
    padding: 0.3rem 0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.project-link:hover {
    color: #aaa;
    border-bottom-color: #444;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    color: #444;
    font-size: 0.8rem;
    border-top: 1px solid #1a1a1a;
}

.location-time {
    margin-top: 1rem;
    font-family: 'Monaco', 'Consolas', monospace;
    color: #555;
    line-height: 1.4;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    body {
        padding: 1rem;
    }
}