    @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto Mono', monospace;
        background: white;
        color: black;
        overflow-x: hidden;
    }

    .welcome-section {
        height: 200vh;
        position: relative;
    }

    .welcome-content {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }


    .welcome-text {
        max-width: 90%;
        height: auto;
        transform-origin: center;
        transition: transform 0.1s ease-out;
        will-change: transform, opacity;
    }

    .scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: black;
    opacity: 0;
    animation: fadeInHint 1s ease 3s forwards;
    pointer-events: none;
    letter-spacing: 0.05em;
}

@keyframes fadeInHint {
    to {
        opacity: 1;
    }
}

    .about-section {
        min-height: 100vh;
        padding: 8rem 4rem 4rem;
        max-width: 920px;
        margin: 0 auto;
    }

    .about-section h1 {
        margin-bottom: 3rem;
    }

    .section-title {
        max-width: 400px;
        height: auto;
    }

    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
    }

    .about-section .highlight {
        color: red;
    }

    .page-content {
        min-height: 100vh;
        padding: 8rem 4rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-intro {
        max-width: 920px;
        margin: 0 auto 6rem;
    }

    .page-intro h1 {
        margin-bottom: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #1a1a1a;
    }

    .projects {
        display: flex;
        flex-direction: column;
        gap: 8rem;
    }

    .project {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .project:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }

    .project:nth-child(even) .project-cover {
        order: 2;
    }

    .project:nth-child(even) .project-info {
        order: 1;
    }


    .project-info h2 {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .project-description p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .details-btn {
        background: none;
        border: none;
        color: black;
        font-family: 'Roboto Mono', monospace;
        font-size: 0.9rem;
        cursor: pointer;
        padding: 0;
        margin-top: 1.5rem;
        text-transform: lowercase;
        transition: color 0.3s ease;
    }

    .details-btn:hover {
        color: red;
    }

    #mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5vh 5vw;
}

#mobile-warning h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 400;
    margin-bottom: 2vh;
    letter-spacing: 1px;
}

#mobile-warning p {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
    max-width: 90vw;
}

@media (max-width: 768px) {
    #mobile-warning {
        display: flex !important;
    }

    body.experience #container,
    body.experience #loading {
        display: none !important;
    }
}