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

html, body {
    min-height: 100vh;
    background-color: #111111;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #eeeeee;
    line-height: 1.6;
    padding: 2rem;
}

main {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10vh;
}

header {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.brand-suffix {
    font-weight: 300;
}

p {
    color: #aaaaaa;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

li:nth-child(1) { animation-delay: 0.3s; }
li:nth-child(2) { animation-delay: 0.4s; }
li:nth-child(3) { animation-delay: 0.5s; }

.project-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.project-title {
    font-weight: 500;
}

.project-icon {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}


.project-desc {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.project-links {
    font-size: 0.9rem;
    color: #666666;
}

a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #555555;
    transition: text-decoration-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), text-underline-offset 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    text-decoration-color: #ffffff;
    text-underline-offset: 5px;
}

footer {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

footer p {
    font-style: italic;
    font-size: 0.9rem;
    color: #888888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    header,
    h2,
    li,
    footer {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    a {
        transition: none !important;
    }
}
