/* Pixel font import */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fef8f0;
    /* Paper texture effect */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 200, 124, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 160, 100, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

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

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #ff8c42;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 2px 2px 0px rgba(255, 140, 66, 0.1);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.intro {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    position: relative;
}

li::marker {
    content: "▸ ";
    color: #ff8c42;
}

.contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(255, 140, 66, 0.3);
    font-size: 1rem;
}

.contact span {
    margin: 0 0.5rem;
    color: #ff8c42;
}

a {
    color: #ff6b35;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff8c42;
    transition: width 0.3s ease;
}

a:hover {
    color: #ff8c42;
}

a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 1.1rem;
    }

    p, .intro {
        font-size: 0.95rem;
    }

    .contact {
        font-size: 0.9rem;
    }
}

/* Subtle animation on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.6s ease-out;
}
