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

        body {
            font-family: "MS Sans Serif", sans-serif;
            font-size: 11px;
            overflow: hidden;
            cursor: default;
        }


        /* Windows 95 Desktop Background */
        .desktop {
            width: 100vw;
            height: 100vh;
            background-color: #008080;
            position: relative;
        }

        /* Desktop Icons */
        .desktop-icon {
            position: absolute;
            width: 100px;
            text-align: center;
            padding: 8px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.1s ease;
        }

        .desktop-icon:hover {
            background-color: rgba(0, 0, 128, 0.3);
            outline: 1px dotted #000080;
            transform: scale(1.05);
        }

        .desktop-icon.selected {
            background-color: #000080;
            color: white;
        }

        .desktop-icon img {
            width: 48px;
            height: 48px;
            margin-bottom: 5px;
            image-rendering: pixelated;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Windows */
        .window {
            position: absolute;
            background-color: #c0c0c0;
            border: 2px solid;
            border-color: #ffffff #808080 #808080 #ffffff;
            box-shadow: 1px 1px 0 0 #000;
            display: none;
        }

        .window.active {
            z-index: 100;
        }

        .window-header {
            background: linear-gradient(to right, #000080, #1084d0);
            color: white;
            padding: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: move;
        }

        .window-header.inactive {
            background: linear-gradient(to right, #808080, #b5b5b5);
        }

        .window-title {
            font-weight: bold;
            font-size: 11px;
            padding-left: 3px;
        }

        .window-controls {
            display: flex;
            gap: 2px;
        }

        .window-button {
            width: 16px;
            height: 14px;
            background-color: #c0c0c0;
            border: 1px solid;
            border-color: #ffffff #000000 #000000 #ffffff;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .window-button:active {
            border-color: #000000 #ffffff #ffffff #000000;
        }

        .window-content {
            padding: 10px;
            background-color: white;
            border: 2px inset #c0c0c0;
            margin: 2px;
            min-height: 200px;
        }

        /* Menu Bar */
        .menu-bar {
            background-color: #c0c0c0;
            border-bottom: 1px solid #000000;
            padding: 2px 4px;
            display: flex;
            gap: 10px;
        }

        .menu-item {
            padding: 4px 8px;
            cursor: pointer;
        }

        .menu-item:hover {
            background-color: #000080;
            color: white;
        }

        /* Taskbar */
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 32px;
            background-color: #c0c0c0;
            border-top: 2px solid #ffffff;
            display: flex;
            align-items: center;
            z-index: 1000;
        }

        /* Start Button */
        .start-button {
            height: 22px;
            padding: 0 6px;
            margin: 2px;
            background-color: #c0c0c0;
            border: 2px solid;
            border-color: #ffffff #808080 #808080 #ffffff;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: bold;
            cursor: pointer;
        }

        .start-button:active {
            border-color: #808080 #ffffff #ffffff #808080;
        }

        .start-button img {
            width: 16px;
            height: 16px;
        }

        /* Start Menu */
        .start-menu {
            position: absolute;
            bottom: 28px;
            left: 0;
            background-color: #c0c0c0;
            border: 2px solid;
            border-color: #ffffff #808080 #808080 #ffffff;
            width: 200px;
            display: none;
            z-index: 999;
        }

        .start-menu.open {
            display: block;
        }

        .start-menu-header {
            background: linear-gradient(to bottom, #000080, #1084d0);
            color: white;
            padding: 5px;
            font-weight: bold;
            writing-mode: vertical-lr;
            text-orientation: mixed;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 25px;
        }

        #taskbar-windows {
            display: flex;
            align-items: center;
            gap: 1px;
            flex-wrap: nowrap;
            overflow-x: auto;
        }

        .start-menu-items {
            margin-left: 25px;
            padding: 2px;
        }

        .start-menu-item {
            padding: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .start-menu-item:hover {
            background-color: #000080;
            color: white;
        }

        .start-menu-item img {
            width: 20px;
            height: 20px;
        }

        .separator {
            height: 1px;
            background-color: #808080;
            margin: 2px 4px;
        }

        /* Task buttons */
        .task-button {
            height: 22px;
            padding: 0 10px;
            margin: 2px;
            background-color: #c0c0c0;
            border: 2px solid;
            border-color: #ffffff #808080 #808080 #ffffff;
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            font-size: 11px;
        }

        .task-button.active {
            background-color: #dfdfdf;
            border-color: #808080 #ffffff #ffffff #808080;
            font-weight: bold;
        }

        /* Clock */
        .clock {
            margin-left: auto;
            margin-right: 4px;
            padding: 0 8px;
            border: 1px inset #c0c0c0;
            height: 22px;
            display: flex;
            align-items: center;
            font-size: 11px;
        }

        /* Button styles */
        .button {
            background-color: #c0c0c0;
            border: 2px solid;
            border-color: #ffffff #808080 #808080 #ffffff;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 11px;
            font-family: "MS Sans Serif", sans-serif;
        }

        .button:active {
            border-color: #808080 #ffffff #ffffff #808080;
        }

        /* Text input */
        .text-input {
            border: 2px inset #c0c0c0;
            background-color: white;
            padding: 3px;
            font-family: "MS Sans Serif", sans-serif;
            font-size: 11px;
        }

        /* Icon Base64 - Using emoji as placeholders */
        .icon-manuscript::before {
            content: "📖";
            font-size: 24px;
        }

        .icon-folder::before {
            content: "📁";
            font-size: 24px;
        }

        .icon-notepad::before {
            content: "📝";
            font-size: 24px;
        }

        .icon-dice::before {
            content: "🎲";
            font-size: 24px;
        }

        .icon-map::before {
            content: "🗺️";
            font-size: 24px;
        }

        .icon-mail::before {
            content: "📧";
            font-size: 24px;
        }

        .icon-coffee::before {
            content: "☕";
            font-size: 24px;
        }

        .icon-character::before {
            content: "🧙";
            font-size: 24px;
        }

        .icon-start::before {
            content: "⊞";
            font-size: 14px;
        }

        .icon-sword::before {
            content: "⚔️";
            font-size: 24px;
        }

        /* Links */
        a {
            color: #0000FF;
            text-decoration: underline;
            cursor: pointer;
        }

        a:visited {
            color: #800080;
        }

        /* Special text styling */
        .manuscript-text {
            font-family: "Courier New", monospace;
            font-size: 12px;
            line-height: 1.6;
            white-space: pre-wrap;
        }

        .platform-list {
            list-style: none;
            padding: 0;
        }

        .platform-list li {
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .platform-list li::before {
            content: "▸";
            color: #000080;
        }