@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
        
        :root {
            --nes-bg: #5C94FC;
            --nes-dark: #000000;
            --nes-light: #FCFCFC;
            --nes-accent: #E45C10;
            --nes-green: #00A800;
            --nes-red: #F83800;
            --pixel-size: 4px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Press Start 2P', cursive;
            background: linear-gradient(180deg, #5C94FC 0%, #FCE4EC 100%);
            min-height: 100vh;
            color: var(--nes-dark);
            font-size: 12px;
            line-height: 1.8;
            image-rendering: pixelated;
        }
        
        /* Scanline effect for authenticity */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
            pointer-events: none;
            z-index: 1000;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* NES-style box */
        .nes-box {
            background: var(--nes-light);
            border: 4px solid var(--nes-dark);
            box-shadow: 
                4px 4px 0 rgba(0,0,0,0.2),
                inset -4px -4px 0 rgba(0,0,0,0.1);
            padding: 20px;
            margin: 20px 0;
            position: relative;
        }
        
        /* Header with pixel art avatar */
        header {
            text-align: center;
            padding: 40px 0;
        }
        
        .pixel-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--nes-light);
            border: 4px solid var(--nes-dark);
            position: relative;
            image-rendering: pixelated;
        }
        
        h1 {
            font-size: 24px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
            animation: blink 2s infinite;
        }
        
        .subtitle {
            color: var(--nes-accent);
            font-size: 14px;
        }
        
        /* Navigation */
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .nav-btn {
            background: var(--nes-light);
            border: 3px solid var(--nes-dark);
            padding: 10px 20px;
            text-decoration: none;
            color: var(--nes-dark);
            transition: all 0.1s;
            position: relative;
            font-size: 10px;
        }
        
        .nav-btn:hover {
            background: var(--nes-green);
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0 var(--nes-dark);
        }
        
        .nav-btn:active {
            transform: translate(0, 0);
            box-shadow: none;
        }
        
        /* Section styling */
        section {
            margin: 40px 0;
        }
        
        h2 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 4px solid var(--nes-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        h2::before {
            content: "▶";
            color: var(--nes-accent);
            animation: pulse 1s infinite;
        }
        
        /* Project cards */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .project-card {
            background: var(--nes-light);
            border: 3px solid var(--nes-dark);
            padding: 15px;
            transition: all 0.2s;
        }
        
        .project-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 0 var(--nes-dark);
        }
        
        .project-title {
            font-size: 14px;
            color: var(--nes-accent);
            margin-bottom: 10px;
        }
        
        .project-desc {
            font-size: 10px;
            line-height: 1.6;
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .tech-tag {
            background: var(--nes-green);
            color: var(--nes-light);
            padding: 3px 8px;
            font-size: 8px;
            border: 2px solid var(--nes-dark);
        }
        
        /* Skills with progress bars */
        .skill-bars {
            display: grid;
            gap: 15px;
        }
        
        .skill {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 10px;
            align-items: center;
        }
        
        .skill-name {
            font-size: 10px;
        }
        
        .skill-bar {
            height: 20px;
            background: var(--nes-dark);
            border: 2px solid var(--nes-dark);
            position: relative;
            overflow: hidden;
        }
        
        .skill-fill {
            height: 100%;
            background: repeating-linear-gradient(
                90deg,
                var(--nes-green) 0,
                var(--nes-green) 8px,
                #00C800 8px,
                #00C800 16px
            );
            animation: scroll 0.5s linear infinite;
            transition: width 1s ease-out;
        }
        
        /* Contact section */
        .contact-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
        }
        
        .contact-link {
            background: var(--nes-accent);
            color: var(--nes-light);
            padding: 12px 24px;
            text-decoration: none;
            border: 3px solid var(--nes-dark);
            transition: all 0.1s;
            font-size: 10px;
        }
        
        .contact-link:hover {
            background: var(--nes-red);
            transform: scale(1.05);
        }
        
        /* Animations */
        @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.7; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        @keyframes scroll {
            0% { background-position: 0 0; }
            100% { background-position: 16px 0; }
        }
        
        /* Easter egg - Konami code hint */
        .easter-egg-hint {
            position: fixed;
            bottom: 10px;
            right: 10px;
            font-size: 8px;
            opacity: 0.3;
            animation: blink 3s infinite;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            h1 { font-size: 18px; }
            h2 { font-size: 14px; }
            .nav-btn { font-size: 9px; padding: 8px 15px; }
            .project-title { font-size: 12px; }
        }