/* Specific Writeup Styles */
        .writeup-container {
            max-width: 1000px;
            margin: 100px auto;
            padding: 20px;
        }
        
        .writeup-header {
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 4px ridge var(--accent);
            padding-bottom: 2rem;
        }

        .phase-title {
            font-family: 'Press Start 2P', cursive;
            color: var(--gold);
            font-size: 1.5rem;
            margin: 3rem 0 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 2px dashed #555;
            padding-bottom: 10px;
        }

        .writeup-text {
            font-family: 'VT323', monospace;
            font-size: 1.3rem;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .highlight {
            color: var(--gold);
            background: rgba(255, 204, 0, 0.1);
            padding: 0 5px;
        }

        /* Interactive Code Blocks */
        .code-container {
            background: #0a0a0a;
            border: 4px inset #444;
            border-radius: 4px;
            margin: 1.5rem 0;
            overflow: hidden;
            position: relative;
        }

        .code-header {
            background: #222;
            padding: 5px 15px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.6rem;
            color: #888;
            border-bottom: 2px solid #444;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copy-btn {
            background: none;
            border: 1px solid #555;
            color: var(--accent);
            cursor: pointer;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.5rem;
            padding: 5px;
            transition: 0.2s;
        }

        .copy-btn:hover { background: var(--accent); color: #000; }

        pre {
            margin: 0;
            padding: 15px;
            overflow-x: auto;
        }

        code {
            font-family: 'Courier New', Courier, monospace;
            font-size: 1rem;
            color: #05ffa1;
        }

        .code-output { color: #aaa; }
        .code-payload { color: #ff3333; font-weight: bold; }
        
        .vuln-box {
            background: rgba(204, 0, 0, 0.1);
            border-left: 4px solid var(--accent);
            padding: 15px;
            margin: 20px 0;
        }

        /* Back Button */
        .back-nav {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 2000;
        }