#win98-container {
    background: #0b8d8d;
    color: #111;
    font-family: Tahoma, "MS Sans Serif", sans-serif;
    display: flex;
    flex-direction: column;
    cursor: default;
}

#win98-container button,
#win98-container input,
#win98-container textarea {
    font-family: inherit;
}

.desktop {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 12px 12px 16px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.07), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.win98-icon {
    position: absolute;
    width: 76px;
    border: none;
    background: transparent;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    padding: 3px 2px;
}

.icon-wrap {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.55));
}

.icon-wrap svg,
.menu-item-icon svg,
.tray-icon svg,
.title-icon svg,
.start-logo svg,
.quick-btn svg,
.run-icon svg,
.shutdown-icon svg {
    width: 100%;
    height: 100%;
}

.icon-monitor {
    color: #d9e2e8;
}

.icon-trash {
    color: #f5f7fb;
}

.icon-notepad {
    color: #b1dcff;
}

.icon-paint {
    color: #ffb3c2;
}

.desktop-folder {
    color: #f5d66a;
}

.game-icon {
    color: #ffffff;
}

.game-orange {
    color: #ff9800;
}

.game-yellow {
    color: #ffeb3b;
}

.game-purple {
    color: #b367ff;
}

.game-green {
    color: #4caf50;
}

.game-cyan {
    color: #00bcd4;
}

.win98-icon span:last-child {
    font-size: 11px;
    line-height: 1.2;
    padding: 2px 4px;
    text-align: center;
}

.win98-icon:hover span:last-child,
.win98-icon.selected span:last-child {
    background: #000080;
    border: 1px dotted rgba(255, 255, 255, 0.85);
}

.context-menu {
    position: absolute;
    min-width: 160px;
    padding: 2px;
    background: #c0c0c0;
    border: 1px solid #000;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
    z-index: 300;
}

.window-menu-popup {
    position: absolute;
    min-width: 186px;
    padding: 2px;
    background: #c0c0c0;
    border: 1px solid #000;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
    z-index: 320;
}

.window-menu-item {
    width: 100%;
    min-height: 24px;
    border: none;
    background: transparent;
    display: grid;
    grid-template-columns: 16px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 8px;
    font-size: 11px;
    text-align: left;
}

.window-menu-item:hover,
.window-menu-item:focus-visible {
    outline: none;
    background: #000080;
    color: #ffffff;
}

.window-menu-item.is-disabled {
    color: #7a7a7a;
}

.window-menu-item.is-disabled:hover,
.window-menu-item.is-disabled:focus-visible {
    background: transparent;
    color: #7a7a7a;
}

.window-menu-check {
    width: 12px;
    text-align: center;
    font-weight: 700;
}

.window-menu-shortcut {
    min-width: 48px;
    text-align: right;
}

.context-menu-item {
    width: 100%;
    min-height: 24px;
    border: none;
    background: transparent;
    text-align: left;
    padding: 4px 12px;
    font-size: 11px;
}

.context-menu-item:hover,
.context-menu-item:focus-visible {
    outline: none;
    background: #000080;
    color: #ffffff;
}

.context-menu-divider {
    height: 2px;
    margin: 3px 2px;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #ffffff;
}

.window {
    position: absolute;
    min-width: 260px;
    min-height: 160px;
    background: #c0c0c0;
    border: 1px solid #000;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #808080,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #404040;
    padding: 3px;
    display: flex;
    flex-direction: column;
}

.window.hidden {
    display: none !important;
}

.window.is-active {
    z-index: 20;
}

.window.is-dragging,
.window.is-resizing {
    user-select: none;
}

.window.is-maximized {
    left: 0 !important;
    top: 0 !important;
    border-width: 0;
    padding: 3px 3px 0;
}

.window[data-taskbar="false"] {
    z-index: 220;
}

.title-bar {
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #7a7a7a, #a9a9a9);
    color: #ffffff;
    padding: 2px 2px 2px 3px;
}

.window.is-active .title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
}

.title-bar-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    min-width: 0;
}

.title-icon {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

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

.title-bar-controls button,
.dialog-btn,
.toolbar-btn,
.start-btn,
.quick-btn,
.help-tab,
.properties-tab,
.tool-btn,
.back-btn,
.sidebar-link {
    border: none;
    background: #c0c0c0;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
}

.title-bar-controls button {
    width: 16px;
    height: 14px;
    padding: 0;
    position: relative;
}

.title-bar-controls button:active,
.dialog-btn:active,
.toolbar-btn:active,
.start-btn.is-open,
.start-btn:active,
.quick-btn:active,
.help-tab:active,
.properties-tab:active,
.tool-btn.active,
.tool-btn:active,
.back-btn:active,
.sidebar-link:active {
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff,
        inset 2px 2px 0 #808080,
        inset -2px -2px 0 #dfdfdf;
}

.title-bar-controls button::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.title-bar-controls button[aria-label="Minimize"]::before {
    content: "_";
    top: -4px;
}

.title-bar-controls button[aria-label="Maximize"]::before {
    content: "□";
    font-size: 9px;
}

.title-bar-controls button[aria-label="Close"]::before {
    content: "×";
    font-size: 12px;
}

.window-body {
    flex: 1;
    min-height: 0;
    margin-top: 2px;
    background: #c0c0c0;
    font-size: 12px;
}

.window-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #c0c0c0;
    border-bottom: 1px solid #a6a6a6;
}

.toolbar-btn {
    min-width: 48px;
    padding: 4px 8px;
    font-size: 11px;
}

.toolbar-address {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-size: 11px;
}

.toolbar-field,
.properties-field,
.win-input {
    border: 1px solid #404040;
    box-shadow:
        inset 1px 1px 0 #808080,
        inset -1px -1px 0 #ffffff;
    background: #ffffff;
}

.toolbar-field {
    min-width: 180px;
    padding: 3px 6px;
}

.explorer-body {
    display: flex;
}

.explorer-sidebar {
    width: 168px;
    padding: 10px;
    background: linear-gradient(180deg, #f9fbff, #dde6f4);
    border-right: 1px solid #808080;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-group strong {
    font-size: 11px;
    color: #0a2f82;
}

.sidebar-link {
    padding: 5px 8px;
    text-align: left;
    font-size: 11px;
}

.explorer-main {
    flex: 1;
    padding: 12px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.explorer-heading h2 {
    font-size: 20px;
    color: #0a2f82;
    margin-bottom: 4px;
}

.explorer-heading p {
    color: #555;
}

.explorer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.explorer-item {
    border: 1px solid transparent;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 8px;
}

.explorer-item:hover {
    border-color: #9db6d8;
    background: #f0f4fb;
}

.explorer-item.is-selected {
    border-color: #1a56c1;
    background: linear-gradient(180deg, #dceaff, #c8dcff);
}

.explorer-item-icon {
    width: 32px;
    height: 32px;
}

.drive-icon {
    color: #bdbdbd;
}

.folder-icon {
    color: #efd55a;
}

.explorer-list-body {
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.details-header,
.details-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 70px;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
}

.details-header {
    background: #cfd8ea;
    border-bottom: 1px solid #808080;
    font-weight: 700;
}

.details-list {
    display: flex;
    flex-direction: column;
}

.details-row:nth-child(even) {
    background: #f6f8fb;
}

.details-row.is-selected {
    background: linear-gradient(180deg, #0b4da2, #0a3f86);
    color: #ffffff;
}

.details-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-name svg {
    width: 18px;
    height: 18px;
}

.explorer-list-body.icons-view .details-header {
    display: none;
}

.explorer-list-body.icons-view .details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}

.explorer-list-body.icons-view .details-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.explorer-list-body.icons-view .details-row span:not(.details-name) {
    padding-left: 26px;
}

.recycle-body,
.welcome-body {
    display: grid;
    place-items: center;
}

.welcome-body {
    padding: 22px;
    text-align: center;
    gap: 16px;
}

.welcome-brand {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.welcome-mark {
    width: 56px;
    height: 56px;
    color: #008080;
}

.welcome-brand h2 {
    font-size: 20px;
}

.welcome-brand p {
    width: min(330px, 100%);
    line-height: 1.45;
}

.back-btn {
    min-width: 126px;
    padding: 5px 12px;
}

.recycle-empty {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.recycle-icon {
    width: 44px;
    height: 44px;
    color: #eceff1;
}

.help-body {
    display: flex;
    flex-direction: column;
}

.help-nav {
    display: flex;
    gap: 4px;
    padding: 8px 8px 0;
}

.help-tab,
.properties-tab {
    padding: 5px 10px;
    font-size: 11px;
}

.help-tab.active,
.properties-tab.active {
    position: relative;
    top: 1px;
    background: #dfdfdf;
}

.help-content {
    margin: 0 8px 8px;
    padding: 14px;
    flex: 1;
    background: #ffffff;
    border: 1px solid #808080;
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff;
}

.help-content h3 {
    margin-bottom: 10px;
}

.help-content ul {
    padding-left: 18px;
    line-height: 1.55;
}

.properties-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}

.properties-tabs {
    display: flex;
    gap: 4px;
}

.properties-panel {
    flex: 1;
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #dfdfdf;
    border: 1px solid #808080;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040;
}

.display-preview {
    width: 160px;
    display: grid;
    place-items: center;
}

.display-preview-screen {
    width: 122px;
    height: 94px;
    display: grid;
    place-items: center;
    background: #0b8d8d;
    color: #ffffff;
    border: 2px solid #404040;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #000;
}

.properties-controls {
    flex: 1;
    display: grid;
    align-content: start;
    gap: 6px;
}

.properties-controls label {
    font-size: 11px;
}

.properties-field {
    padding: 5px 6px;
    min-height: 24px;
}

.form-body,
.run-body,
.shutdown-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.run-field {
    grid-template-columns: 44px 1fr;
}

.win-input {
    height: 24px;
    padding: 4px 6px;
    font-size: 11px;
}

.run-copy,
.shutdown-copy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.run-icon,
.shutdown-icon {
    width: 32px;
    height: 32px;
    color: #0a2f82;
    flex: 0 0 auto;
}

.find-results {
    margin-top: 2px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #808080;
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff;
}

.find-results p {
    margin-top: 6px;
    line-height: 1.45;
}

.shutdown-options {
    display: grid;
    gap: 8px;
    padding-left: 44px;
    font-size: 11px;
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 0 12px 12px;
}

.dialog-btn {
    min-width: 74px;
    padding: 5px 12px;
    font-size: 11px;
}

.win-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 4px;
    background: #c0c0c0;
    border-bottom: 1px solid #a6a6a6;
}

.win-menu button {
    border: none;
    background: transparent;
    padding: 2px 6px;
    font-size: 11px;
}

.win-menu button.is-open,
.win-menu button:hover,
.win-menu button:focus-visible {
    outline: none;
    background: #000080;
    color: #ffffff;
}

.note-shell {
    padding: 0;
}

.notepad-textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 6px;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 12px;
    line-height: 1.45;
    background: #ffffff;
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff;
}

.status-strip {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 8px;
    border-top: 1px solid #808080;
    font-size: 11px;
    background: #c0c0c0;
}

.paint-body {
    display: flex;
    padding: 2px;
    gap: 2px;
}

#paint-app.hide-toolbox .paint-toolbar {
    display: none;
}

#paint-app.hide-palette .paint-palette {
    display: none;
}

#paint-app.hide-status .status-strip {
    display: none;
}

.paint-toolbar {
    width: 58px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    gap: 2px;
    padding: 1px;
}

.tool-btn {
    width: 26px;
    height: 26px;
    color: #111;
    display: grid;
    place-items: center;
}

.tool-btn svg {
    width: 15px;
    height: 15px;
}

.paint-canvas-shell {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.paint-canvas-wrapper {
    flex: 1;
    min-height: 0;
    overflow: auto;
    background: #808080;
    padding: 3px;
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff;
}

#paint-canvas {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: #ffffff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    cursor: crosshair;
}

.paint-palette {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    padding: 2px;
    background: #c0c0c0;
}

.palette-color {
    height: 20px;
    border: none;
    background: var(--paint-color);
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040;
}

.palette-color.active {
    outline: 1px solid #000080;
    outline-offset: -1px;
}

.game-window .window-body {
    padding: 0;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-window canvas {
    display: block;
    background: #000;
}

.resize-grip {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 14px;
    height: 14px;
    cursor: nwse-resize;
    background:
        linear-gradient(135deg, transparent 0 38%, #808080 38% 45%, transparent 45% 55%, #808080 55% 62%, transparent 62% 72%, #808080 72% 79%, transparent 79%);
}

.taskbar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 3px;
    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    box-shadow: inset 0 1px 0 #dfdfdf;
    position: relative;
    z-index: 150;
}

.start-btn {
    min-width: 84px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 700;
}

.start-logo {
    width: 16px;
    height: 16px;
    color: #00a4ef;
}

.taskbar-divider {
    width: 2px;
    height: 100%;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
}

.quick-launch {
    display: flex;
    align-items: center;
    gap: 2px;
}

.quick-btn {
    width: 24px;
    height: 24px;
    padding: 3px;
}

.quick-btn svg {
    color: #0a2f82;
}

.taskbar-tasks {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 2px;
    align-items: center;
    overflow: hidden;
}

.task-item {
    max-width: 188px;
    min-width: 124px;
    height: 24px;
    border: none;
    background: #c0c0c0;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-item.is-active {
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #ffffff,
        inset 2px 2px 0 #808080,
        inset -2px -2px 0 #dfdfdf;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.06) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.06) 50%, rgba(0, 0, 0, 0.06) 75%, transparent 75%),
        #dcdcdc;
    background-size: 6px 6px;
}

.task-item-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.tray {
    height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    box-shadow:
        inset 1px 1px 0 #808080,
        inset -1px -1px 0 #ffffff,
        inset 2px 2px 0 #404040,
        inset -2px -2px 0 #dfdfdf;
    font-size: 11px;
}

.tray-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tray-icon {
    width: 12px;
    height: 12px;
    color: #555;
}

.start-menu {
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 214px;
    min-height: 322px;
    max-height: calc(100% - 2px);
    display: flex;
    overflow: hidden;
    background: #c0c0c0;
    color: #111;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
    z-index: 220;
}

.start-menu-left {
    width: 30px;
    background: linear-gradient(0deg, #0a2f82, #1084d0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.start-menu-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transform: rotate(-90deg);
}

.start-menu-items {
    flex: 1;
    min-height: 0;
    padding: 2px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.start-menu-item {
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 11px;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
    position: relative;
}

.start-menu-item:hover,
.start-menu-item:focus-visible,
.has-submenu:hover {
    outline: none;
    background: #000080;
    color: #ffffff;
}

.menu-item-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.arrow {
    margin-left: auto;
    font-size: 9px;
}

.start-menu-divider {
    height: 2px;
    margin: 3px 2px;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #ffffff;
}

.has-submenu {
    position: relative;
}

.start-submenu {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    width: 176px;
    padding: 2px;
    background: #c0c0c0;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
    display: none;
}

.wide-menu {
    width: 190px;
}

.has-submenu:hover > .start-submenu {
    display: block;
}

.boot-screen,
.poweroff-screen {
    position: fixed;
    inset: 0;
    z-index: 500;
}

.boot-screen {
    background: #000;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.boot-panel {
    width: min(540px, calc(100vw - 40px));
    display: grid;
    gap: 18px;
    justify-items: center;
}

.boot-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.boot-logo-mark {
    width: 68px;
    height: 68px;
    color: #00a4ef;
}

.boot-logo-copy {
    display: grid;
    gap: 2px;
}

.boot-edition {
    font-size: 15px;
    letter-spacing: 0.12em;
}

.boot-logo-copy strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.boot-logo-copy strong span {
    color: #f3c737;
}

.boot-progress {
    width: 320px;
    height: 18px;
    padding: 2px;
    border: 1px solid #7f7f7f;
    box-shadow:
        inset 1px 1px 0 #404040,
        inset -1px -1px 0 #dfdfdf;
}

.boot-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #001a7a, #0b74d1);
    animation: boot-progress 1.8s linear forwards;
}

.boot-status {
    font-size: 13px;
}

.poweroff-screen {
    background: #000080;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.poweroff-message {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.poweroff-message p {
    font-size: 26px;
    font-weight: 700;
}

#power-on-btn {
    min-width: 120px;
    padding: 6px 16px;
    border: none;
    background: #c0c0c0;
    color: #111;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #404040,
        inset 2px 2px 0 #dfdfdf,
        inset -2px -2px 0 #808080;
}

body.is-booting #win98-container,
body.is-booting .taskbar,
body.is-shutdown #win98-container {
    visibility: hidden;
}

body:not(.is-booting) #boot-screen {
    display: none;
}

.desktop.flash-refresh {
    animation: desktop-flash 220ms linear 1;
}

@keyframes boot-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes desktop-flash {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.14); }
    100% { filter: brightness(1); }
}

@media (max-width: 820px) {
    .window {
        min-width: 220px;
    }

    .task-item {
        min-width: 92px;
    }

    .explorer-sidebar {
        width: 148px;
    }

    .boot-logo-copy strong {
        font-size: 34px;
    }
}
