        /* Windows 98 Retro Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'MS Sans Serif', 'Arial', 'px_sans_nouveaux', sans-serif;
            background-image: url('img/geokash-gingham-%239a5338-%23fc8d9d-70px.png');
            background-color: #008080;
            color: #000;
            min-height: 100vh;
            padding: 20px;
            overflow: hidden;
        }
        
        /* Desktop Icons */
        .desktop-icons {
            position: fixed;
            top: 20px;
            left: 20px;
            display: grid;
            grid-template-columns: repeat(2, 80px);
            gap: 15px;
            z-index: 10;
        }

        .desktop-icon {
            width: 80px;
            text-align: center;
            color: #fff;
            text-shadow: 1px 1px 0 #000;
            cursor: pointer;
            user-select: none;
            padding: 5px;
        }

        .desktop-icon:hover {
            background: rgba(0, 0, 128, 0.5);
            border: 1px dotted white;
        }

        .desktop-icon img {
            width: 40px;
            height: 40px;
            margin-bottom: 5px;
            filter: drop-shadow(2px 2px 0 #000);
        }

        .icon-label {
            font-size: 12px;
            word-break: break-word;
        }

        /* Windows */
        .window {
            position: absolute;
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
            box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
            min-width: 300px;
            min-height: 200px;
            resize: both;
            overflow: hidden;
            z-index: 100;
        }

        .window.maximized {
            width: calc(100% - 40px) !important;
            height: calc(100% - 80px) !important;
            top: 20px !important;
            left: 20px !important;
            resize: none;
        }

        .window.minimized {
            display: none;
        }

        /* Window Title Bar */
        .title-bar {
            background: linear-gradient(90deg, #000080, #1084d0);
            color: white;
            padding: 3px 5px;
            font-size: 13px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: move;
            user-select: none;
            height: 22px;
        }

        .title-text {
            padding-left: 5px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            gap: 5px;
        }

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

        .window-btn {
            width: 18px;
            height: 16px;
            background: #c0c0c0;
            border: 1px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
            font-size: 12px;
            line-height: 14px;
            text-align: center;
            cursor: pointer;
            font-weight: bold;
        }

        .window-btn:hover {
            background: #d0d0d0;
        }

        .window-btn:active {
            border-color: #404040 #dfdfdf #dfdfdf #404040;
        }

        /* Window Content */
        .window-content {
            padding: 15px;
            background: #c0c0c0;
            height: calc(100% - 22px);
            overflow-y: auto;
        }

        .window-content-inner {
            background: #fff;
            border: 2px inset #c0c0c0;
            padding: 15px;
            height: 100%;
            overflow-y: auto;
        }

        /* Windows 98 Styled Elements */
        .win98-btn {
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
            padding: 5px 15px;
            font-family: 'MS Sans Serif', 'Arial', sans-serif;
            font-size: 14px;
            cursor: pointer;
            min-width: 75px;
        }

        .win98-btn:hover {
            background: #d0d0d0;
        }

        .win98-btn:active {
            border-color: #404040 #dfdfdf #dfdfdf #404040;
        }

        .win98-input {
            background: #fff;
            border: 2px inset #c0c0c0;
            padding: 5px;
            font-family: 'MS Sans Serif', 'Arial', sans-serif;
            font-size: 14px;
            width: 200px;
        }

        .win98-checkbox {
            width: 15px;
            height: 15px;
            background: #c0c0c0;
            border: 2px inset #c0c0c0;
            margin-right: 5px;
            vertical-align: middle;
        }

        /* Taskbar */
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #c0c0c0;
            border-top: 2px solid #dfdfdf;
            height: 28px;
            display: flex;
            align-items: center;
            padding: 0 5px;
            z-index: 1000;
        }
        .start-btn {
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
            padding: 5px 15px;
            font-family: 'MS Sans Serif', 'Arial', sans-serif;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            height: 24px;
            width: 45px;
        }

        .start-btn img {
            text-align: center;
            width: 16px;
            height: 16px;
        }
        
          .pixelated {
          image-rendering: optimizeSpeed;
        }

        .taskbar-items {
            display: flex;
            gap: 5px;
            margin-left: 10px;
            flex-grow: 1;
            overflow-x: auto;
        }

        .taskbar-item {
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
            padding: 5px 10px;
            font-size: 12px;
            white-space: nowrap;
            cursor: pointer;
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .taskbar-item.active {
            border-color: #404040 #dfdfdf #dfdfdf #404040;
        }

        .system-tray {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
            height: 100%;
            border-left: 2px solid #404040;
            font-size: 12px;
            font-family: 'Arial';
        }

        /* Folder Structure */
        .folder {
            display: flex;
            align-items: center;
            padding: 5px;
            cursor: pointer;
            border: 1px dotted transparent;
        }

        .folder:hover {
            background: #000080;
            color: white;
            border: 1px dotted white;
        }

        .folder-icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .folder-content {
            display: none;
            margin-left: 20px;
            padding-left: 10px;
            border-left: 1px dotted #c0c0c0;
        }

        .folder.open .folder-content {
            display: block;
        }

        /* Control Panel Items */
        .control-panel-item {
            display: flex;
            align-items: center;
            padding: 8px;
            border-bottom: 1px solid #c0c0c0;
            cursor: pointer;
        }

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

        .cp-icon {
            font-size: 24px;
            margin-right: 10px;
            width: 40px;
            text-align: center;
        }

        /* Program Files Grid */
        .program-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 10px;
        }

        .program-item {
            text-align: center;
            padding: 10px;
            cursor: pointer;
        }

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

        .program-icon {
            font-size: 32px;
            margin-bottom: 5px;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 16px;
        }

        ::-webkit-scrollbar-track {
            background: #c0c0c0;
            border: 2px inset #c0c0c0;
        }

        ::-webkit-scrollbar-thumb {
            background: #c0c0c0;
            border: 2px solid;
            border-color: #dfdfdf #404040 #404040 #dfdfdf;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #d0d0d0;
        }

        /* Utility Classes */
        .flex {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }

        .grid {
            display: grid;
            gap: 10px;
        }

        .mt-10 { margin-top: 10px; }
        .mb-10 { margin-bottom: 10px; }
        .ml-10 { margin-left: 10px; }
        .text-center { text-align: center; }
        .hidden { display: none; }
        .block { display: block; }
        .inline-block { display: inline-block; }

        /* Status Bar */
        .status-bar {
            background: #c0c0c0;
            border-top: 2px inset #c0c0c0;
            padding: 3px 10px;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }