* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-weight: 400;
}

.container {
    max-width: 600px;
    width: 100%;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.1rem;
    color: #808080;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.projects {
    margin-bottom: 4rem;
}

h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #606060;
}

.project {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.project:last-child {
    border-bottom: none;
}

h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.project p {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.project-stats {
    font-size: 0.9rem;
    color: #606060;
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #404040;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.project-links a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

footer {
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

footer a {
    color: #808080;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    body {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    header {
        margin-bottom: 3rem;
    }
    
    .projects {
        margin-bottom: 3rem;
    }
}