<style>
    :root {
        --bg: #121212;
        --text: #e0e0e0;
        --accent: #00ff41; /* Terminal green */
    }
    body {
        margin: 0;
        padding: 20px;
        background: var(--bg);
        color: var(--text);
        font-family: 'Courier New', Courier, monospace; /* C++ feel */
        line-height: 1.6;
    }
    .container {
        max-width: 600px;
        margin: 0 auto;
    }
    .tag {
        color: var(--accent);
        font-weight: bold;
    }
    h1 { font-size: 1.5rem; border-bottom: 1px solid #333; padding-bottom: 10px; }
    /* Mobile-specific tweak */
    @media (max-width: 480px) {
        body { padding: 15px; font-size: 14px; }
    }
</style>
