:root {
  --bg: #0a0a0a;
  --panel: rgba(16, 17, 20, 0.94);
  --panel-2: #16181d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f2f4f7;
  --muted: #8b93a1;
  --cyan: #00f3ff;
  --magenta: #ff00aa;
  --ok: #00f3ff;
  --bad: #ff4d6a;
  --accent: #00f3ff;
  --accent-dim: rgba(0, 243, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --snap-shadow: 0 0 0 1px var(--accent), 0 28px 90px rgba(0, 243, 255, 0.18), 0 40px 120px rgba(0, 0, 0, 0.65);
  --bar: 36px;
  --dock: 58px;
  --radius: 12px;
  --font: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Code", Consolas, monospace;
  --wall-dim: 0.42;
}

body.accent-magenta {
  --accent: #ff00aa;
  --ok: #ff00aa;
  --accent-dim: rgba(255, 0, 170, 0.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; overflow: hidden; background: var(--bg); color: var(--text); }
body { font: 13px/1.4 var(--font); letter-spacing: -0.01em; user-select: none; }

.hidden { display: none !important; }

.boot, .lock {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: #050506 url("/wallpaper.jpg") center / cover no-repeat;
}
.boot::before, .lock::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,0.55), rgba(5,5,6,0.82));
}
.boot > *, .lock-card { position: relative; text-align: center; }
.boot img, .lock img { border-radius: 16px; border: 1px solid var(--line); }
.boot h1, .lock h2 { margin: 14px 0 4px; font-size: 22px; font-weight: 650; }
.boot p, .lock p { margin: 0 0 18px; color: var(--muted); }
.bar { width: 180px; height: 3px; margin: 0 auto; background: #1a1c22; overflow: hidden; }
.bar i {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  animation: load 1.1s ease-in-out infinite;
}
@keyframes load { from { transform: translateX(-120%); } to { transform: translateX(320%); } }

.lock-card {
  padding: 28px 32px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
button {
  appearance: none; font: inherit; cursor: pointer;
  border: 1px solid var(--accent); background: var(--accent); color: #041016;
  font-weight: 650; padding: 8px 16px; border-radius: 8px;
}
button.ghost, .menubar button, .win .ctrl {
  background: transparent; color: var(--text); border-color: transparent;
}
button.ghost {
  border-color: var(--line);
  background: var(--panel-2);
  color: var(--text);
}
button:disabled { opacity: 0.45; cursor: default; }

.os { position: fixed; inset: 0; display: grid; grid-template-rows: var(--bar) 1fr var(--dock); }
.menubar {
  display: flex; align-items: center; gap: 10px;
  padding: 0 10px; z-index: 80;
  background: rgba(10,10,10,0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.menubar .logo {
  color: var(--accent); font-size: 14px; padding: 4px 10px;
  border-radius: 8px;
}
.menubar .logo:hover, .menubar .logo.on {
  background: var(--accent-dim);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent);
}
#menu-app { font-weight: 650; }
.grow { flex: 1; }
#clock { font-variant-numeric: tabular-nums; color: var(--muted); }
.menubar button { padding: 4px 8px; }

.tray {
  display: flex; align-items: center; gap: 2px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.tray .tray-item {
  min-width: 22px; height: 22px; padding: 0 6px;
  display: grid; place-items: center;
  color: var(--muted); font-size: 11px; border-radius: 6px;
}
.tray .tray-item:hover { color: var(--accent); background: var(--accent-dim); }

.desktop {
  position: relative; overflow: hidden;
  background: #050506 url("/wallpaper.jpg") center / cover no-repeat;
}
.desktop::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,6, var(--wall-dim)), rgba(5,5,6, calc(var(--wall-dim) + 0.12))),
    radial-gradient(1200px 600px at 80% 10%, rgba(255,0,170,0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 90%, rgba(0,243,255,0.1), transparent 50%);
}

.icons {
  position: absolute; top: 16px; right: 12px;
  display: grid; gap: 10px; z-index: 1;
}
.desk-icon {
  width: 84px; text-align: center; color: #fff;
  text-shadow: 0 1px 6px #000; cursor: pointer; padding: 6px;
  border-radius: 10px; border: 1px solid transparent;
}
.desk-icon:hover { background: rgba(0,243,255,0.12); border-color: rgba(0,243,255,0.25); }
.desk-icon .glyph {
  width: 44px; height: 44px; margin: 0 auto 6px;
  display: grid; place-items: center;
  border-radius: 12px; background: rgba(10,10,10,0.7);
  border: 1px solid var(--line); font-size: 18px; color: var(--accent);
}
.desk-icon span { display: block; font-size: 11px; }

.dock {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  padding: 6px 12px 8px; z-index: 70;
  background: rgba(10,10,10,0.82);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.dock-apps { display: flex; align-items: flex-end; gap: 8px; }
.dock button, .dock-apps button {
  position: relative;
  width: 44px; height: 44px; padding: 0;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(16,17,20,0.88); color: var(--accent);
  font-size: 17px; box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.dock button:hover, .dock-apps button:hover { border-color: var(--accent); transform: translateY(-4px); }
.dock button.on, .dock-apps button.on { outline: none; }
.dock-apps button.on::after,
.dock-apps button.min-dot::after {
  content: ""; position: absolute; left: 50%; bottom: 3px;
  width: 14px; height: 3px; border-radius: 2px;
  background: var(--accent); transform: translateX(-50%);
  box-shadow: 0 0 8px var(--accent);
}
.dock-apps button.min-dot::after { width: 6px; opacity: 0.55; }
.dock-apps button.bounce { animation: dock-bounce 0.45s ease; }
@keyframes dock-bounce {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-16px); }
  65% { transform: translateY(-5px); }
}

.task-pills {
  display: flex; gap: 6px; max-width: 46vw; overflow: auto;
  scrollbar-width: none;
}
.task-pills button {
  width: auto; height: 32px; padding: 0 10px;
  border-radius: 8px; font-size: 11px; color: var(--text);
  white-space: nowrap;
}
.task-pills button.on { border-color: var(--accent); color: var(--accent); box-shadow: var(--snap-shadow); }

.snap-ghost {
  position: absolute; pointer-events: none; z-index: 50;
  border: 2px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  box-shadow: var(--snap-shadow);
  border-radius: 10px;
  opacity: 0; transition: opacity 0.12s ease;
}
.snap-ghost.show { opacity: 1; }

.win {
  position: absolute; min-width: 280px; min-height: 180px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-rows: 32px 1fr;
  backdrop-filter: blur(18px); overflow: hidden;
}
.win.max { inset: 8px !important; width: auto !important; height: auto !important; border-radius: 10px; }
.win.snap-left, .win.snap-right {
  border-radius: 0;
  box-shadow: var(--snap-shadow);
}
.win.focus {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 70%, transparent), var(--shadow);
  outline: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 0;
}
.win.focus.snap-left, .win.focus.snap-right, .win.focus.max {
  box-shadow: var(--snap-shadow);
}
.win.min-anim {
  transform: scale(0.86) translateY(24px);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.win .titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 0 8px; cursor: grab;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--line);
}
.win.focus .titlebar { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.win .titlebar:active { cursor: grabbing; }
.win .dots { display: flex; gap: 6px; }
.win .ctrl {
  width: 12px; height: 12px; padding: 0; border-radius: 50%;
  border: 0;
}
.win .ctrl.close { background: #ff4d6a; }
.win .ctrl.min { background: #ffb020; }
.win .ctrl.max { background: #2ee59d; }
.win h3 { margin: 0; font-size: 12px; font-weight: 650; flex: 1; }
.win .body {
  overflow: auto; padding: 12px;
  user-select: text; background: rgba(8,8,10,0.35);
}
.win .body.fill { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.win .resize {
  position: absolute; right: 0; bottom: 0; width: 14px; height: 14px; cursor: nwse-resize;
}

.term { font-family: var(--mono); font-size: 12px; min-height: 100%; padding: 8px; }
.term .out { white-space: pre-wrap; color: #c9d2dc; }
.term .line { display: flex; gap: 8px; margin-top: 6px; align-items: center; }
.term .prompt { color: var(--cyan); display: flex; gap: 0; flex-wrap: wrap; }
.term-user { color: var(--cyan); }
.term-host { color: var(--magenta); }
.term-path { color: #7dffb3; }
.term-prompt { color: var(--text); margin-left: 4px; }
.term-dir { color: var(--cyan); }
.term-ok { color: var(--cyan); }
.term-err { color: var(--bad); }
.term input {
  flex: 1; background: transparent; border: 0; color: var(--text);
  font: inherit; outline: none;
}

.files-app { display: grid; grid-template-rows: auto auto 1fr; height: 100%; min-height: 0; }
.files-app .row { padding: 8px 10px 0; margin: 0; }
.crumb {
  display: flex; gap: 4px; flex-wrap: wrap; align-items: center;
  padding: 4px 10px 8px; color: var(--muted); font-size: 12px;
}
.crumb button { padding: 2px 8px; border-radius: 6px; }
.files { display: grid; grid-template-columns: 180px 1fr; gap: 0; min-height: 0; flex: 1; height: 100%; }
.files nav, .files-tree {
  overflow: auto; padding: 8px;
  border-right: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.files nav button, .files-tree button {
  display: block; width: 100%; text-align: left; margin: 0 0 4px;
  background: transparent; color: var(--muted); border: 1px solid transparent;
  padding: 5px 8px; border-radius: 6px; font-weight: 500;
}
.files nav button.on, .files-tree button.on { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, #12484d); background: var(--accent-dim); }
.files-pane { overflow: auto; padding: 8px 10px; }
.files-row {
  display: flex; align-items: center; gap: 8px; width: 100%;
  text-align: left; margin: 0 0 4px; padding: 7px 8px;
  background: transparent; color: var(--text); border: 1px solid transparent; border-radius: 8px;
}
.files-row:hover { background: var(--accent-dim); border-color: var(--line); }
.files-row.on { border-color: var(--accent); color: var(--accent); }
.files pre, .editor textarea, .notes textarea, .net-chrome input, .settings input, .addr {
  width: 100%; background: #0c0d10; color: var(--text);
  border: 1px solid var(--line); padding: 8px; font: inherit; border-radius: 8px;
}
.editor textarea, .notes textarea { min-height: 220px; resize: vertical; font-family: var(--mono); }
.md-preview {
  min-height: 220px; padding: 12px; background: #0c0d10; border: 1px solid var(--line);
  border-radius: 8px; line-height: 1.55;
}
.md-preview h1, .md-preview h2, .md-preview h3 { color: var(--accent); margin: 0.4em 0; }
.md-preview code { background: #16181d; padding: 1px 5px; border-radius: 4px; }

.paint-tools { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.swatch {
  width: 22px; height: 22px; padding: 0; border-radius: 50%; border: 2px solid #fff3;
}
.swatch.on { border-color: #fff; box-shadow: 0 0 0 2px var(--accent); }
.paint canvas { display: block; width: 100%; height: 280px; background: #0c0d10; border: 1px solid var(--line); cursor: crosshair; border-radius: 8px; }

.row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; align-items: center; }
.muted { color: var(--muted); }
.ok { color: var(--cyan); }
.bad { color: var(--bad); }

.calc-wrap { display: grid; gap: 8px; }
.calc-hist {
  max-height: 72px; overflow: auto; font-family: var(--mono); font-size: 11px;
  background: #0c0d10; border: 1px solid var(--line); border-radius: 8px; padding: 6px 8px;
  color: var(--muted);
}
.calc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; max-width: 280px; }
.calc input { grid-column: 1 / -1; text-align: right; font-size: 20px; padding: 10px; background: #0c0d10; color: var(--text); border: 1px solid var(--line); border-radius: 8px; }
.calc button { background: var(--panel-2); color: var(--text); border-color: var(--line); }

.clock-app { display: grid; grid-template-columns: 160px 1fr; gap: 16px; align-items: center; }
.analog {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 30%, transparent), inset 0 0 18px #000;
  position: relative; background: radial-gradient(circle at 40% 35%, #1a1d24, #050506);
}
.analog .hand { position: absolute; left: 50%; top: 50%; transform-origin: 50% 100%; background: var(--text); border-radius: 2px; }
.analog .hour { width: 4px; height: 36px; margin: -36px 0 0 -2px; background: var(--text); }
.analog .min { width: 3px; height: 48px; margin: -48px 0 0 -1.5px; background: var(--cyan); }
.analog .sec { width: 2px; height: 54px; margin: -54px 0 0 -1px; background: var(--magenta); }
.analog .cap {
  position: absolute; left: 50%; top: 50%; width: 10px; height: 10px;
  margin: -5px 0 0 -5px; border-radius: 50%; background: var(--accent);
}
.clock-face { font-size: 36px; font-weight: 650; letter-spacing: 0.04em; color: var(--accent); font-variant-numeric: tabular-nums; }
.world-clocks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.world-clocks div {
  background: #0c0d10; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px;
}
.world-clocks b { display: block; color: var(--accent); font-variant-numeric: tabular-nums; }

.pulse-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pulse-grid div { background: #0c0d10; border: 1px solid var(--line); padding: 10px; border-radius: 8px; }
.pulse-grid b { display: block; font-size: 18px; color: var(--accent); }
.meter { height: 8px; background: #1a1c22; border-radius: 99px; overflow: hidden; margin-top: 8px; }
.meter i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--magenta)); transition: width 0.4s ease; }
.spark { width: 100%; height: 64px; background: #0c0d10; border: 1px solid var(--line); border-radius: 8px; }

.tune-app {
  display: grid; grid-template-rows: auto auto auto auto 1fr;
  height: 100%; min-height: 0; background: linear-gradient(180deg, #101216, #08090c);
}
.tune-now {
  display: grid; grid-template-columns: 96px 1fr; gap: 12px;
  padding: 12px 14px 8px; align-items: center;
}
.tune-art {
  width: 96px; height: 96px; border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(0,243,255,0.18);
  background: #050506;
}
.tune-meta .kicker { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.tune-meta h2 { margin: 4px 0 2px; font-size: 18px; color: var(--accent); }
.tune-viz {
  width: 100%; height: 110px; display: block;
  background: #07080a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tune-transport, .tune-eq, .tune-modes { padding: 8px 12px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tune-transport button, .tune-modes button {
  min-width: 36px; height: 32px; padding: 0 10px;
  background: var(--panel-2); color: var(--text); border-color: var(--line);
}
.tune-transport button.on, .tune-modes button.on { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.tune-transport .play {
  min-width: 48px; height: 36px; border-radius: 18px;
  background: var(--accent); color: #041016; border-color: var(--accent);
}
.tune-seek, .tune-vol, .eq-sliders input[type="range"] {
  accent-color: var(--accent);
}
.tune-seek { flex: 1; min-width: 120px; }
.eq-sliders { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 11px; color: var(--muted); }
.eq-sliders label { display: flex; align-items: center; gap: 6px; }
.tune-list {
  overflow: auto; padding: 8px 10px 12px;
  border-top: 1px solid var(--line);
}
.tune-list button {
  display: flex; width: 100%; text-align: left; justify-content: space-between;
  margin: 0 0 4px; padding: 8px 10px;
  background: transparent; color: var(--text); border: 1px solid transparent; border-radius: 8px;
}
.tune-list button:hover { background: rgba(255,255,255,0.04); }
.tune-list button.on { background: var(--accent-dim); border-color: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--accent); }
.tune-drop {
  margin: 0 10px 10px; padding: 10px; text-align: center;
  border: 1px dashed var(--line); border-radius: 10px; color: var(--muted);
}
.tune-drop.hot { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.net-app { display: flex; flex-direction: column; height: 100%; min-height: 0; background: #0b0c10; }
.net-tabs {
  display: flex; gap: 4px; padding: 6px 8px 0; align-items: flex-end;
  background: #08090c; border-bottom: 1px solid var(--line);
}
.net-tab {
  display: flex; align-items: center; gap: 8px;
  max-width: 180px; padding: 6px 8px 7px;
  background: transparent; color: var(--muted);
  border: 1px solid transparent; border-bottom: 0;
  border-radius: 8px 8px 0 0; font-weight: 600;
}
.net-tab.on {
  background: #12141a; color: var(--text);
  border-color: var(--line);
  box-shadow: 0 -8px 18px rgba(0,243,255,0.06);
}
.net-tab .x { padding: 0 4px; color: var(--muted); background: transparent; border: 0; }
.net-add { width: 28px; height: 26px; padding: 0; background: var(--panel-2); color: var(--text); border-color: var(--line); }
.net-chrome {
  display: flex; gap: 6px; padding: 8px; align-items: center;
  background: #12141a; border-bottom: 1px solid var(--line);
}
.net-chrome button {
  height: 30px; min-width: 30px; padding: 0 10px;
  background: var(--panel-2); color: var(--text); border-color: var(--line);
}
.net-chrome button.on { color: var(--accent); border-color: var(--accent); }
.net-chrome input { flex: 1; }
.net-stage { flex: 1; min-height: 0; display: flex; flex-direction: column; position: relative; }
.net-reader {
  flex: 1; overflow: auto; padding: 22px 26px 32px;
  user-select: text; line-height: 1.6;
}
.net-reader .src { color: var(--muted); font-size: 12px; margin-bottom: 14px; word-break: break-all; }
.net-reader h1 { margin: 0 0 8px; font-size: 22px; color: var(--accent); }
.net-reader a { color: var(--cyan); }
.net-home {
  padding: 28px 24px;
}
.net-home h1 { font-size: 26px; margin: 0 0 6px; }
.net-search {
  display: flex; gap: 8px; margin: 16px 0 22px;
}
.net-search input { flex: 1; font-size: 15px; padding: 10px 12px; }
.net-preview { flex: 1; min-height: 0; display: flex; }
.net-preview iframe { width: 100%; height: 100%; border: 0; background: #111; }
.net-status {
  padding: 6px 12px; font-size: 11px; color: var(--muted);
  border-top: 1px solid var(--line); background: #0a0b0e;
}
.bm-list { display: grid; gap: 6px; }
.bm-list button { text-align: left; background: #12141a; color: var(--text); border-color: var(--line); }

.settings-app { display: grid; gap: 10px; }
.settings-app h4 { margin: 8px 0 0; font-size: 12px; color: var(--muted); font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; }
.toggle-row { display: flex; gap: 8px; }

.menu {
  position: fixed; top: var(--bar); left: 8px; z-index: 90;
  width: min(340px, 92vw); background: var(--panel);
  border: 1px solid var(--line); border-radius: 14px; padding: 10px;
  box-shadow: var(--snap-shadow);
  backdrop-filter: blur(22px);
}
.menu-head {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 12px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.menu-head img { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); }
.menu-head b { display: block; }
.menu-apps { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-height: 280px; overflow: auto; }
.menu button {
  display: block; width: 100%; text-align: left; background: transparent;
  color: var(--text); border: 0; padding: 8px 10px; border-radius: 8px;
}
.menu button:hover { background: var(--accent-dim); color: var(--accent); }
.menu-power {
  display: flex; gap: 6px; margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--line);
}
.menu-power button { flex: 1; text-align: center; border: 1px solid var(--line); background: var(--panel-2); }

.spot {
  position: fixed; left: 50%; top: 18%; transform: translateX(-50%);
  width: min(520px, 92vw); z-index: 100;
  background: var(--panel); border: 1px solid var(--accent);
  border-radius: 14px; box-shadow: var(--shadow); overflow: hidden;
}
.spot input {
  width: 100%; background: transparent; border: 0; color: var(--text);
  font: 16px var(--font); padding: 14px 16px; outline: none;
}
.spot ul { list-style: none; margin: 0; padding: 0 0 8px; max-height: 280px; overflow: auto; }
.spot li { padding: 8px 16px; cursor: pointer; color: var(--muted); }
.spot li:hover, .spot li.on { background: var(--accent-dim); color: var(--accent); }

.toasts {
  position: fixed; top: 46px; right: 14px; z-index: 120;
  display: grid; gap: 8px; width: min(320px, 92vw);
  pointer-events: none;
}
.toast {
  padding: 10px 12px; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--line);
  box-shadow: var(--shadow); color: var(--text);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.show { opacity: 1; transform: none; }
.toast.ok { border-color: var(--cyan); }
.toast.bad { border-color: var(--bad); }

@media (max-width: 720px) {
  .files { grid-template-columns: 1fr; }
  .clock-app { grid-template-columns: 1fr; }
  .dock-apps button { width: 38px; height: 38px; }
  .icons { right: 4px; top: 8px; }
  .win { left: 8px !important; right: 8px; width: auto !important; }
  .task-pills { display: none; }
}
