/* --- FONTS & VARIABLES --- */
        @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

        :root {
            --matrix-green: #00ff41;
            --matrix-dark: #0d0208;
            --matrix-dim: #003b00;
            --glass: rgba(0, 20, 0, 0.75);
        }

        /* --- RESET & BASE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: black;
            color: var(--matrix-green);
            font-family: 'B612 Mono', monospace;
            font-size: 1.05rem;
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* --- LAYOUT --- */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        header {
            margin-bottom: 3rem;
            border-bottom: 2px solid var(--matrix-green);
            padding-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 1rem;
        }

        nav {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        nav a {
            white-space: nowrap;
            padding: 0.3rem 0.5rem;
            border: 1px solid transparent;
            transition: 0.2s ease;
        }

        nav a:hover {
            border-bottom: 1px solid var(--matrix-green);
            text-decoration: none;
        }

        h1 {
            font-size: 3rem;
            text-shadow: 0 0 5px var(--matrix-green);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h2 {
            font-size: 2.0rem;
            margin-bottom: 0.95rem;
        }

        p, ul {
            margin-bottom: 1rem;
            color: #cfc;

        }

        

        /* --- GRID --- */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .grid a:hover {
            text-decoration: none;
        }


        /* --- CARDS --- */
        .card-intro {
            background: var(--glass);
            border: 1px solid var(--matrix-dim);
            padding: 1.5rem;
            transition: 0.3s ease;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
            margin-bottom: 2rem;
        }
        .card-intro h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .card-intro p {
            margin-bottom: 1rem;
            color: #cfc;
        }
        .card-intro a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .card-intro a:hover {
            text-decoration: none;
        }

        .card-intro:hover {
            border-color: var(--matrix-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
            transform: translateY(-2px);
            cursor: pointer;
        }

        .card {
            background: var(--glass);
            border: 1px solid var(--matrix-dim);
            padding: 1.5rem;
            transition: 0.3s ease;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
        }

        .card:hover {
            border-color: var(--matrix-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
            transform: translateY(-2px);
            cursor: pointer;

        }

        .card-meta {
            font-size: 0.9rem;
            color: #5c5;
            margin-bottom: 0.5rem;
            border-bottom: 1px dashed #003b00;
            padding-bottom: 0.2rem;
            display: flex;
            justify-content: space-between;
        }

        .card h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .card p {
            margin-bottom: 1rem;
            color: #cfc;
        }

        .tag {
            background: var(--matrix-dim);
            padding: 0.2rem 0.5rem;
            font-size: 0.8rem;
            border: 1px solid var(--matrix-green);
        }

        /* --- FOOTER --- */
        footer {
            margin-top: 4rem;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
            border-top: 1px solid var(--matrix-dim);
            padding-top: 1rem;
        }

        a { color: var(--matrix-green); text-decoration: none; }
        a:hover { text-decoration: underline; }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }

            header {
                flex-direction: column;
                align-items: flex-start;
            }

            .branding h1 {
                font-size: 2rem;
            }

            nav {
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
            }

            nav a {
                display: block;
                padding: 0.5rem 0;
                border-bottom: 1px solid var(--matrix-dim);
            }

            .grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            .container {
                padding: 1rem;
            }

            .branding div {
                font-size: 0.8rem;
            }

            nav a {
                font-size: 0.9rem;
            }

            .card {
                padding: 1rem;
            }

            .card h2 {
                font-size: 1.4rem;
            }
        }

        /* --- TABLE STYLING --- */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(0, 20, 0, 0.5);
            border: 1px solid var(--matrix-dim);
        }

        table thead {
            background: rgba(0, 255, 65, 0.08);
            border-bottom: 2px solid var(--matrix-green);
        }

        table th {
            padding: 0.75rem;
            text-align: left;
            color: var(--matrix-green);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        table td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--matrix-dim);
            font-size: 0.8rem;
            color: #cfefcf;
            margin: 1rem;
        }

        table tbody tr:hover {
            background: rgba(0, 255, 65, 0.04);
        }

        table tbody tr:last-child td {
            border-bottom: none;
        }
