/* --- Windows XP Luna Theme --- */
:root {
    --xp-blue: #0054E3;
    --xp-blue-light: #3C8DEC;
    --xp-blue-dark: #003399;
    --xp-taskbar-blue: #245EDC;
    --xp-taskbar-light: #3589E2;
    --xp-start-green: #2F9C2F;
    --xp-start-green-dark: #1E7A1E;
    --xp-window-bg: #ECE9D8;
    --xp-window-face: #D4D0C8;
    --xp-button-face: #ECE9D8;
    --xp-text: #000000;
    --xp-text-white: #FFFFFF;
    --xp-border-light: #FFFFFF;
    --xp-border-dark: #716F64;
    --xp-border-shadow: #ACA899;
    --xp-highlight: #316AC5;
    --xp-highlight-text: #FFFFFF;
    --xp-desktop-bg: #3A6EA5;
    --xp-inactive-title: #7A96DF;
    --accent-color: #0054E3;
    --accent-dim: #3C8DEC;
    --bg-color: #3A6EA5;
    --text-color: #000000;
    --font-main: 'Tahoma', 'Segoe UI', sans-serif;
}

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

body {
    background-color: var(--xp-desktop-bg);
    color: var(--xp-text);
    font-family: var(--font-main);
    font-size: 11px;
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Remove scanlines overlay */
body::after {
    display: none;
}

.container {
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* --- XP Window Styling --- */
.section-box,
.profile-header,
.mural-messages,
.window {
    background-color: var(--xp-window-bg);
    border: 1px solid #0054E3;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255,255,255,0.3);
    padding: 3px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

/* XP Title Bar */
.section-title,
.window-title-bar {
    background: linear-gradient(180deg, #0997FF 0%, #0053E0 8%, #0050DB 20%, #0263F0 30%, #0572FF 50%, #0262EE 70%, #004BD5 85%, #003EBC 95%, #003399 100%);
    color: #fff;
    font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 8px;
    margin: -3px -3px 5px -3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: none;
    border-radius: 8px 8px 0 0;
    min-height: 26px;
}

.section-title::before,
.window-title-bar::before {
    content: "";
    display: none;
}

/* XP Close Button */
.section-title::after,
.window-title-bar::after {
    content: "✕";
    background: linear-gradient(180deg, #E08356 0%, #CF5B37 45%, #C5462E 50%, #D1654E 100%);
    color: #fff;
    font-family: sans-serif;
    font-size: 10px;
    font-weight: bold;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
    margin-left: auto;
    cursor: pointer;
}

.section-title::after:active,
.window-title-bar::after:active {
    background: linear-gradient(180deg, #C5462E 0%, #CF5B37 100%);
}

/* --- Navigation --- */
.top-nav {
    background-color: var(--xp-window-bg);
    border: 1px solid var(--xp-border-dark);
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: var(--xp-text);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 12px;
    text-transform: none;
    padding: 3px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
}

.nav-link:hover {
    border: 1px solid var(--xp-highlight);
    color: var(--xp-highlight);
    background: rgba(49, 106, 197, 0.1);
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-input {
    background-color: #fff;
    border: 1px solid var(--xp-border-dark);
    color: var(--xp-text);
    padding: 3px 6px;
    font-family: var(--font-main);
    font-size: 11px;
    width: 140px;
    border-radius: 2px;
}

.search-button {
    background: linear-gradient(180deg, #fff 0%, #ECE9D8 100%);
    border: 1px solid var(--xp-border-dark);
    border-radius: 3px;
    color: var(--xp-text);
    padding: 2px 12px;
    font-family: var(--font-main);
    font-size: 11px;
    cursor: pointer;
    height: 22px;
}

.search-button:hover {
    background: linear-gradient(180deg, #fff 0%, #D4D0C8 100%);
    border-color: var(--xp-highlight);
}

.search-button:active {
    background: linear-gradient(180deg, #D4D0C8 0%, #ECE9D8 100%);
}

/* --- Profile Header --- */
.profile-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-radius: 8px 8px 0 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 2px solid var(--xp-border-dark);
    border-radius: 4px;
    padding: 2px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    filter: none;
}

.profile-details {
    flex: 1;
}

.profile-name {
    font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
    font-size: 28px;
    color: var(--xp-blue);
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
    margin-bottom: 5px;
    letter-spacing: 0;
}

/* --- Pronoun & Gender Tags --- */
.profile-pronouns {
    display: flex;
    gap: 5px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.pronoun-tag {
    font-size: 10px;
    font-family: var(--font-main);
    font-weight: bold;
    padding: 2px 8px;
    border: 1px solid var(--xp-border-shadow);
    border-radius: 3px;
    background: linear-gradient(180deg, #fff 0%, #f0eee6 100%);
    color: var(--xp-blue);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.3px;
    text-transform: lowercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.15s;
}

.pronoun-tag:hover {
    border-color: var(--xp-highlight);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 0 4px rgba(0, 84, 227, 0.3);
}

.gender-tag {
    background: linear-gradient(180deg, #f0e6fa 0%, #e0d0f0 100%);
    color: #7c3aed;
    border-color: #c4b5fd;
}

.profile-status {
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
    font-family: var(--font-main);
    border: 1px solid var(--xp-border-shadow);
    padding: 3px 6px;
    display: inline-block;
    background: #fff;
    border-radius: 3px;
}

.profile-stats {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #333;
}

.stat-number {
    color: var(--xp-blue);
    font-weight: bold;
}

/* --- Layout Columns --- */
.main-content {
    display: flex;
    gap: 15px;
}

.left-column {
    flex: 1;
    min-width: 200px;
}

.center-column {
    flex: 2;
}

.right-column {
    flex: 1;
    min-width: 200px;
}

/* --- Music Player (XP Media Player Style) --- */
.music-player {
    background: linear-gradient(180deg, #1B2A6E 0%, #0C1B4D 100%);
    border: 1px solid #0054E3;
    border-radius: 0 0 4px 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    height: auto;
    min-height: 50px;
    position: relative;
    margin-bottom: 0;
}

.player-header {
    background: linear-gradient(90deg, var(--xp-blue), var(--xp-blue-light));
    color: #fff;
    padding: 3px 6px;
    font-size: 10px;
    margin-bottom: 5px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
}

.player-content {
    display: flex;
    gap: 10px;
    background: #000;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 5px;
}

.album-art-frame {
    width: 50px;
    height: 50px;
    border: 1px solid #555;
    border-radius: 2px;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.song-details {
    flex: 1;
    overflow: hidden;
}

.now-playing {
    font-family: var(--font-main);
    color: #00FF00;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-title {
    color: #00FF00;
    text-decoration: none;
}

/* Progress Bar */
progress#progress-bar {
    width: 100%;
    height: 10px;
    border: 1px solid #555;
    background: #000;
    margin-top: 5px;
    border-radius: 3px;
}

progress#progress-bar::-webkit-progress-bar {
    background: #000;
    border-radius: 3px;
}

progress#progress-bar::-webkit-progress-value {
    background: linear-gradient(180deg, #7FD0FF, #0078D4);
    border-radius: 3px;
}

/* --- Blog Posts --- */
.blog-post {
    border: 1px solid var(--xp-border-shadow);
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 4px;
}

.post-title {
    font-family: 'Trebuchet MS', var(--font-main);
    font-size: 16px;
    color: var(--xp-blue);
    margin-bottom: 5px;
    cursor: pointer;
}

.post-title:hover {
    text-decoration: underline;
    color: var(--xp-blue-dark);
}

.post-date {
    font-size: 10px;
    color: #888;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--xp-border-shadow);
    padding-bottom: 2px;
}

.post-content {
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

/* --- Forms & Inputs --- */
.question-form,
.mural-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.question-input {
    background-color: #fff;
    border: 1px solid var(--xp-border-dark);
    color: var(--xp-text);
    font-family: var(--font-main);
    font-size: 11px;
    padding: 5px;
    resize: vertical;
    min-height: 60px;
    border-radius: 2px;
}

.question-submit {
    background: linear-gradient(180deg, #fff 0%, #ECE9D8 100%);
    border: 1px solid var(--xp-border-dark);
    border-radius: 3px;
    color: var(--xp-text);
    font-family: var(--font-main);
    font-size: 11px;
    padding: 3px 12px;
    cursor: pointer;
    text-transform: none;
}

.question-submit:hover {
    background: linear-gradient(180deg, #fff 0%, #D4D0C8 100%);
    border-color: var(--xp-highlight);
}

.question-submit:active {
    background: linear-gradient(180deg, #D4D0C8 0%, #ECE9D8 100%);
}

/* --- Social Links --- */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--xp-text);
    background: #fff;
    border: 1px solid var(--xp-border-shadow);
    padding: 6px 8px;
    font-family: var(--font-main);
    font-size: 11px;
    border-radius: 3px;
    transition: background 0.15s;
}

.social-link:hover {
    background: var(--xp-highlight);
    color: #fff;
    border-color: var(--xp-blue-dark);
}

.social-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* --- Mural --- */
.mural-messages {
    height: 150px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--xp-border-dark);
    border-radius: 0;
}

.mural-message {
    font-size: 11px;
    padding: 4px 6px;
    border-bottom: 1px solid #E0DDD0;
    color: #333;
}

.mural-message::before {
    content: "▸";
    color: var(--xp-blue);
    margin-right: 5px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .window {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px !important;
        transform: none !important;
    }
}

/* --- Friends Section --- */
.friends-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
    background: #fff;
    border: 1px solid var(--xp-border-dark);
    border-radius: 2px;
}

.friend-item {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--xp-border-shadow);
    border-radius: 3px;
    transition: transform 0.2s;
    overflow: hidden;
}

.friend-item:hover {
    transform: scale(1.1);
    border-color: var(--xp-highlight);
    z-index: 10;
    box-shadow: 0 0 5px rgba(49, 106, 197, 0.5);
}

.friend-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Glitch / Retro effects REMOVED for XP theme --- */
.glitch::before,
.glitch::after {
    display: none !important;
}

.glitch-hover:hover::before,
.glitch-hover:hover::after {
    display: none !important;
}

.glitch-hover:hover {
    animation: none;
}

.glitch-image::before,
.glitch-image::after {
    display: none !important;
}

.glitch-image:hover::before,
.glitch-image:hover::after {
    display: none !important;
}

/* Cursor Trail - Disabled */
.cursor-trail {
    display: none;
}

/* Blood drops - Disabled */
.blood-drop {
    display: none;
}

/* Blink - Disabled */
.blink {
    animation: none;
}

/* Scrollbar XP Style */
::-webkit-scrollbar {
    width: 17px;
    height: 17px;
}

::-webkit-scrollbar-track {
    background: #E8E4D8;
    border: 1px solid #ACA899;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ECE9D8 0%, #D4D0C8 50%, #ECE9D8 100%);
    border: 1px solid #ACA899;
    border-radius: 0;
}

::-webkit-scrollbar-button {
    background: var(--xp-window-bg);
    border: 1px solid #ACA899;
    height: 17px;
    width: 17px;
}

/* === WINDOWS XP DESKTOP INTERFACE === */
#desktop {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #245EDC, #3A6EA5, #5AA0D9, #3A6EA5);
    background-size: 400% 400%;
}

/* XP Taskbar */
#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #245EDC 0%, #1941A5 40%, #1941A5 60%, #245EDC 100%);
    border-top: 1px solid #5B8FE8;
    display: flex;
    align-items: center;
    padding: 0 2px;
    z-index: 10000;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
}

.start-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 28px;
    padding: 0 10px;
    margin-right: 6px;
    background: linear-gradient(180deg, #3C943C 0%, #328A32 10%, #2D7E2D 50%, #237A23 80%, #1E6E1E 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    font-family: 'Trebuchet MS', var(--font-main);
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 1px 0 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.start-btn:hover {
    background: linear-gradient(180deg, #4AA54A 0%, #3C9A3C 10%, #369036 50%, #2D862D 80%, #257C25 100%);
}

.start-btn:active {
    background: linear-gradient(180deg, #1E6E1E 0%, #237A23 50%, #2D7E2D 100%);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.start-btn img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.taskbar-divider {
    width: 2px;
    height: 22px;
    background: linear-gradient(180deg, transparent 10%, #1536A8 20%, #1536A8 80%, transparent 90%);
    margin: 0 3px;
    border-right: 1px solid #5B8FE8;
}

.taskbar-apps {
    flex: 1;
    display: flex;
    gap: 3px;
    overflow: hidden;
    padding: 1px;
}

.taskbar-app {
    flex: 1;
    max-width: 160px;
    height: 24px;
    background: linear-gradient(180deg, #3C78D8 0%, #245EDC 40%, #1E53C7 100%);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-family: var(--font-main);
    font-size: 11px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.taskbar-app:hover {
    background: linear-gradient(180deg, #4A88E8 0%, #3068DC 40%, #2A5ED0 100%);
}

.taskbar-app.active {
    background: linear-gradient(180deg, #1B46A0 0%, #16398A 50%, #1B46A0 100%);
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
    font-weight: bold;
}

.taskbar-tray {
    margin-left: 4px;
    background: linear-gradient(180deg, #0D8AEB 0%, #1665C6 50%, #1150B0 100%);
    border: 1px solid rgba(0,0,0,0.2);
    border-left: 1px solid #5B8FE8;
    padding: 2px 10px;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

#taskbar-clock {
    font-size: 11px;
    font-family: var(--font-main);
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

/* Hide desktop icons and taskbar on mobile */
.desktop-icons,
#taskbar {
    display: none;
}

@media (min-width: 769px) {
    body {
        overflow: hidden;
        background-color: var(--xp-desktop-bg);
    }

    #desktop {
        width: 100vw;
        height: 100vh;
        position: relative;
        /* XP Bliss-like gradient background */
        background: linear-gradient(180deg, #4A90D9 0%, #5AA0D9 30%, #7BBF5A 60%, #5EA03A 80%, #4A8830 100%);
        overflow: hidden;
    }

    /* Desktop Icons */
    .desktop-icons {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        flex-direction: column;
        gap: 25px;
        z-index: 0;
    }

    .desktop-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 72px;
        cursor: pointer;
        text-align: center;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        padding: 4px;
        border-radius: 3px;
    }

    .desktop-icon:hover {
        background: rgba(49, 106, 197, 0.4);
        outline: 1px dotted #fff;
    }

    .desktop-icon img {
        width: 48px;
        height: 48px;
        margin-bottom: 4px;
        filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
    }

    .desktop-icon span {
        font-family: var(--font-main);
        font-size: 11px;
        background: none;
        padding: 1px 2px;
    }

    /* Windows */
    .window {
        position: absolute !important;
        background-color: var(--xp-window-bg);
        border: 1px solid #0054E3;
        border-radius: 8px 8px 0 0;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255,255,255,0.3);
        width: 280px;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Side Panel */
    #side-panel {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 250px;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 9000;
    }

    /* Profile Widget in Side Panel */
    .profile-header {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: var(--xp-window-bg);
        border: 1px solid #0054E3;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        padding: 8px;
        margin-bottom: 0;
    }

    .profile-pic {
        width: 80px;
        height: 80px;
        margin-bottom: 5px;
        border: 2px solid #0054E3;
        border-radius: 5px;
    }

    .profile-name {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .profile-status {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .profile-stats {
        justify-content: center;
        gap: 10px;
        font-size: 10px;
    }

    /* Music Player in Side Panel */
    .music-player-box {
        width: 100%;
        margin-bottom: 0;
        border-top: none;
        border-radius: 0 0 0 0;
        padding-top: 0;
    }

    .music-player-box .section-title {
        display: none;
    }

    .music-player.window {
        width: 100%;
    }

    .mural-messages.window {
        width: 350px;
        height: 300px;
    }

    .friends-grid.window {
        width: 300px;
    }

    /* Title Bars */
    .section-title,
    .window-title-bar {
        background: linear-gradient(180deg, #0997FF 0%, #0053E0 8%, #0050DB 20%, #0263F0 30%, #0572FF 50%, #0262EE 70%, #004BD5 85%, #003EBC 95%, #003399 100%);
        color: #fff;
        padding: 4px 8px;
        font-family: 'Trebuchet MS', var(--font-main);
        font-weight: bold;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: move;
        position: sticky;
        top: 0;
        z-index: 10;
        margin: -3px -3px 5px -3px;
        border-radius: 8px 8px 0 0;
        min-height: 26px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Taskbar */
    #taskbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient(180deg, #245EDC 0%, #1941A5 40%, #1941A5 60%, #245EDC 100%);
        border-top: 1px solid #5B8FE8;
        align-items: center;
        padding: 0 2px;
        z-index: 10000;
    }

    /* Hide original nav */
    .top-nav {
        display: none;
    }

    /* Container */
    .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        position: static;
    }

    .main-content {
        display: block;
    }

    .left-column,
    .center-column,
    .right-column {
        display: contents;
    }
}

/* Start Menu - XP Style */
.start-menu {
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 380px;
    background: #fff;
    border: 2px solid #0054E3;
    border-radius: 8px 8px 0 0;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    overflow: hidden;
}

.start-side {
    width: 100%;
    background: linear-gradient(180deg, #2060D0 0%, #1545A0 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
}

.start-text {
    transform: none;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.start-text:first-child {
    color: #fff;
}

.start-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    background: #fff;
}

.start-item {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 12px;
    color: var(--xp-text);
    font-family: var(--font-main);
    border-radius: 0;
}

.start-item:hover {
    background: var(--xp-highlight);
    color: #fff;
}

.start-item img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.start-divider {
    height: 1px;
    background: #D4D0C8;
    margin: 3px 10px;
}

/* BSOD */
.bsod {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0000AA;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    padding: 50px;
    z-index: 999999;
    cursor: pointer;
    overflow: hidden;
}

.bsod p {
    margin-bottom: 10px;
}

/* Notepad Window Content */
.notepad-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.notepad-textarea {
    flex: 1;
    width: 100%;
    resize: none;
    border: none;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 5px;
    outline: none;
    overflow: auto;
    background: #fff;
    color: #000;
}

/* === DOOM WINDOW === */
.doom-window {
    position: absolute;
    width: 640px;
    height: 480px;
    z-index: 9999;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: #000;
    border: 1px solid #0054E3;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
}

.doom-window .window-title-bar {
    margin: 0;
    border-radius: 8px 8px 0 0;
    cursor: move;
}

.doom-window canvas,
.doom-window iframe {
    width: 100%;
    height: calc(100% - 26px);
    border: none;
    display: block;
    background: #000;
}

/* Marquee XP Style */
marquee {
    color: var(--xp-blue);
    font-weight: bold;
}