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

        body {
            font-family: 'Courier New', monospace;
            background: #0a0a0a;
            color: #FF9700;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .terminal-header {
            background: #424455;
            border: 2px solid #FF9700;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 151, 0, 0.3);
        }

        .terminal-bar {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .terminal-buttons {
            display: flex;
            gap: 5px;
        }

        .btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .btn-red { background: #ff5f56; }
        .btn-yellow { background: #ffbd2e; }
        .btn-green { background: #27ca3f; }

        .terminal-title {
            margin-left: 15px;
            color: #FF9700;
            font-size: 0.9rem;
        }

        .ascii-art {
            font-family: monospace;
            white-space: pre;
            color: #FF9700;
            font-size: 0.7rem;
            margin-bottom: 20px;
            text-align: center;
            min-height: 200px;
        }

        .prompt {
            color: #FF9700;
            margin-bottom: 10px;
        }

        .name {
            font-size: 2.5rem;
            color: #FF9700;
            text-shadow: 0 0 10px #FF9700;
            margin-bottom: 10px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #FF9700; }
            to { text-shadow: 0 0 20px #FF9700, 0 0 30px #FF9700; }
        }

        .subtitle {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .nav-menu {
            background: #424455;
            border: 1px solid #FF9700;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .nav-item {
            display: block;
            color: #FF9700;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid #333;
            transition: all 0.3s ease;
        }

        .nav-item:hover {
            color: #ffffff;
            background: #2a2a2a;
            padding-left: 10px;
        }

        .content-box {
            background: #424455;
            border: 1px solid #FF9700;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 10px rgba(255, 151, 0, 0.2);
        }

        .section-title {
            color: #FF9700;
            font-size: 1.3rem;
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 5px;
        }

        .about-text {
            line-height: 1.6;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .skills-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }

        .skill-item {
            background: #2a2a2a;
            padding: 10px;
            border-left: 3px solid #FF9700;
            color: #ffffff;
        }

        .experience-item {
            background: #2a2a2a;
            padding: 15px;
            border-left: 3px solid #FF9700;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .experience-title {
            color: #FF9700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .experience-details {
            color: #ffffff;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .experience-description {
            color: #ffffff;
            line-height: 1.5;
        }

        .project-item {
            background: #2a2a2a;
            padding: 15px;
            border-left: 3px solid #FF9700;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .project-title {
            color: #FF9700;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .project-description {
            color: #ffffff;
            line-height: 1.5;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .contact-item {
            background: #2a2a2a;
            padding: 10px;
            border-left: 3px solid #FF9700;
            color: #ffffff;
        }

        .typing-effect {
            border-right: 2px solid #FF9700;
            animation: typing 3s steps(40, end), blink 1s infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        .status-bar {
            background: #424455;
            color: #FF9700;
            padding: 10px;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 0.9rem;
            border: 1px solid #FF9700;
        }

        @media (max-width: 768px) {
            .name {
                font-size: 1.8rem;
            }
            
            .ascii-art {
                font-size: 0.5rem;
            }
            
            .container {
                padding: 10px;
            }
        }