/* SYSTEM FONT STACK — FAST + GDPR SAFE */
body {
    background-color: #111;
    color: #9a9a9a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-transform: lowercase;
}
.container {
    max-width: 800px;
    width: 100%;
}
h1 {
    font-size: 2.5em;
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 0;
    letter-spacing: 3px;
    line-height: 1.2;
}
.name-wrap {
    white-space: nowrap;
}
.subtitle {
    font-size: 1.2em;
    color: #c0c0c0;
    margin-bottom: 35px;
    font-weight: 300;
}
.credits-intro {
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 0.5em;
    text-align: left;
    color: #b5b5b5;
}
.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
@media (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
    }
}
.project {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.project h2 {
    font-size: 1.12em;
    margin-top: 0;
    margin-bottom: 4px;
    font-weight: 400;
    color: #f0f0f0;
}
.project p {
    font-size: 0.9em;
    margin: 0;
    color: #aaa;
    line-height: 1.5;
}
.project p:last-of-type {
    margin-top: 0.5em;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
}
.links {
    display: flex;
    gap: 20px;
}
.email b {
    display: none;
}
a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1em;
    font-weight: 300;
}
a:hover {
    color: #f0f0f0;
}
a::after {
    content: '.';
    margin-left: 0;
}
.italic {
    font-style: italic;
}