    @font-face {
        font-family: 'Alpha Lyrae';
        src: url('/fonts/AlphaLyrae.woff2') format('woff2'),
            url('/fonts/AlphaLyrae.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'That That New Pixel';
        src: url('/fonts/ThatThatNewPixel.woff2') format('woff2'),
            url('/fonts/ThatThatNewPixel.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
    
    :root {
        --pink: #F379FF;
        --purple: #14003B;
        --font-main: 'Alpha Lyrae', sans-serif;
        --font-pixel: 'That That New Pixel', monospace;
        --font-logo: 'Jacquard 12', system-ui;
    }

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

    html, body {
        height: 100%;
    }

    body {
        background-color: var(--pink);
        color: var(--purple);
        font-family: var(--font-main);
        line-height: 1.2;
        font-feature-settings: "calt" 0; 
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    h1, h2, h3, h4 {
        font-feature-settings: "calt" 1;
    }

    h1 a, h2 a, h3 a, h4 a, li a, p a, article a, a {
        color: var(--purple);
        text-decoration: none;
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
    }

    a:hover, button:hover {
        opacity: 0.8;
        transition: opacity 0.2s ease-in-out;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        flex: 1 0 auto;
        width: 100%;
    }

    img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        filter: url(#gradient-map);
    }

    /* --- HEADER --- */
    header {
        text-align: center;
        margin-bottom: 20px;
    }

    .site-title {
        font-family: var(--font-logo);
        font-size: 5.5rem;
        margin-bottom: 10px;
        font-weight: normal;
        font-feature-settings: normal; 
    }

    .nav-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid var(--purple);
        border-bottom: 2px solid var(--purple);
        padding: 5px 0;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
    }

    /* --- TOP SECTION --- */

    .page-title {
        font-family: var(--font-pixel);
        font-size: 3.5rem;
        margin-bottom: 10px;
        font-weight: normal;
        font-feature-settings: normal; 
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .archive-list {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        list-style: none;
    }

    .archive-item {
        border-bottom: 1px solid var(--purple);
        padding: 15px 0;
    }

    .archive-text h2 {
        font-size: 1.4rem;
        line-height: 1.1;
        margin: 0;
    }

    .archive-text h2 a {
        text-decoration: none;
        color: var(--purple);
    }

    .archive-date {
        font-size: 0.7rem;
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: var(--purple);
    }

    .search-box input {
        width: 100%;
        padding: 15px;
        background: transparent;
        border: 3px solid var(--purple);
        font-family: var(--font-main);
        font-size: 1.5rem;
        color: var(--purple);
        outline: none;
        font-feature-settings: "calt" 0;
        text-align: center;
    }


    .search-box input::placeholder {
        color: var(--purple);
        opacity: 0.8;
    }

    #results-count {
        text-align: center;
        font-size: 0.7rem; 
        margin-top: 10px; 
        font-weight: bold;
    }

    /* --- FOOTER --- */
    footer {
        background-color: var(--purple);
        color: var(--pink);
        padding: 40px 20px 20px;
        flex-shrink: 0;
    }

    .footer-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-family: var(--font-logo);
        font-size: 3rem;
        font-feature-settings: normal;
        color: var(--pink)
    }

    .footer-sub {
        font-size: 0.8rem;
        margin-top: 5px;
    }

    .footer-sub span {
        font-family: var(--font-logo);
        font-size: 1.5rem;
        font-feature-settings: normal;
    }

    .footer-links {
        display: flex;
        gap: 30px;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--pink)
    }

    .about-link, .article-link, .prints-link, .wasteof-link, .sean-link {
        color: var(--pink)
    }

    .footer-bottom {
        border-top: 1px solid var(--pink);
        padding-top: 15px;
        font-size: 0.65rem;
        opacity: 0.7;
    }

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .site-title {
        font-size: 3rem; 
    }

    /* NAVIGATION */
    .nav-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 0;
    }

    .nav-bar #extra {
        display: none;
    }

    /* TOP SECTION */
    .page-title {
        font-size: 3.1rem;
        text-align: center;
        margin-top: 20px;
    }

    .subtitle {
        text-align: center;
        font-size: 0.7rem;
        padding: 0 10px;
    }

    .search-box input {
        font-size: 1.1rem;
        padding: 12px;
        border-width: 2px;
    }

    .archive-item {
        padding: 20px 0;
    }

    .archive-text h2 {
        font-size: 1.2rem;
    }

    #results-count {
        text-align: center;
        font-size: 0.7rem;
    }

    /* FOOTER */
    footer {
        padding: 20px;
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .footer-logo {
        font-size: 2.2rem;
        line-height: 1;
    }

    .footer-bottom {
        font-size: 0.75rem;
        opacity: 0.9;
        line-height: 1.4;
    }
}