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

        body {
            background-color: #0a0a0a;
            color: #e4e4e7;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

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

        /* Matrix Background Animation */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            pointer-events: none;
        }

        /* Terminal Header */
        .terminal-header {
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            border-bottom: 1px solid #262626;
            padding: 40px 0;
            margin-bottom: 80px;
            position: relative;
        }

        .visitor-counter {
            position: absolute;
            top: 10px;
            right: 20px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid #10b981;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: #10b981;
        }

        .terminal-window {
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        }

        .terminal-titlebar {
            background: #1a1a1a;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #333333;
        }

        .titlebar-left {
            display: flex;
            gap: 8px;
        }

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

        .terminal-button.red { background: #ff5f57; }
        .terminal-button.yellow { background: #ffbd2e; }
        .terminal-button.green { background: #28ca42; }

        .titlebar-title {
            color: #a1a1aa;
            font-size: 12px;
            font-family: 'JetBrains Mono', monospace;
        }

        .terminal-content {
            padding: 24px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            line-height: 1.6;
        }

        .terminal-line {
            margin-bottom: 8px;
        }

        .terminal-prompt {
            color: #10b981;
            font-weight: 500;
        }

        .terminal-command {
            color: #60a5fa;
        }

        .terminal-output {
            color: #e4e4e7;
            margin: 12px 0 20px 0;
            font-weight: 400;
        }

        .typewriter {
            color: #22d3ee;
            line-height: 1.8;
        }

        .project-list {
            margin-top: 8px;
        }

        .project-item {
            display: flex;
            align-items: center;
            margin: 8px 0;
            color: #e4e4e7;
        }

        .file-icon {
            margin-right: 8px;
            font-size: 14px;
        }

        .project-name {
            color: #22d3ee;
            font-weight: 600;
            margin-right: 12px;
            min-width: 120px;
        }

        .project-desc {
            color: #a1a1aa;
            font-size: 14px;
        }

        .status-line {
            display: flex;
            gap: 16px;
            color: #10b981;
            font-weight: 500;
            margin: 12px 0 24px 0;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .terminal-buttons {
            display: flex;
            gap: 12px;
            margin: 24px 0 20px 0;
            flex-wrap: wrap;
        }

        .terminal-btn {
            background: transparent;
            border: 1px solid #ef4444;
            color: #ef4444;
            padding: 8px 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .terminal-btn:hover {
            background: #ef4444;
            color: #0a0a0a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        .btn-prompt {
            color: inherit;
            font-weight: bold;
        }

        .terminal-footer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid #333333;
            color: #fbbf24;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .warning-text {
            font-style: italic;
        }

        .cursor {
            display: inline-block;
            width: 2px;
            height: 16px;
            background: #ef4444;
            margin-left: 4px;
            animation: blink 1s infinite;
        }

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

        /* Command Palette */
        .command-palette {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding-top: 100px;
        }

        .command-palette.active {
            display: flex;
        }

        .palette-window {
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 400px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
        }

        .palette-input {
            width: 100%;
            background: transparent;
            border: none;
            padding: 20px;
            color: #e4e4e7;
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            outline: none;
            border-bottom: 1px solid #333333;
        }

        .palette-results {
            max-height: 300px;
            overflow-y: auto;
        }

        .palette-item {
            padding: 12px 20px;
            cursor: pointer;
            border-bottom: 1px solid #1a1a1a;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .palette-item:hover,
        .palette-item.selected {
            background: #1a1a1a;
            color: #ef4444;
        }

        .palette-icon {
            font-size: 16px;
            width: 20px;
        }

        /* About Me Section */
        .about-section {
            margin: 120px 0;
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .about-terminal {
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 12px;
            overflow: hidden;
        }

        .about-terminal .terminal-titlebar {
            background: #1a1a1a;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid #333333;
        }

        .about-terminal .terminal-content {
            padding: 20px;
            font-size: 14px;
            height: 300px;
            overflow-y: auto;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            border: 1px solid #262626;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #ef4444;
            box-shadow: 0 12px 24px rgba(239, 68, 68, 0.15);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #ef4444;
            display: block;
            font-family: 'JetBrains Mono', monospace;
        }

        .stat-label {
            color: #a1a1aa;
            font-size: 0.9rem;
            margin-top: 4px;
        }

        /* Skills Section */
        .skills-section {
            margin: 100px 0;
            text-align: center;
        }

        .skills-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin-top: 40px;
        }

        .skill-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            border: 1px solid #262626;
            padding: 14px 22px;
            border-radius: 9999px;
            color: #e4e4e7;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            animation: floaty 4s ease-in-out infinite;
        }

        .skill-badge img {
            width: 22px;
            height: 22px;
        }

        .skill-badge:hover {
            border-color: #ef4444;
            color: #ef4444;
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
        }

        @keyframes floaty {
            0%   { transform: translateY(0); }
            50%  { transform: translateY(-6px); }
            100% { transform: translateY(0); }
        }

        /* Main Content */
        .main-content {
            padding-bottom: 120px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #a1a1aa;
            margin-bottom: 60px;
            max-width: 600px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .project-card {
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            border: 1px solid #262626;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-8px);
            border-color: #ef4444;
            box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.2);
        }

        .project-card:hover::before {
            transform: scaleX(1);
        }

        .project-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .project-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-dev {
            background: rgba(239, 68, 68, 0.15);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .badge-working {
            background: rgba(251, 191, 36, 0.15);
            color: #fcd34d;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        .badge-ai {
            background: rgba(16, 185, 129, 0.15);
            color: #6ee7b7;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .badge-experimental {
            background: rgba(16, 185, 129, 0.15);
            color: #0ed3d3;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .project-description {
            color: #a1a1aa;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ef4444;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .project-link:hover {
            color: #dc2626;
            transform: translateX(4px);
        }

        .project-link::after {
            content: '→';
            font-size: 1.2em;
            transition: transform 0.2s ease;
        }

        .project-link:hover::after {
            transform: translateX(2px);
        }

        .github-stats {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: #71717a;
            font-family: 'JetBrains Mono', monospace;
        }

        .github-stat {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Command Palette Trigger */
        .cmd-hint {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid #10b981;
            padding: 12px 16px;
            border-radius: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: #10b981;
            z-index: 100;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Command Palette */
        .command-palette {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding-top: 100px;
        }

        .command-palette.active {
            display: flex;
        }

        .palette-window {
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 400px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
            animation: slideDown 0.2s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .palette-input {
            width: 100%;
            background: transparent;
            border: none;
            padding: 20px;
            color: #e4e4e7;
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            outline: none;
            border-bottom: 1px solid #333333;
        }

        .palette-input::placeholder {
            color: #71717a;
        }

        .palette-results {
            max-height: 300px;
            overflow-y: auto;
        }

        .palette-item {
            padding: 12px 20px;
            cursor: pointer;
            border-bottom: 1px solid #1a1a1a;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.1s ease;
        }

        .palette-item:hover,
        .palette-item.selected {
            background: #1a1a1a;
            color: #ef4444;
        }

        .palette-icon {
            font-size: 16px;
            width: 20px;
        }

        .palette-shortcut {
            margin-left: auto;
            font-size: 12px;
            color: #71717a;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Footer */
        .footer {
            border-top: 1px solid #262626;
            padding: 40px 0;
            text-align: center;
            background: #0a0a0a;
        }

        .footer-content {
            color: #71717a;
            font-size: 0.9rem;
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            font-family: 'JetBrains Mono', monospace;
        }

        .loading-text {
            color: #10b981;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .loading-bar {
            width: 300px;
            height: 4px;
            background: #333333;
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-progress {
            height: 100%;
            background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
            width: 0;
            transition: width 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .terminal-header {
                padding: 24px 0;
                margin-bottom: 60px;
            }

            .terminal-content {
                padding: 16px;
                font-size: 14px;
            }

            .terminal-buttons {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .terminal-btn {
                justify-content: center;
            }

            .terminal-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .project-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .project-name {
                min-width: auto;
            }

            .status-line {
                flex-wrap: wrap;
                gap: 8px;
            }

            .section-title {
                font-size: 2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .project-card {
                padding: 24px;
            }

            .main-content {
                padding-bottom: 80px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .visitor-counter {
                position: relative;
                top: auto;
                right: auto;
                margin-bottom: 20px;
            }

            .cmd-hint {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .terminal-buttons {
                grid-template-columns: 1fr;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .cursor {
                animation: none;
            }

            .project-card {
                transition: none;
            }

            .project-link::after {
                transition: none;
            }

            .skill-badge {
                animation: none;
            }
        }

        /* Konami Code Easter Egg */
        .easter-egg {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #0d0d0d;
            border: 2px solid #ef4444;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            z-index: 10000;
            display: none;
            max-width: 400px;
        }

        .easter-egg.active {
            display: block;
            animation: matrix-glow 0.5s ease;
        }

        @keyframes matrix-glow {
            0% { box-shadow: 0 0 0 rgba(239, 68, 68, 0.5); }
            100% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.8); }
        }

        .easter-egg h3 {
            color: #ef4444;
            margin-bottom: 16px;
            font-family: 'JetBrains Mono', monospace;
        }

        .easter-egg p {
            color: #10b981;
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
        }