
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000000;
            color: #b19cd9;
            font-family: 'Courier New', Courier, monospace;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
            font-size: 16px;
        }

        .container {
            flex: 1;
            padding: 2vw;
            max-width: 90vw;
            margin: 0 auto;
            width: 100%;
        }

        .terminal {
            background-color: #2d2d2d;
            border: 2px solid #a473ff;
            border-radius: 5px;
            padding: 2vw;
            min-height: 84vh;
            overflow-y: auto;
            width: 100%;
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { border-color: #b19cd9; box-shadow: 0 0 5px #b19cd9; }
            50% { border-color: #8a6ab9; box-shadow: 0 0 10px #8a6ab9; }
            100% { border-color: #b19cd9; box-shadow: 0 0 5px #b19cd9; }
        }

        .output {
            margin-bottom: 2vw;
        }

        .output p {
            line-height: 1.6;
            white-space: pre-wrap;
        }

        .input-line {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .prompt {
            color: #b19cd9;
            margin-right: 1vw;
            flex-shrink: 0;
        }

        #commandInput {
            background: none;
            border: none;
            color: #b19cd9;
            font-family: 'Courier New', Courier, monospace;
            font-size: 1rem;
            outline: none;
            flex: 1;
            width: 100%;
        }

        .progress-bar {
            width: 5vw;
            max-width: 50px;
            background: #3d3d3d;
            border: 1px solid #b19cd9;
            height: 10px;
            display: inline-block;
            margin-left: 1vw;
        }

        .progress {
            background: #b19cd9;
            height: 100%;
            animation: fillBar 1s ease-in-out forwards;
        }

        @keyframes fillBar {
            from { width: 0%; }
            to { width: inherit; }
        }

        .social-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2vw;
            max-width: 100%;
            margin: 1vw 0;
        }

        .social-item {
            flex: 1 1 45%;
            margin-bottom: 0.5vw;
            font-size: 0.9rem;
        }

        .social-item a {
            color: #b19cd9;
            text-decoration: underline;
            word-break: break-all;
        }

        .project-item {
            margin-bottom: 1vw;
        }

        .project-item a {
            color: #b19cd9;
            text-decoration: underline;
        }

        .tech-tag {
            background: #3d3d3d;
            color: #b19cd9;
            padding: 0.2rem 0.5rem;
            margin-right: 0.5vw;
            border-radius: 3px;
            font-size: 0.8rem;
            display: inline-block;
        }

        .cmd-hint {
            color: #b19cd9;
            text-decoration: underline;
            cursor: pointer;
            margin-right: 1vw;
        }

        .email-link {
            color: #b19cd9;
            text-decoration: underline;
            cursor: pointer;
        }

        footer {
            text-align: center;
            padding: 1vw;
            font-size: 0.9rem;
            color: #b19cd9;
        }

        footer a {
            color: #b19cd9;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Tablet (768px–1024px) */
        @media (max-width: 1024px) {
            body {
                font-size: 14px;
            }

            .container {
                padding: 3vw;
            }

            .terminal {
                padding: 3vw;
                min-height: 85vh;
            }

            .progress-bar {
                width: 25vw;
                max-width: 180px;
            }

            .social-item {
                flex: 1 1 100%;
                font-size: 0.85rem;
            }

            .prompt {
                font-size: 0.9rem;
            }

            #commandInput {
                font-size: 0.9rem;
            }

            .tech-tag {
                font-size: 0.75rem;
            }
        }

        /* Mobile (<768px) */
        @media (max-width: 768px) {
            body {
                font-size: 12px;
            }

            .container {
                padding: 4vw;
                max-width: 95vw;
            }

            .terminal {
                padding: 4vw;
                min-height: 90vh;
                border-radius: 3px;
            }

            .output p {
                line-height: 1.4;
            }

            .progress-bar {
                width: 40vw;
                max-width: 150px;
                height: 8px;
            }

            .social-grid {
                flex-direction: column;
                gap: 3vw;
            }

            .social-item {
                flex: 1 1 100%;
                font-size: 0.8rem;
            }

            .prompt {
                font-size: 0.8rem;
                margin-right: 2vw;
            }

            #commandInput {
                font-size: 0.8rem;
            }

            .tech-tag {
                font-size: 0.7rem;
            }

            footer {
                font-size: 0.8rem;
            }
        }

 ion-icon {
  vertical-align: middle;   /* Align icon with text center */
  margin-right: 6px;         /* Space between icon and text */
  font-size: 1.2em;           /* Optional: adjust icon size */
  position: relative;
  top: -1px;                 /* Fine-tune vertical offset */
}

   