        :root {
            --bg-color: #0d1117;
            --surface-color: #161b22;
            --border-color: #30363d;
            --text-main: #c9d1d9;
            --text-muted: #8b949e;
            --accent-color: #58a6ff;
            --accent-green: #2ea44f;
            --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-mono);
            line-height: 1.6;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: 800px;
            background-color: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            overflow: hidden;
        }

        /* Terminal Header */
        .terminal-header {
            background-color: #21262d;
            padding: 12px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .buttons {
            display: flex;
            gap: 8px;
        }

        .button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .btn-r { background-color: #f85149; }
        .btn-y { background-color: #f0883e; }
        .btn-g { background-color: #3fb950; }

        .terminal-title {
            color: var(--text-muted);
            font-size: 13px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Terminal Content */
        .terminal-body {
            padding: 30px;
        }

        .intro {
            margin-bottom: 25px;
        }

        .prompt {
            color: var(--accent-green);
            margin-right: 8px;
        }

        .dir {
            color: var(--accent-color);
            margin-right: 8px;
        }

        h1 {
            font-size: 24px;
            color: #ffffff;
            margin-top: 10px;
            display: inline-block;
            border-right: 3px solid var(--accent-color);
            white-space: nowrap;
            animation: blink 0.75s step-end infinite;
        }

        .subtitle {
            color: var(--text-muted);
            margin-top: 5px;
            font-size: 15px;
        }

        /* Sections */
        .section {
            margin-top: 35px;
            border-top: 1px dashed var(--border-color);
            padding-top: 20px;
        }

        .section-title {
            color: var(--accent-color);
            font-size: 16px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        /* Grid for Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
        }

        .skill-category h4 {
            color: #ffffff;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .skill-list {
            color: var(--text-muted);
            font-size: 13px;
            list-style: none;
        }

        .skill-list li::before {
            content: "▪ ";
            color: var(--accent-green);
        }

        /* Projects Layout */
        .project-item {
            margin-bottom: 15px;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .project-name {
            color: #ffffff;
            font-weight: bold;
            text-decoration: none;
        }
        .project-name:hover {
            text-decoration: underline;
            color: var(--accent-color);
        }

        .project-tech {
            color: var(--accent-green);
            font-size: 12px;
        }

        .project-desc {
            color: var(--text-muted);
            font-size: 13px;
            margin-top: 2px;
        }

        /* Footer / Contact */
        .footer {
            margin-top: 40px;
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .contact-link {
            color: var(--accent-color);
            text-decoration: none;
        }
        .contact-link:hover {
            text-decoration: underline;
        }

        /* Animations */
        @keyframes blink {
            from, to { border-color: transparent }
            50% { border-color: var(--accent-color); }
        }

        @media (max-width: 600px) {
            .terminal-body { padding: 15px; }
            h1 { font-size: 18px; }
            .project-header { flex-direction: column; }
            .project-tech { margin-top: 2px; }
        }
