/* ==========================================================
   etbwebs.exe — a Windows 98 desktop, on purpose.
   Bevels are done the authentic way: two inset shadow rings,
   white/grey top-left and grey/black bottom-right.
   ========================================================== */

:root {
  --face:      #c0c0c0;
  --face-lt:   #dfdfdf;
  --white:     #ffffff;
  --shadow:    #808080;
  --black:     #000000;
  --title-a1:  #000080;
  --title-a2:  #1084d0;
  --title-i1:  #808080;
  --title-i2:  #b5b5b5;
  --desktop:   #3a6ea5;
  --desktop-2: #1d3c5c;
  --sel:       #000080;
  --link:      #0000ee;
  --ok:        #008000;
  --warn:      #a80000;

  --ui: Tahoma, "MS Sans Serif", "Segoe UI", Geneva, Verdana, sans-serif;
  --mono: "Lucida Console", "Courier New", ui-monospace, monospace;

  --tb-h: 30px;
}

/* Authentic bevels */
.out {
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.in {
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
}
.thin-in  { box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow); }
.thin-out { box-shadow: inset -1px -1px 0 var(--shadow), inset 1px 1px 0 var(--white); }

* { box-sizing: border-box; }

html, body {
  height: 100%; margin: 0; overflow: hidden;
  font-family: var(--ui); font-size: 12px; color: var(--black);
  background: var(--desktop);
  -webkit-font-smoothing: none;
  user-select: none;
}

button, input, textarea, select { font-family: var(--ui); font-size: 12px; }

a { color: var(--link); }
a:focus-visible, button:focus-visible, .icon:focus-visible {
  outline: 1px dotted #000; outline-offset: -3px;
}

/* ── Desktop ─────────────────────────────────────────── */
#desktop {
  position: fixed; inset: 0 0 var(--tb-h) 0;
  background:
    radial-gradient(120% 100% at 50% 0%, #4a82bd 0%, var(--desktop) 45%, var(--desktop-2) 100%);
  overflow: hidden;
}

/* faint dithered texture, very 1998 */
#desktop::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 2px);
}

.icons {
  position: absolute; top: 8px; left: 8px;
  display: grid; grid-auto-flow: column; grid-template-rows: repeat(7, 84px);
  gap: 2px 6px; align-content: start;
}

.icon {
  width: 82px; padding: 6px 2px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: none; border: 0; cursor: default; color: #fff;
  text-align: center; line-height: 1.25;
}
.icon .glyph {
  width: 34px; height: 34px; display: grid; place-items: center;
  font-size: 30px; line-height: 1;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,.75));
}
/* A full outline, not a drop shadow: wallpapers can be light, dark or busy,
   and the labels have to stay readable on all of them. */
.icon .label {
  padding: 1px 3px; font-size: 11px;
  word-break: break-word;
  text-shadow:
     1px  1px 0 #000,  -1px -1px 0 #000,
     1px -1px 0 #000,  -1px  1px 0 #000,
     0 2px 3px rgba(0,0,0,.9);
}
.icon.selected .label { background: var(--sel); outline: 1px dotted #fff; outline-offset: -1px; }
.icon.selected .glyph { filter: drop-shadow(1px 1px 0 rgba(0,0,0,.55)) hue-rotate(200deg) brightness(.85); }

.shortcut { position: relative; }
/* Sits on the bottom-left corner of the 34px glyph, not over the label. */
.shortcut::after {
  content: "↰"; position: absolute; left: 23px; top: 27px;
  width: 13px; height: 13px; font-size: 10px; line-height: 12px;
  background: #fff; color: #000; border: 1px solid #555; text-align: center;
}

/* ── Drag-selection marquee ──────────────────────────── */
/* White dashes with a black halo, so the box reads on a pale wallpaper
   (Great Wave) just as well as on the dark default. */
#marquee {
  position: absolute; z-index: 5; pointer-events: none;
  border: 1px dashed rgba(255, 255, 255, .95);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(0, 0, 0, .45);
  background: rgba(20, 70, 150, .3);
}
#marquee[hidden] { display: none; }

/* ── Pictures folder ─────────────────────────────────── */
.pics {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 10px; padding: 12px;
}
.pic {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 6px 4px; background: none; border: 0; cursor: default;
  font-size: 11px; text-align: center; color: #000;
}
.pic .shot {
  width: 96px; height: 68px; object-fit: cover; background: var(--face);
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
}
.pic .missing {
  width: 96px; height: 68px; display: grid; place-items: center;
  background: #fff; color: #888; font-size: 20px;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.pic .cap { line-height: 1.3; word-break: break-word; }
.pic.selected .cap { background: var(--sel); color: #fff; }
.pic.current .cap::after { content: " ●"; color: var(--ok); }

/* ── Display Properties ──────────────────────────────── */
.dp { padding: 12px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.dp-monitor {
  width: 190px; height: 148px; margin: 0 auto; flex: none;
  padding: 12px 12px 22px; position: relative;
  background: var(--face);
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.dp-screen {
  width: 100%; height: 100%; background: #3a6ea5;
  background-size: cover; background-position: center;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.dp-monitor::after {
  content: ""; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 46px; height: 5px; background: var(--shadow);
}
.dp-list {
  flex: 1; min-height: 78px; overflow: auto; background: #fff; padding: 2px;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
}
.dp-list button {
  display: block; width: 100%; text-align: left; padding: 3px 7px;
  background: none; border: 0; cursor: default; font-size: 12px;
}
.dp-list button.sel { background: var(--sel); color: #fff; }
.dp-row { display: flex; gap: 8px; align-items: center; justify-content: space-between; }
.dp-row select { padding: 2px; }
.dp-credit { font-size: 10.5px; color: #444; min-height: 28px; line-height: 1.4; }
.dp-actions { display: flex; gap: 6px; justify-content: flex-end; }

/* ── Windows ─────────────────────────────────────────── */
.win {
  position: absolute; min-width: 200px; min-height: 90px;
  background: var(--face); padding: 3px;
  display: flex; flex-direction: column;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt),
              3px 3px 0 rgba(0,0,0,.28);
}
.win.min { display: none; }
.win.max { left: 0 !important; top: 0 !important; width: 100% !important;
           height: calc(100vh - var(--tb-h)) !important; }

.titlebar {
  height: 20px; flex: none; display: flex; align-items: center; gap: 4px;
  padding: 0 2px 0 3px; cursor: default;
  background: linear-gradient(90deg, var(--title-a1), var(--title-a2));
  color: #fff; font-weight: 700; font-size: 11px;
}
.win.blur .titlebar {
  background: linear-gradient(90deg, var(--title-i1), var(--title-i2));
  color: #d8d8d8;
}
.titlebar .t-icon { font-size: 13px; line-height: 1; }
.titlebar .t-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tb-btn {
  width: 16px; height: 14px; flex: none; padding: 0;
  background: var(--face); border: 0; cursor: default;
  display: grid; place-items: center;
  font-family: var(--ui); font-size: 9px; font-weight: 700; line-height: 1;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.tb-btn:active { box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black),
                             inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow); }
.tb-btn.close { margin-left: 2px; }

.menubar {
  flex: none; display: flex; gap: 2px; padding: 2px 3px;
  border-bottom: 1px solid var(--face-lt);
}
.menubar button {
  background: none; border: 0; padding: 2px 7px; cursor: default;
}
.menubar button:hover { background: var(--sel); color: #fff; }
.menubar u { text-decoration: underline; }

.win-body {
  flex: 1; overflow: auto; background: var(--face);
  padding: 0; position: relative;
}
.win-body.paper {
  background: #fff; margin: 3px;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
  padding: 14px 16px;
}
.statusbar {
  flex: none; display: flex; gap: 3px; padding: 3px 2px 1px; font-size: 11px;
}
.statusbar span {
  padding: 2px 6px; background: var(--face);
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.statusbar span:first-child { flex: 1; }

.resize-grip {
  position: absolute; right: 0; bottom: 0; width: 16px; height: 16px;
  cursor: nwse-resize;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--shadow) 45% 52%, transparent 52% 60%,
                    var(--shadow) 60% 67%, transparent 67% 75%, var(--shadow) 75% 82%, transparent 82%);
}

/* ── Content typography ──────────────────────────────── */
.paper h1 { font-size: 17px; margin: 0 0 4px; }
.paper h2 { font-size: 13px; margin: 18px 0 6px; padding-bottom: 3px;
            border-bottom: 1px solid #d0d0d0; }
.paper h3 { font-size: 12px; margin: 14px 0 3px; }
.paper p  { margin: 0 0 9px; line-height: 1.55; }
.paper ul { margin: 0 0 10px; padding-left: 20px; line-height: 1.55; }
.paper li { margin-bottom: 3px; }
.paper .sub { color: #555; font-size: 11px; margin: 0 0 12px; }
.paper hr { border: 0; border-top: 1px solid #d0d0d0; margin: 14px 0; }
.paper .tag {
  display: inline-block; padding: 1px 6px; margin: 0 3px 4px 0;
  background: var(--face); font-size: 11px;
  box-shadow: inset -1px -1px 0 var(--shadow), inset 1px 1px 0 var(--white);
}
.paper table { border-collapse: collapse; width: 100%; font-size: 11px; }
.paper th, .paper td { text-align: left; padding: 4px 8px 4px 0; vertical-align: top; }
.paper th { color: #555; font-weight: 400; width: 92px; }

.field-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }

.btn98 {
  min-width: 76px; padding: 5px 12px; cursor: default;
  background: var(--face); border: 0; color: #000;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.btn98:active, .btn98.on {
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
  padding: 6px 11px 4px 13px;
}

.tree { list-style: none; margin: 0; padding: 4px 8px; font-size: 12px; }
.tree li { padding: 2px 0 2px 18px; position: relative; cursor: default; }
.tree li::before { content: "📁"; position: absolute; left: 0; }
.tree li.file::before { content: "📄"; }
.tree li:hover { background: var(--sel); color: #fff; }

/* ── Taskbar ─────────────────────────────────────────── */
#taskbar {
  position: fixed; left: 0; right: 0; bottom: 0; height: var(--tb-h);
  display: flex; align-items: center; gap: 4px; padding: 2px 3px;
  background: var(--face);
  box-shadow: inset 0 1px 0 var(--white), inset 0 2px 0 var(--face-lt);
  z-index: 9000;
}

#start-btn {
  display: flex; align-items: center; gap: 5px;
  height: 23px; padding: 0 8px 0 4px; flex: none;
  font-weight: 700; cursor: default; background: var(--face); border: 0;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
#start-btn.on {
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
}
#start-btn .flag {
  width: 17px; height: 15px; display: grid; place-items: center; font-size: 13px;
}

.tb-sep { width: 2px; height: 21px; flex: none;
          box-shadow: inset -1px 0 0 var(--white), inset 1px 0 0 var(--shadow); }

#tasks { display: flex; gap: 3px; flex: 1; overflow: hidden; }
.task {
  display: flex; align-items: center; gap: 5px;
  height: 23px; min-width: 0; max-width: 168px; flex: 0 1 168px;
  padding: 0 8px; cursor: default; background: var(--face); border: 0;
  font-size: 11px; text-align: left;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.task .tt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.task.active {
  font-weight: 700;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
  background-image: repeating-conic-gradient(var(--face-lt) 0 25%, var(--face) 0 50%);
  background-size: 2px 2px;
}

#tray {
  display: flex; align-items: center; gap: 6px; flex: none;
  height: 23px; padding: 0 7px;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.tray-btn { background: none; border: 0; cursor: default; font-size: 13px; line-height: 1; padding: 0; }
.tray-btn.off { opacity: .38; }
#clock { font-size: 11px; min-width: 52px; text-align: center; }

/* ── Start menu ──────────────────────────────────────── */
#start-menu {
  position: fixed; left: 3px; bottom: var(--tb-h); z-index: 9500;
  width: 232px; display: flex; padding: 3px;
  background: var(--face);
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt),
              3px 3px 0 rgba(0,0,0,.3);
}
#start-menu[hidden] { display: none; }
.sm-rail {
  width: 24px; flex: none;
  background: linear-gradient(180deg, var(--title-a2), var(--title-a1) 65%, #000040);
  position: relative;
}
.sm-rail span {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%) rotate(180deg); writing-mode: vertical-rl;
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .04em;
  white-space: nowrap;
}
.sm-rail span i { font-style: normal; color: var(--face-lt); font-weight: 400; }
.sm-items { flex: 1; padding-left: 3px; }
.sm-items button {
  display: flex; align-items: center; gap: 9px; width: 100%;
  padding: 5px 8px; background: none; border: 0; cursor: default;
  text-align: left; font-size: 12px;
}
.sm-items button:hover { background: var(--sel); color: #fff; }
.sm-items button .g { font-size: 17px; width: 20px; text-align: center; }
.sm-sep { height: 1px; margin: 3px 2px;
          box-shadow: 0 1px 0 var(--white); background: var(--shadow); }

/* ── Context menu ────────────────────────────────────── */
#ctx {
  position: fixed; z-index: 9600; min-width: 158px; padding: 2px;
  background: var(--face);
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt),
              3px 3px 0 rgba(0,0,0,.3);
}
#ctx[hidden] { display: none; }
#ctx button {
  display: block; width: 100%; padding: 4px 20px 4px 22px;
  background: none; border: 0; text-align: left; cursor: default; font-size: 12px;
}
#ctx button:hover:not(:disabled) { background: var(--sel); color: #fff; }
#ctx button:disabled { color: var(--shadow); text-shadow: 1px 1px 0 var(--white); }

/* ── Terminal ────────────────────────────────────────── */
.term {
  background: #000; color: #c0c0c0; font-family: var(--mono); font-size: 12.5px;
  line-height: 1.45; padding: 6px 8px; height: 100%; overflow: auto;
  user-select: text;
}
.term .ln { white-space: pre-wrap; word-break: break-word; }
.term .g { color: #00ff00; }
.term .c { color: #00ffff; }
.term .y { color: #ffff00; }
.term .r { color: #ff5555; }
.term .w { color: #ffffff; }
.term-input { display: flex; gap: 0; }
.term-input span { flex: none; }
.term-input input {
  flex: 1; background: none; border: 0; outline: 0; padding: 0;
  color: #c0c0c0; font-family: var(--mono); font-size: 12.5px;
}

/* ── Minesweeper ─────────────────────────────────────── */
.ms { padding: 6px; }
.ms-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px; margin-bottom: 6px; background: var(--face);
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.ms-lcd {
  font-family: var(--mono); font-size: 19px; font-weight: 700;
  background: #000; color: #ff0000; padding: 1px 4px; letter-spacing: 1px;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.ms-face {
  width: 27px; height: 27px; font-size: 15px; padding: 0; cursor: default;
  background: var(--face); border: 0; display: grid; place-items: center;
  box-shadow: inset -1px -1px 0 var(--black), inset 1px 1px 0 var(--white),
              inset -2px -2px 0 var(--shadow), inset 2px 2px 0 var(--face-lt);
}
.ms-face:active { box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--black); }
.ms-grid {
  display: grid; gap: 0; padding: 3px; background: var(--face); width: max-content;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow),
              inset -2px -2px 0 var(--face-lt), inset 2px 2px 0 var(--shadow);
}
.cell {
  width: 18px; height: 18px; padding: 0; border: 0; cursor: default;
  background: var(--face); font-family: var(--ui); font-size: 12px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
  box-shadow: inset -1px -1px 0 var(--shadow), inset 1px 1px 0 var(--white);
}
.cell.open {
  box-shadow: inset 1px 1px 0 var(--shadow);
  background: #bdbdbd;
}
.cell.boom { background: #ff0000; }
.cell[data-n="1"] { color: #0000ff; } .cell[data-n="2"] { color: #008000; }
.cell[data-n="3"] { color: #ff0000; } .cell[data-n="4"] { color: #000080; }
.cell[data-n="5"] { color: #800000; } .cell[data-n="6"] { color: #008080; }
.cell[data-n="7"] { color: #000000; } .cell[data-n="8"] { color: #808080; }

/* ── Snake ───────────────────────────────────────────── */
.snake-wrap { padding: 8px; display: flex; flex-direction: column; gap: 7px; align-items: center; }
.snake-wrap canvas {
  background: #000; image-rendering: pixelated;
  box-shadow: inset -1px -1px 0 var(--white), inset 1px 1px 0 var(--shadow);
}
.snake-hud { display: flex; gap: 14px; width: 100%; justify-content: space-between; font-size: 11px; }

/* ── BSOD ────────────────────────────────────────────── */
#bsod {
  position: fixed; inset: 0; z-index: 99999;
  background: #0000aa; color: #c0c0c0;
  font-family: var(--mono); font-size: 15px; line-height: 1.6;
  padding: 12vh 8vw; cursor: default;
}
#bsod[hidden] { display: none; }
#bsod b { background: #c0c0c0; color: #0000aa; padding: 0 7px; }
#bsod .blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── Screensaver ─────────────────────────────────────── */
#saver { position: fixed; inset: 0; z-index: 99000; background: #000; cursor: none; }
#saver[hidden] { display: none; }

/* ── Boot ────────────────────────────────────────────── */
#boot {
  position: fixed; inset: 0; z-index: 99500; background: #000;
  color: #c0c0c0; font-family: var(--mono); font-size: 13px; line-height: 1.6;
  padding: 26px 22px; overflow: hidden;
}
#boot[hidden] { display: none; }
#boot .hi { color: #fff; }
#boot .ok { color: #00ff00; }
#boot-splash {
  position: absolute; inset: 0; display: none;
  place-items: center; background: #000;
}
#boot-splash.show { display: grid; }
.splash-inner { text-align: center; }
.splash-logo {
  font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -.02em;
  font-family: var(--ui);
}
.splash-logo i { font-style: normal; color: #1084d0; }
.splash-sub { color: #808080; font-family: var(--ui); font-size: 13px; margin-top: 6px; }
.splash-bar {
  width: 220px; height: 14px; margin: 26px auto 0; padding: 2px;
  background: #000; box-shadow: inset -1px -1px 0 #fff, inset 1px 1px 0 #808080;
}
.splash-fill {
  height: 100%; width: 0; background: #1084d0;
  background-image: repeating-linear-gradient(90deg, #1084d0 0 8px, #000 8px 10px);
  transition: width .18s linear;
}

/* ── CRT overlay ─────────────────────────────────────── */
#crt {
  position: fixed; inset: 0; z-index: 98000; pointer-events: none;
  /* Light enough to read window text through; the vignette does the heavy lifting. */
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.07) 0 1px, transparent 1px 3px),
    radial-gradient(120% 120% at 50% 50%, transparent 60%, rgba(0,0,0,.30) 100%);
  mix-blend-mode: multiply;
}
#crt[hidden] { display: none; }

/* ── Toast / assistant ───────────────────────────────── */
#clip {
  position: fixed; right: 14px; bottom: calc(var(--tb-h) + 12px); z-index: 9700;
  width: 224px; padding: 9px 11px; background: #ffffe1; color: #000;
  border: 1px solid #000; font-size: 11.5px; line-height: 1.5;
  box-shadow: 3px 3px 0 rgba(0,0,0,.28);
}
#clip[hidden] { display: none; }
#clip .clip-head { display: flex; gap: 7px; align-items: center; margin-bottom: 5px; font-weight: 700; }
#clip .clip-head span { font-size: 17px; }
#clip .clip-x {
  margin-left: auto; background: none; border: 0; cursor: default;
  font-weight: 700; font-size: 12px; padding: 0 3px;
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 760px) {
  .icons { grid-template-rows: repeat(6, 78px); }
  .icon { width: 74px; }
  .win { max-width: calc(100vw - 12px); }
  .task { flex-basis: 110px; }
  #tray .tray-btn { display: none; }
  #start-btn span.slbl { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
