        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Construction Terminal */
        .construction-terminal {
            background: rgba(13, 17, 23, 0.8);
            border: 2px solid #30363d;
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
            margin-top: 100px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .terminal-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #30363d;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff4757;
        }

        .terminal-dot:nth-child(2) { background: #ffa502; }
        .terminal-dot:nth-child(3) { background: #00ff88; }

        .construction-content {
            font-size: 1rem;
        }

        .construction-title {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: #ffa502;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .construction-title::before {
            content: '⚠️';
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .construction-line {
            margin: 15px 0;
            padding-left: 20px;
        }

        .prompt {
            color: #00ff88;
            margin-right: 10px;
        }

        .command {
            color: #58a6ff;
        }

        .output {
            color: #c9d1d9;
        }

        .cursor {
            display: inline-block;
            width: 10px;
            height: 20px;
            background: #00ff88;
            margin-left: 5px;
            animation: blink-cursor 1s infinite;
        }

        @keyframes blink-cursor {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }


        .features-list {
            margin: 30px 0;
            padding: 20px;
            background: rgba(0, 136, 77, 0.05);
            border-left: 3px solid #00ff88;
            border-radius: 6px;
        }

        .features-list h3 {
            color: #00ff88;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .features-list ul {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            padding: 8px 0;
            color: #8b949e;
        }

        .features-list li::before {
            content: '▹';
            color: #00ff88;
            margin-right: 10px;
        }

        .back-link {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 24px;
            background: rgba(88, 166, 255, 0.1);
            border: 1px solid #58a6ff;
            border-radius: 6px;
            color: #58a6ff;
            text-decoration: none;
        }

        .back-link:hover {
            background: rgba(88, 166, 255, 0.2);
            transform: translateX(-5px);
        }

        /* Light Theme - Page Specific */
        body.light-theme .construction-terminal {
            background: rgba(255, 255, 255, 0.9);
            border-color: #d0d7de;
        }

        body.light-theme .terminal-header { border-bottom-color: #d0d7de; }
        body.light-theme .construction-title { color: #dd8800; }
        body.light-theme .prompt { color: #00884d; }
        body.light-theme .command { color: #0969da; }
        body.light-theme .output { color: #24292f; }
        body.light-theme .cursor { background: #00884d; }
        body.light-theme .features-list { background: rgba(0, 136, 77, 0.05); border-left-color: #00884d; }
        body.light-theme .features-list h3 { color: #00884d; }
        body.light-theme .features-list li { color: #57606a; }
        body.light-theme .features-list li::before { color: #00884d; }
        body.light-theme .back-link { background: rgba(9, 105, 218, 0.1); border-color: #0969da; color: #0969da; }
        body.light-theme .back-link:hover { background: rgba(9, 105, 218, 0.2); }

        /* Responsive */
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            .construction-terminal { padding: 30px 20px; margin-top: 80px; }
            .construction-title { font-size: 1.5rem; }
            .construction-content { font-size: 0.9rem; }
        }