/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00ff88;
            --secondary: #00d4ff;
            --bg: #0a0a0a;
            --terminal-bg: #0d0d0d;
            --text: #e0e0e0;
            --text-dim: #808080;
        }

        body {
            font-family: 'Courier New', 'Consolas', monospace;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
            border-left: 1px solid rgba(0, 255, 136, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* Firefox Scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--bg);
        }

        /* Glitch Effect for Logo */
        .ascii-art {
            color: var(--primary);
            font-size: 12px;
            line-height: 1.2;
            margin: 30px 0;
            white-space: pre;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
            position: relative;
            animation: glitch 8s infinite;
        }

        @keyframes glitch {
            0%, 90%, 100% {
                transform: translate(0);
                text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
            }
            92% {
                transform: translate(-2px, 1px);
                text-shadow: 2px 0 var(--secondary), -2px 0 var(--primary);
            }
            94% {
                transform: translate(2px, -1px);
                text-shadow: -2px 0 var(--secondary), 2px 0 var(--primary);
            }
            96% {
                transform: translate(1px, 1px);
                text-shadow: 1px 0 var(--secondary), -1px 0 var(--primary);
            }
        }

        /* Typing Effect */
        .typing-effect {
            overflow: hidden;
            border-right: 2px solid var(--primary);
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
            display: inline-block;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary) }
        }

        /* Hacker Binary Background */
        .binary-stream {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.02;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            color: var(--primary);
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        /* Terminal Header */
        .terminal-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--terminal-bg);
            border-bottom: 1px solid var(--primary);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 255, 136, 0.15);
            backdrop-filter: blur(10px);
        }

        .terminal-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red { background: #ff5f56; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #27c93f; }

        .terminal-title {
            color: var(--text-dim);
            font-size: 14px;
            margin-left: 15px;
        }

        /* Main Terminal */
        .terminal {
            margin-top: 80px;
            background: var(--terminal-bg);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 12px;
            padding: 40px;
            min-height: calc(100vh - 120px);
            box-shadow: 0 8px 40px rgba(0, 255, 136, 0.15);
            position: relative;
            overflow: hidden;
        }

        .terminal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0.5;
        }

        .prompt {
            color: var(--primary);
            margin-right: 8px;
            text-shadow: 0 0 5px rgba(0, 255, 136, 0.7);
        }

        .command {
            color: var(--secondary);
            text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
        }

        .output {
            margin: 15px 0 30px 0;
            padding-left: 20px;
        }

        .section {
            margin-bottom: 50px;
        }

        .section-title {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
        }

        .section-title::before {
            content: '>';
            color: var(--secondary);
            animation: pulse-arrow 2s infinite;
        }

        @keyframes pulse-arrow {
            0%, 100% { 
                transform: translateX(0);
                opacity: 1;
            }
            50% { 
                transform: translateX(5px);
                opacity: 0.6;
            }
        }

        /* ASCII Art */
        .ascii-art {
            color: var(--primary);
            font-size: 12px;
            line-height: 1.2;
            margin: 30px 0;
            white-space: pre;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .info-card {
            background: rgba(0, 255, 136, 0.03);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 8px;
            padding: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transition: left 0.5s;
        }

        .info-card:hover::before {
            left: 100%;
        }

        .info-card:hover {
            border-color: var(--primary);
            background: rgba(0, 255, 136, 0.08);
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .info-card-icon {
            color: var(--primary);
            font-size: 24px;
            animation: icon-pulse 3s infinite;
        }

        @keyframes icon-pulse {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.9));
            }
        }

        .info-card-title {
            color: var(--primary);
            font-size: 16px;
            font-weight: bold;
        }

        .info-card-content {
            color: var(--text-dim);
            font-size: 14px;
            line-height: 1.6;
        }

        /* List Items */
        .list-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: start;
            gap: 20px;
            transition: all 0.3s;
        }

        .list-item:hover {
            padding-left: 10px;
            background: rgba(0, 255, 136, 0.02);
        }

        .list-item:last-child {
            border-bottom: none;
        }

        .list-icon {
            color: var(--primary);
            font-size: 24px;
            margin-top: 2px;
            filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
        }

        .list-content {
            flex: 1;
        }

        .list-title {
            color: var(--text);
            font-size: 16px;
            margin-bottom: 5px;
        }

        .list-meta {
            color: var(--secondary);
            font-size: 12px;
            margin-bottom: 8px;
        }

        .list-desc {
            color: var(--text-dim);
            font-size: 14px;
        }

        /* Tags */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .tag {
            background: rgba(0, 255, 136, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 3px;
            font-size: 12px;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        /* Links */
        .link {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .link:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Command Input */
        /* Removed - no longer needed */

        /* Progress Bars */
        .skill-bar {
            margin: 15px 0;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .skill-name span:first-child {
            color: var(--text);
        }

        .skill-name span:last-child {
            color: var(--primary);
        }

        .bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
            overflow: hidden;
        }

        .bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 1s ease;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-dim);
            text-decoration: none;
            padding: 12px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
            transition: left 0.5s;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .terminal {
                padding: 20px 15px;
                margin-top: 70px;
            }

            .ascii-art {
                font-size: 8px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-direction: column;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0%, 100% { content: '.'; }
            33% { content: '..'; }
            66% { content: '...'; }
        }

        /* Scan Line Effect */
        .terminal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: scan 6s linear infinite;
            opacity: 0.4;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes scan {
            0% { transform: translateY(0); }
            100% { transform: translateY(calc(100vh - 120px)); }
        }

        /* Section animations */
        .section {
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Glow effect on hover for titles */
        .section-title:hover {
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
            cursor: default;
        }

        /* Enhanced skill bars */
        .bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
            position: relative;
        }

        .bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }