* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    cursor: default;
    user-select: none;
}
.boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.boot-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
}

.boot-content {
    text-align: center;
    animation: bootPulse 2s ease-in-out infinite;
}

.boot-logo {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: logoGlow 3s ease-in-out infinite, gradientShift 4s ease infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.boot-version {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0084ff);
    width: 0%;
    animation: loadingProgress 3s ease-out forwards;
}

.boot-text {
    color: #aaa;
    font-size: 0.9rem;
}

.desktop {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000000;
    overflow: hidden;
}

.wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, #000000 25%, #0a0a0a 25%, #0a0a0a 50%, #000000 50%, #000000 75%, #0a0a0a 75%);
    background-size: 
        600px 600px,
        400px 400px,
        40px 40px;
    background-position: 
        0 0,
        200px 200px,
        0 0;
    animation: backgroundFloat 20s ease-in-out infinite;
}

.wallpaper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
}

.start-button {
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #000000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
}

.logo {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000000;
    text-shadow: none;
}

.taskbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.taskbar-center::-webkit-scrollbar {
    display: none;
}

.taskbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.system-tray {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.75rem;
    color: #aaa;
}

.time {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.desktop-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.desktop-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    user-select: none;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.desktop-icon:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.desktop-icon:hover .about-icon {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.desktop-icon:hover .projects-icon {
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.desktop-icon:hover .skills-icon {
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.desktop-icon:hover .terminal-icon {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.desktop-icon:hover .contact-icon {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.desktop-icon:active {
    transform: scale(0.95);
}

.icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}


.about-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
}

.about-icon svg {
    color: #60a5fa;
}

.projects-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border-color: rgba(34, 197, 94, 0.3);
}

.projects-icon svg {
    color: #4ade80;
}

.skills-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
    border-color: rgba(168, 85, 247, 0.3);
}

.skills-icon svg {
    color: #a855f7;
}

.terminal-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.terminal-icon svg {
    color: #f87171;
}

.contact-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.contact-icon svg {
    color: #fbbf24;
}

.desktop-icon span {
    font-size: 0.8rem;
    color: #fff;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.windows-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.window {
    position: absolute;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-width: 400px;
    min-height: 300px;
    pointer-events: all;
    display: none;
    resize: both;
    overflow: hidden;
}

.window.active {
    display: block;
    z-index: 100;
    animation: windowFadeIn 0.3s ease;
}

.window-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    cursor: move;
    user-select: none;
}

.window-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-btn {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn {
    background: #ff5f57;
    color: #fff;
}

.minimize-btn {
    background: #ffbd2e;
    color: #000;
}

.maximize-btn {
    background: #28ca42;
    color: #000;
}

.window-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.window-content {
    height: calc(100% - 40px);
    overflow: auto;
    padding: 20px;
}

.terminal-window {
    width: 700px;
    height: 500px;
}

.terminal {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 16px;
    scrollbar-width: thin;
}

.terminal-line {
    color: #00ff00;
    margin-bottom: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.terminal-line.error {
    color: #ff5555;
}

.terminal-line.info {
    color: #50fa7b;
}

.terminal-line.command {
    color: #8be9fd;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    color: #00ff00;
    font-size: 0.9rem;
    position: relative;
}

.prompt {
    color: #0084ff;
    margin-right: 8px;
    font-weight: 600;
}

.terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    flex: 1;
}

.cursor {
    color: #00ff00;
    animation: blink 1s infinite;
    margin-left: 2px;
}


.folder-window {
    width: 700px;
    height: 500px;
}

.folder-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.folder-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.folder-item .icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 10px;
}

.folder-item .modern-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.folder-item .modern-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.folder-item span {
    font-size: 0.9rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.folder-item .description {
    font-size: 0.75rem;
    color: #bbb;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}


.profile-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)) !important; }
.profile-icon svg { color: #60a5fa !important; }

.education-icon { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2)) !important; }
.education-icon svg { color: #4ade80 !important; }

.interests-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2)) !important; }
.interests-icon svg { color: #fbbf24 !important; }

.project-main-icon { background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2)) !important; }
.project-main-icon svg { color: #a855f7 !important; }

.learning-icon { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2)) !important; }
.learning-icon svg { color: #4ade80 !important; }

.progress-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)) !important; }
.progress-icon svg { color: #60a5fa !important; }

.future-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2)) !important; }
.future-icon svg { color: #fbbf24 !important; }

.current-skills-icon { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2)) !important; }
.current-skills-icon svg { color: #f87171 !important; }

.next-skills-icon { background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2)) !important; }
.next-skills-icon svg { color: #a855f7 !important; }

.tools-icon { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2)) !important; }
.tools-icon svg { color: #4ade80 !important; }

.goals-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)) !important; }
.goals-icon svg { color: #60a5fa !important; }

.email-icon { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2)) !important; }
.email-icon svg { color: #f87171 !important; }

.instagram-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2)) !important; }
.instagram-icon svg { color: #f472b6 !important; }

.github-icon { background: linear-gradient(135deg, rgba(107, 114, 128, 0.2), rgba(75, 85, 99, 0.2)) !important; }
.github-icon svg { color: #9ca3af !important; }

.twitter-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)) !important; }
.twitter-icon svg { color: #60a5fa !important; }

/* Task Window in Taskbar */
.task-window {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-weight: 500;
}

.task-window:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.task-window.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}


@keyframes bootPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
    }
}

@keyframes loadingProgress {
    to { width: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes backgroundFloat {
    0%, 100% {
        background-position: 0 0, 200px 200px, 0 0;
    }
    33% {
        background-position: 100px 50px, 250px 150px, 10px 5px;
    }
    66% {
        background-position: 50px 100px, 150px 250px, 5px 10px;
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes windowFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .desktop-icon {
        position: relative;
        display: inline-flex;
        margin: 8px;
    }
    
    .desktop-icons {
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        position: relative;
        pointer-events: all;
        overflow-y: auto;
        height: calc(100% - 48px);
    }
    
    .window {
        width: 95vw !important;
        height: 80vh !important;
        top: 10vh !important;
        left: 2.5vw !important;
        transform: none !important;
    }
    
    .taskbar {
        padding: 0 8px;
    }
    
    .start-button {
        padding: 6px 12px;
    }
      .terminal-window,
    .folder-window {
        width: 100%;
        height: 100%;
    }
      .taskbar-center {
        justify-content: flex-start;
        margin-left: 8px;
    }
    
    .task-window {
        min-width: 80px;
        max-width: 120px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .audio-control {
        top: 10px;
        right: 10px;
    }
    
    .audio-btn {
        width: 44px;
        height: 44px;
    }
}


.audio-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.audio-btn {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    outline: none;
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.audio-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-icon.play {
    margin-left: 2px;
}

.audio-icon.pause {
    display: none;
}

.audio-btn.playing .audio-icon.play {
    display: none;
}

.audio-btn.playing .audio-icon.pause {
    display: block;
}


.terminal-line {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.terminal-line.error {
    color: #ff6b6b;
}

.terminal-line.info {
    color: #ffffff;
}

.terminal-line.command {
    color: #cccccc;
}

.terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: inherit;
    font-size: inherit;
    flex: 1;
}

.prompt {
    color: #ffffff;
    margin-right: 8px;
    font-weight: 600;
}

.cursor {
    color: #ffffff;
    animation: blink 1s infinite;
    margin-left: 2px;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}