* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
            overflow: hidden;
            height: 100vh;
            background: #000000;
            background-size: cover;
            background-position: center;
        }

        .desktop {
            height: calc(100vh - 40px);
            padding: 20px;
            position: relative;
        }

        .icon {
            width: 100px;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 8px;
            text-align: center;
            border: 1px solid transparent;
            position: absolute;
            user-select: none;
        }

        .icon:hover {
            background-color: rgba(0, 0, 128, 0.3);
            border: 1px dotted #fff;
        }

        .icon.selected {
            background-color: rgba(0, 0, 128, 0.4);
            border: 1px dotted #fff;
        }

        .icon.dragging {
            opacity: 0.7;
            z-index: 1000;
        }

        .icon img {
            width: 48px;
            height: 48px;
            margin-bottom: 5px;
            pointer-events: none;
        }

        .icon-label {
            color: white;
            font-size: 11px;
            text-shadow: 1px 1px 2px black;
            word-wrap: break-word;
            max-width: 90px;
            pointer-events: none;
        }

        /* Taskbar */
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to bottom, #c0c0c0 0%, #808080 100%);
            border-top: 2px solid #ffffff;
            display: flex;
            align-items: center;
            padding: 0 4px;
            box-shadow: inset 0 1px 0 #dfdfdf;
            z-index: 9999;
        }

        .start-button {
            height: 32px;
            padding: 0 8px;
            background: linear-gradient(to bottom, #c0c0c0 0%, #808080 100%);
            border: 2px outset #dfdfdf;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 13px;
            margin-right: 8px;
        }

        .start-button:active {
            border-style: inset;
            background: linear-gradient(to bottom, #808080 0%, #c0c0c0 100%);
        }

        .start-button img {
            width: 20px;
            height: 20px;
        }

        .taskbar-separator {
            width: 2px;
            height: 32px;
            background: #808080;
            box-shadow: 1px 0 0 #ffffff;
            margin: 0 4px;
        }

        .taskbar-buttons {
            display: flex;
            gap: 4px;
            flex: 1;
            overflow-x: auto;
        }

        .taskbar-button {
            height: 32px;
            padding: 0 8px;
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-size: 11px;
            max-width: 160px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .taskbar-button.active {
            border-style: inset;
            background: #808080;
        }

        .taskbar-button img {
            width: 16px;
            height: 16px;
        }

        .system-tray {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 32px;
            padding: 0 8px;
            border: 2px inset #808080;
            background: #c0c0c0;
        }

        .clock {
            font-size: 12px;
            font-family: 'MS Sans Serif', sans-serif;
        }

        .tray-icon {
            width: 16px;
            height: 16px;
        }

        /* Window styling */
        .window {
            position: absolute;
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            min-width: 300px;
            min-height: 200px;
            display: block;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }

        .window.minimized {
            display: none;
        }

        .window.maximized {
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: calc(100vh - 40px) !important;
        }

        .window-titlebar {
            background: linear-gradient(to right, #000080, #1084d0);
            color: white;
            padding: 3px 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: move;
            font-size: 12px;
            font-weight: bold;
            user-select: none;
        }

        .window.inactive .window-titlebar {
            background: linear-gradient(to right, #808080, #a0a0a0);
        }

        .window.maximized .window-titlebar {
            cursor: default;
        }

        .window-title {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .window-controls {
            display: flex;
            gap: 2px;
        }

        .window-button {
            width: 18px;
            height: 18px;
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
            color: #000000;
        }

        .window-button:active {
            border-style: inset;
        }

        .window-content {
            padding: 0;
            background: white;
            margin: 0;
            height: calc(100% - 26px);
            overflow: auto;
        }

        .window-content.has-padding {
            padding: 15px;
        }

        /* IE Navigation Bar */
        .ie-nav-bar {
            background: #c0c0c0;
            border-bottom: 2px solid #808080;
            padding: 4px;
        }

        .ie-menu-bar {
            background: #c0c0c0;
            border-bottom: 1px solid #808080;
            padding: 2px 4px;
            font-size: 11px;
        }

        .ie-menu-bar span {
            padding: 2px 8px;
            cursor: pointer;
        }

        .ie-menu-bar span:hover {
            background: #000080;
            color: white;
        }

        .ie-toolbar {
            background: #c0c0c0;
            padding: 4px;
            border-bottom: 2px solid;
            border-color: #808080 #dfdfdf #dfdfdf #808080;
            display: flex;
            gap: 2px;
            align-items: center;
        }

        .ie-toolbar-button {
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #808080 #808080 #dfdfdf;
            padding: 4px 8px;
            cursor: pointer;
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 4px;
            min-width: 60px;
            justify-content: center;
        }

        .ie-toolbar-button:hover {
            background: #d4d4d4;
        }

        .ie-toolbar-button:active {
            border-color: #808080 #dfdfdf #dfdfdf #808080;
            padding: 5px 7px 3px 9px;
        }

        .ie-separator {
            width: 2px;
            height: 24px;
            background: linear-gradient(to right, #808080, #dfdfdf);
            margin: 0 2px;
        }

        .ie-address-bar {
            background: #c0c0c0;
            padding: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
            border-bottom: 2px solid;
            border-color: #808080 #dfdfdf #dfdfdf #808080;
        }

        .ie-address-label {
            font-size: 11px;
            font-weight: bold;
        }

        .ie-address-input {
            flex: 1;
            background: white;
            border: 2px solid;
            border-color: #808080 #dfdfdf #dfdfdf #808080;
            padding: 3px 4px;
            font-size: 11px;
            font-family: "MS Sans Serif", Arial, sans-serif;
        }

        .file-icon {
            width: 80px;
            text-align: center;
            cursor: pointer;
            padding: 5px;
            font-size: 11px;
        }

        .file-icon:hover {
            background-color: rgba(0, 0, 128, 0.1);
        }

        .file-icon img {
            display: block;
            margin: 0 auto 5px;
        }
        
        .selection-box {
            position: fixed;
            border: 1px dotted #000080;
            background-color: rgba(0, 0, 128, 0.2);
            pointer-events: none;
            display: none;
            z-index: 999;
        }
        
        .win98-button {
            font-family: 'MS Sans Serif', sans-serif;
            font-size: 11px;
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            padding: 4px 12px;
            min-width: 75px;
            cursor: pointer;
        }

        .win98-button:active {
            border-style: inset;
            padding: 5px 11px 3px 13px;
        }

        .win98-button:focus {
            outline: 1px dotted #000;
            outline-offset: -4px;
        }
        
        .start-menu {
            position: fixed;
            bottom: 40px;
            left: 0;
            width: 200px;
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            display: none;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            z-index: 10000;
        }

        .start-menu.active {
            display: block;
        }

        .start-menu-item {
            padding: 8px 30px 8px 40px;
            cursor: pointer;
            font-size: 11px;
            border-bottom: 1px solid #808080;
            position: relative;
            background: #c0c0c0;
        }

        .start-menu-item:hover {
            background: #000080;
            color: white;
        }

        .start-menu-item img {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
        }

        #webamp-container {
            position: absolute;
            top: 0px;
            left: -800px;
            z-index: 100;
            display: none;
        }

        #webamp-container.active {
            display: block;
        }
        
        /* Windows 98 Alert Dialogs */
        .win98-alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .win98-alert {
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            width: 400px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            font-family: 'MS Sans Serif', sans-serif;
        }

        .win98-alert-titlebar {
            background: linear-gradient(to right, #000080, #1084d0);
            color: white;
            padding: 3px 5px;
            font-weight: bold;
            font-size: 11px;
        }

        .win98-alert-content {
            padding: 20px;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .win98-alert-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .win98-alert-text {
            font-size: 11px;
            color: #000;
            flex: 1;
        }

        .win98-alert-buttons {
            padding: 0 20px 15px 20px;
            display: flex;
            justify-content: center;
        }

        .win98-alert-button {
            background: #c0c0c0;
            border: 2px outset #dfdfdf;
            padding: 4px 20px;
            cursor: pointer;
            font-size: 11px;
            min-width: 75px;
            font-family: 'MS Sans Serif', sans-serif;
        }

        .win98-alert-button:active {
            border-style: inset;
            padding: 5px 19px 3px 21px;
        }
        
        .footer-gif-container {
            width: 20%;
            text-align: right;
            padding: 0;
            margin: 0;
            background: white;
        }

        .footer-gif-container-img {
            display: block;
            margin-left: auto;
            width: 50px;
            height: auto;
            cursor: pointer;
            margin-bottom: 0px;
        }