@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono:wght@400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Share Tech Mono', monospace;
            background: #c0c0c0;
            background-image: 
                radial-gradient(circle at 1px 1px, #808080 1px, transparent 0);
            background-size: 2px 2px;
            overflow-x: hidden;
            cursor: default;
        }
        
        .desktop {
            min-height: 100vh;
            position: relative;
            padding: 20px;
        }
        
        .window {
            background: #c0c0c0;
            border: 2px solid #000;
            border-right-color: #808080;
            border-bottom-color: #808080;
            margin: 20px 0;
            box-shadow: 2px 2px 0px #808080;
            position: relative;
        }
        
        .window-header {
            background: #000;
            color: #fff;
            padding: 4px 8px;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 20px;
        }
        
        .window-title {
            font-weight: bold;
        }
        
        .window-controls {
            display: flex;
            gap: 4px;
        }
        
        .window-control {
            width: 12px;
            height: 12px;
            background: #c0c0c0;
            border: 1px solid #000;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            color: #000;
        }
        
        .window-content {
            padding: 16px;
            background: #fff;
            border: 1px inset #c0c0c0;
            margin: 2px;
        }
        
        .main-window {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .menu-bar {
            background: #fff;
            border: 1px solid #000;
            padding: 4px;
            margin-bottom: 16px;
            display: flex;
            gap: 16px;
            font-size: 12px;
        }
        
        .menu-item {
            cursor: pointer;
            padding: 2px 8px;
        }
        
        .menu-item:hover {
            background: #000;
            color: #fff;
        }
        
        .profile-section {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            align-items: flex-start;
        }
        
        .profile-pic {
            width: 80px;
            height: 80px;
            background: #000;
            border: 2px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 10px;
            flex-shrink: 0;
        }
        
        .profile-info h1 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .profile-info p {
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        
        .section {
            margin-bottom: 24px;
        }
        
        .section h2 {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 12px;
            text-decoration: underline;
        }
        
        .project-item, .skill-item {
            background: #f0f0f0;
            border: 1px solid #808080;
            padding: 12px;
            margin-bottom: 8px;
        }
        
        .project-item h3 {
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .project-item p {
            font-size: 11px;
            line-height: 1.3;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 8px;
        }
        
        .button {
            background: #c0c0c0;
            border: 2px outset #c0c0c0;
            padding: 4px 12px;
            font-family: inherit;
            font-size: 11px;
            cursor: pointer;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
        }
        
        .button:active {
            border: 2px inset #c0c0c0;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 11px;
        }
        
        .scroll-area {
            max-height: 200px;
            overflow-y: auto;
            border: 1px inset #c0c0c0;
            background: #fff;
            padding: 8px;
        }
        
        .folder-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            background: #c0c0c0;
            border: 1px solid #000;
            margin-right: 8px;
            vertical-align: middle;
            position: relative;
        }
        
        .folder-icon::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border: 1px solid #808080;
        }
        
        .blink {
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .footer {
            text-align: center;
            font-size: 10px;
            margin-top: 40px;
            color: #808080;
        }
        
        .dialog-box {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            display: none;
        }
        
        .dialog-content {
            background: #c0c0c0;
            border: 2px solid #000;
            border-right-color: #808080;
            border-bottom-color: #808080;
            padding: 16px;
            min-width: 300px;
            text-align: center;
        }
        
        .dialog-buttons {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        @media (max-width: 600px) {
            .profile-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
        }