        /* CORE VARIABLES */
        :root {
            --neon-cyan: #00ffff;
            --neon-pink: #ff4da6;
            --terminal-bg: #000;
            --panel-bg: rgba(0, 255, 255, 0.05);
            --font-mono: 'Consolas', 'Courier New', Courier, monospace;
        }

        /* GLOBAL STYLES */
        body, html {
            margin: 0; padding: 0;
            background-color: var(--terminal-bg);
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            min-height: 100vh;
        }

        .scanlines {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
            pointer-events: none; z-index: 999;
        }

        .site-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* HEADER */
        header {
            border-bottom: 2px solid var(--neon-cyan);
            margin-bottom: 30px;
            padding-bottom: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
        }

        .sys-info {
            font-size: 0.75em;
            color: rgba(0, 255, 255, 0.5);
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 15px; flex-wrap: wrap; }
        
        /* HOVER ANIMATION LOGIC */
        nav a {
            color: var(--neon-cyan);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            padding: 5px 10px;
            transition: all 0.2s ease;
            text-transform: uppercase;
            display: inline-block;
        }
        
        nav a::before {
            content: "";
            margin-right: 0px;
            opacity: 0;
            transition: all 0.2s ease;
        }
        
        nav a:hover::before, nav a.active::before {
            content: "> ";
            opacity: 1;
            margin-right: 5px;
        }

        nav a:hover, nav a.active {
            background-color: var(--neon-cyan);
            color: #000;
            box-shadow: 0 0 10px var(--neon-cyan);
        }

/* MAGAZINE GRID */
.content-grid { 
    display: grid; 
    grid-template-columns: 1fr 2fr 1fr; 
    gap: 25px; 
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsiveness */
@media (max-width: 1000px) { 
    .content-grid { grid-template-columns: 1fr 1fr; } 
    /* This makes the right column span both rows or stay put */
    .right-column { grid-column: span 1; } 
}

@media (max-width: 700px) { 
    .content-grid { grid-template-columns: 1fr; } 
}

        /* MODULES */
        .module {
            background: var(--panel-bg);
            border: 1px solid rgba(0,255,255,0.3);
            border-radius: 3px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .module-title {
            font-size: 1em;
            border-bottom: 1px dashed var(--neon-cyan);
            padding-bottom: 5px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--neon-cyan);
            text-shadow: 0 0 5px var(--neon-cyan);
        }

        /* GLITCH & PINK STYLES */
        .pink-border { border-color: var(--neon-pink) !important; }
        .pink-title { color: var(--neon-pink) !important; text-shadow: 0 0 5px var(--neon-pink) !important; border-color: var(--neon-pink) !important; }
        .glitch-text { color: var(--neon-pink); text-shadow: 0 0 8px var(--neon-pink); }

        /* CONTENT TEXT */
        .content-text { color: #fff; line-height: 1.6; font-size: 0.95em; }
        .content-text h2 { margin-top: 0; color: #fff; text-shadow: 0 0 10px var(--neon-cyan); }

        /* BUTTONS */
        .uplink-btn {
            display: block;
            border: 1px solid var(--neon-cyan);
            padding: 10px;
            text-align: center;
            text-decoration: none;
            color: var(--neon-cyan);
            font-weight: bold;
            background: rgba(0,255,255,0.1);
            margin-bottom: 10px;
            transition: 0.3s;
        }
        .uplink-btn:hover { background: var(--neon-cyan); color: #000; box-shadow: 0 0 10px var(--neon-cyan); }

        footer {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
        }

/* Style for images inside posts */
.post-visual {
    border: 1px solid var(--neon-cyan);
    padding: 8px;
    background: rgba(0, 255, 255, 0.05); /* Very faint glow */
    margin: 25px 0;
    text-align: center;
}

.post-visual img {
    max-width: 100%;
    display: block;
    border: 1px solid #111;
}

.post-caption {
    font-size: 0.7em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-align: center;
}

/* Container for the actual article text */
.post-container {
    max-width: 800px; /* This prevents the text from stretching too wide */
    margin: 0 auto;   /* Centers the container */
    padding: 20px;
}

/* Style for the text paragraphs */
.post-content p {
    margin-bottom: 20px; /* Creates the "paragraph-y" feel */
    line-height: 1.6;    /* Makes it easier to read */
    color: #ccc;         /* Slightly softer than pure white */
}

/* Ensure images fit within the container */
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 1px solid var(--neon-cyan);
}

.post-body {
    max-width: 750px; /* Limits the width so it doesn't sprawl */
    margin: 0 auto;   /* Centers the text block */
    padding: 20px;    /* Adds the breathing room inside the module */
}

.post-body p {
    margin-bottom: 20px; /* This creates the paragraph spacing */
    line-height: 1.8;    /* Increases readability */
}

.post-visual {
    margin: 30px 0;
    text-align: center;
}

.post-visual img {
    max-width: 100%; /* Prevents image from being too big */
    border: 1px solid var(--neon-cyan);
}

/* Footer Container */
.footer-container {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    font-size: 0.85em; /* Increased size here */
    color: rgba(0, 255, 255, 0.6); /* Made it slightly brighter */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-container p { margin: 5px 0; }

.footer-container a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.footer-container a:hover {
    color: var(--neon-pink);
    border-bottom: 1px solid var(--neon-pink); 
}
