    @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;
    }

    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;
    }

    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 {
        opacity: 0.8;
        transition: opacity 0.2s ease-in-out;
    }

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

    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 --- */
    .top-section {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--purple);
    }

    .story {
        flex-direction: flex;
        gap: 15px;
        padding-right: 20px;
        border-right: 1px solid var(--purple);
    }
    
    .archive-list {
        display: flex;
        flex-direction: column;
    }

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

    .archive-link {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 20px;
        text-decoration: none;
        color: inherit;
        transition: opacity 0.3s ease-in-out;
    }

    .archive-link:hover {
        opacity: 0.7;
    }

    .archive-img img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

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

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

    .pagination {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        font-weight: bold;
        font-size: 0.9rem;
    }

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

    .pagination .disabled {
    opacity: 0.3;
    pointer-events: none;
    text-decoration: none;
    color: var(--purple);
    }

    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: sticky;
        height: fit-content;
        top: 20px
    }

    .side-box img {
        filter: none;
    }

    .contribute {
        border-top: 2px solid var(--purple);
        padding-top: 10px;
    }

    .contribute h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .contribute p {
        font-size: 0.85rem;
        padding: 5px 0;
    }

    .contribute li:last-child {
        border-bottom: none;
    }

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

    .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 */
    .top-section {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .story {
        padding-right: 0;
        border-right: none;
    }

    .archive-link {
        grid-template-columns: 100px 1fr; 
        gap: 15px;
    }

    .archive-img img {
        height: 100px;
    }

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

    .pagination {
        font-size: 0.8rem;
        padding: 20px 5px 0px 5px;
    }

    .page-info {
        padding: 0 10px;
        text-align: center;
    }

    .sidebar {
        position: static;
        border-top: 2px solid var(--purple);
        padding-top: 20px;
    }

    /* 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;
    }
}