<!DOCTYPE html>
<html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NEON // GRID - Cyberpunk Blog</title>
    <style>
        /* --- CYBERPUNK AESTHETICS --- */
        body {
            background-color: #050505;
            /* Creates a futuristic glowing wireframe grid */
            background-image: 
                linear-gradient(transparent 95%, rgba(0, 255, 255, 0.2) 95%), 
                linear-gradient(90deg, transparent 95%, rgba(0, 255, 255, 0.2) 95%);
            background-size: 30px 30px;
            color: #00ffff; /* Neon Cyan */
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 20px;
        }

        /* Main Container with a glowing border */
        .system-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.85); /* Slightly transparent black */
            border: 2px solid #ff00ff; /* Neon Magenta */
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.2);
            padding: 20px;
            /* Angled corners for that sci-fi UI look */
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
        }

        /* Header Area */
        header {
            border-bottom: 2px dashed #00ffff;
            padding-bottom: 20px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        h1 {
            color: #fcee0a; /* Cyberpunk Yellow */
            font-size: 2.5em;
            margin: 0;
            text-transform: uppercase;
            text-shadow: 2px 2px 0px #ff0000;
            letter-spacing: -2px;
        }

        .system-status {
            color: #00ff00; /* Hacker Green */
            font-size: 0.9em;
            text-shadow: 0 0 5px #00ff00;
        }

        /* Navigation Buttons */
        nav {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .nav-btn {
            background-color: #000;
            color: #00ffff;
            border: 1px solid #00ffff;
            padding: 8px 15px;
            font-family: inherit;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.2s;
        }

        .nav-btn:hover {
            background-color: #00ffff;
            color: #000;
            box-shadow: 0 0 10px #00ffff;
        }

        /* Split Layout */
        .layout-grid {
            display: flex;
            gap: 20px;
        }

        /* Sidebar */
        .sidebar {
            width: 250px;
            flex-shrink: 0;
        }

        .widget {
            border: 1px solid #ff00ff;
            padding: 15px;
            margin-bottom: 20px;
            background: #111;
        }

        .widget h3 {
            color: #ff00ff;
            margin-top: 0;
            border-bottom: 1px solid #333;
            padding-bottom: 5px;
            text-transform: uppercase;
            font-size: 1em;
        }

        .widget ul {
            list-style-type: square;
            padding-left: 15px;
            color: #fcee0a;
        }

        .widget a {
            color: #c0c0c0;
            text-decoration: none;
        }

        .widget a:hover {
            color: #fff;
            background: #ff00ff;
        }

        /* Main Content / Terminal Screen */
        .feed {
            flex-grow: 1;
        }

        .post {
            border-left: 4px solid #fcee0a;
            padding-left: 15px;
            margin-bottom: 40px;
            background: linear-gradient(90deg, rgba(252, 238, 10, 0.1) 0%, transparent 100%);
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            margin-bottom: 15px;
            padding-bottom: 5px;
        }

        .post-title {
            color: #fff;
            font-size: 1.5em;
            margin: 0;
            text-transform: uppercase;
        }

        .post-date {
            color: #ff00ff;
            font-size: 0.8em;
        }

        .post-body {
            color: #e0e0e0;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            margin-top: 10px;
            color: #fcee0a;
            text-decoration: none;
            border-bottom: 1px dotted #fcee0a;
        }
        
        .read-more:hover {
            background: #fcee0a;
            color: #000;
        }

        /* Footer */
        footer {
            margin-top: 40px;
            border-top: 2px dashed #00ffff;
            padding-top: 15px;
            text-align: center;
            font-size: 0.8em;
            color: #555;
        }

        /* Mobile Adjustments */
        @media (max-width: 700px) {
            .layout-grid { flex-direction: column; }
            .sidebar { width: auto; }
            header { flex-direction: column; align-items: flex-start; gap: 10px; }
        }
    </style>
</head>
<body>

    <div class="system-container">
        
        <header>
            <h1>NEON // GRID</h1>
            <div class="system-status">SYS.OP: ONLINE_</div>
        </header>

        <nav>
            <a href="#" class="nav-btn">Data_Log</a>
            <a href="#" class="nav-btn">Archives</a>
            <a href="#" class="nav-btn">Comms</a>
        </nav>

        <div class="layout-grid">
            
            <main class="feed">
                <article class="post">
                    <div class="post-header">
                        <h2 class="post-title">New Cyber-Deck Acquired</h2>
                        <span class="post-date">2099.10.24</span>
                    </div>
                    <div class="post-body">
                        <p>Just swapped out my old rig for a custom build. The processing power is unreal. I'm currently running diagnostics and compiling the latest net-runner tools. The neon chassis really ties the whole room together.</p>
                        <a href="#" class="read-more">Decrypt File &gt;&gt;</a>
                    </div>
                </article>

                <article class="post">
                    <div class="post-header">
                        <h2 class="post-title">Late Night Coding Session</h2>
                        <span class="post-date">2099.10.21</span>
                    </div>
                    <div class="post-body">
                        <p>Nothing beats the hum of the cooling fans at 3 AM. I've been writing a new script to parse incoming data streams. Coffee intake is currently at critical levels, but the code is compiling flawlessly.</p>
                        <a href="#" class="read-more">Decrypt File &gt;&gt;</a>
                    </div>
                </article>
            </main>

            <aside class="sidebar">
                <div class="widget">
                    <h3>// Directory</h3>
                    <ul>
                        <li><a href="#">Neural_Net</a></li>
                        <li><a href="#">Hardware_Specs</a></li>
                        <li><a href="#">Encrypted_Logs</a></li>
                        <li><a href="#">Webrings</a></li>
                    </ul>
                </div>

                <div class="widget">
                    <h3>// Transmissions</h3>
                    <p style="font-size: 0.9em; color: #aaa;">Leave a message on the secure channel.</p>
                    <a href="#" class="nav-btn" style="display: block; text-align: center;">Sign Guestbook</a>
                </div>
            </aside>

        </div>

        <footer>
            <a href="https://sweetembed.neocities.org/" target="_blank" style="display: inline-flex; width: 88px; height: 31px; text-decoration: none; border: 1px solid #ff00ff; box-sizing: border-box; background: #000; box-shadow: 2px 2px 0px #00ffff; overflow: hidden; transition: transform 0.1s;" onmouseover="this.style.transform='translateY(-2px)'" onmouseout="this.style.transform='translateY(0)'" title="Get themes at sweetEMBED!">
    <span style="background: #00ffff; height: 100%; width: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0;">
        ✨
    </span>
    <span style="display: flex; flex-direction: column; justify-content: center; padding-left: 4px; font-family: 'Courier New', Courier, monospace; font-size: 8px; font-weight: bold; line-height: 1.1;">
        <span style="color: #ff00ff;">sweetEMBED</span>
        <span style="color: #00ffff;">TEMPLATES</span>
    </span>
</a>
        </footer>

    </div>


<img id="sweetembed-tracking-pixel" src="https://sweetembed.neocities.org/se_spacer.png" alt="" width="1" height="1" style="position: absolute; visibility: hidden;"></body></html>