    @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 --- */

    .banner {
        color: var(--pink);
        text-align: center;
        height: 300px;
        padding: 40px 20px;
        margin-bottom: 20px;
        font-family: var(--font-pixel);
        background-image: url("../images/office.png");
        background-position: center;
        background-size: cover;
    }

    .top-section {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 20px;
        padding-top: 20px;
        border-top: 2px solid var(--purple);
        padding-bottom: 20px;
        border-bottom: 2px solid var(--purple);
    }

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

    .headline h1 {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .text p {
        font-size: 1rem;
        line-height: 1.3;
        margin-top: 10px;
    }

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

    .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 */
    .banner {
        height: 200px;
        padding: 20px 10px;
        background-position: top center;
    }

    .top-section {
        grid-template-columns: 1fr;
        padding-top: 20px;
        margin-bottom: 20px;
    }

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

    .headline h1 {
        font-size: 1.8rem;
        text-align: left;
    }

    .text p {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-top: 15px;
    }

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