:root {
  --wallpaper:
    radial-gradient(ellipse at 50% 44%, rgba(216, 230, 255, 0.12), transparent 31%),
    radial-gradient(ellipse at 50% 70%, rgba(104, 160, 255, 0.07), transparent 30%),
    linear-gradient(180deg, #000 0%, #030306 58%, #000 100%);
  --text: #f4f6fb;
  --muted: #a9adb6;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(210, 226, 255, 0.34);
  --glass: rgba(4, 5, 8, 0.62);
  --panel: rgba(8, 10, 15, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.68);
  color-scheme: dark;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #000;
  color: var(--text);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.boot-screen,
.desktop {
  position: fixed;
  inset: 0;
  min-width: 320px;
}

.boot-screen {
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(220, 235, 255, 0.09), transparent 28%),
    #000;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.boot-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(156, 198, 255, 0.65) 0 1px, transparent 1.6px);
  background-position: 0 0, 34px 28px;
  background-size: 122px 118px, 170px 154px;
  opacity: 0.42;
}

.boot-screen.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.boot-aura {
  position: absolute;
  width: min(58vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow:
    inset 0 0 80px rgba(145, 185, 255, 0.08),
    0 0 120px rgba(145, 185, 255, 0.1);
  animation: bootPulse 7s ease-in-out infinite;
}

.boot-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(92vw, 560px);
  padding: 42px 28px;
  text-align: center;
}

.boot-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 70px rgba(160, 198, 255, 0.18);
}

.boot-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boot-mark span {
  max-width: 72px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

.boot-kicker {
  margin: 0 0 8px;
  color: #c9ced8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.boot-card h1 {
  margin: 0 0 30px;
  color: #d7d9df;
  font-family: "Arial Black", Impact, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 #777b84,
    0 0 30px rgba(210, 226, 255, 0.24);
}

.start-button {
  position: relative;
  min-width: 176px;
  min-height: 54px;
  padding: 0 28px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.start-button::before {
  position: absolute;
  inset: -40% -30%;
  content: "";
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.22), transparent 66%);
  transform: translateX(-85%);
  transition: transform 520ms ease;
}

.start-button span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.start-button:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.start-button:hover::before {
  transform: translateX(85%);
}

.desktop {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background-image: var(--wallpaper);
  background-position: center;
  background-size: cover;
  transition: opacity 850ms ease;
}

.desktop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.starfield,
.wallpaper-glow,
.noise,
.center-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.starfield {
  background-repeat: repeat;
}

.starfield-deep {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255, 235, 190, 0.65) 0 1px, transparent 1.4px);
  background-position: 8px 22px, 48px 84px;
  background-size: 118px 126px, 176px 154px;
  opacity: 0.68;
}

.starfield-near {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(178, 214, 255, 0.85) 0 1px, transparent 1.5px);
  background-position: 42px 18px, 12px 62px;
  background-size: 272px 224px, 338px 292px;
  opacity: 0.82;
}

.center-glass {
  left: 50%;
  top: 53%;
  width: min(54vw, 620px);
  height: min(40vw, 460px);
  border-radius: 54% 46% 60% 40%;
  background:
    radial-gradient(ellipse at 58% 30%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(ellipse at 42% 40%, rgba(167, 208, 255, 0.52), transparent 18%),
    conic-gradient(from 230deg, transparent, rgba(255, 255, 255, 0.2), transparent, rgba(129, 170, 225, 0.18), transparent);
  filter: blur(0.2px) drop-shadow(0 0 34px rgba(198, 224, 255, 0.2));
  opacity: 0.38;
  transform: translate(-50%, -43%) rotate(-9deg) skewX(-8deg);
  clip-path: polygon(4% 62%, 28% 24%, 54% 16%, 82% 34%, 96% 66%, 67% 86%, 25% 78%);
}

.wallpaper-glow {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 38%, rgba(0, 0, 0, 0.34) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, rgba(0, 0, 0, 0.46));
}

.noise {
  opacity: 0.08;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 5px 5px;
}

.system-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 28px;
  padding: 0 18px;
  color: rgba(244, 246, 251, 0.76);
  background: rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.system-brand {
  font-size: 0.82rem;
  font-weight: 800;
}

.system-center,
.system-status {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.82rem;
  font-weight: 700;
}

.system-center {
  color: rgba(244, 246, 251, 0.62);
}

.system-status {
  justify-content: flex-end;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d9dde6;
  box-shadow: 0 0 12px rgba(217, 221, 230, 0.7);
}

.battery-shell {
  display: inline-flex;
  width: 27px;
  height: 12px;
  padding: 2px;
  border: 1px solid rgba(244, 246, 251, 0.64);
  border-radius: 3px;
}

.battery-shell::after {
  width: 3px;
  height: 6px;
  margin: 1px -5px 0 3px;
  content: "";
  border-radius: 1px;
  background: rgba(244, 246, 251, 0.64);
}

.battery-shell span {
  width: 100%;
  border-radius: 1px;
  background: rgba(244, 246, 251, 0.8);
  transition: width 180ms ease;
}

.date-widget {
  position: absolute;
  top: 132px;
  left: 50%;
  z-index: 2;
  width: min(92vw, 620px);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

#desktopDay {
  color: rgba(219, 222, 230, 0.88);
  font-family: "Arial Black", Impact, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 0.88;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22),
    0 0 28px rgba(210, 226, 255, 0.26);
}

#desktopDate {
  margin-top: 6px;
  color: rgba(190, 193, 202, 0.8);
  font-family: "Arial Black", Impact, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
}

.desktop-icons {
  position: absolute;
  top: 126px;
  left: clamp(18px, 7vw, 108px);
  z-index: 3;
  display: grid;
  grid-template-columns: 86px;
  gap: 20px;
}

.desktop-icon {
  display: grid;
  width: 86px;
  min-height: 92px;
  justify-items: center;
  padding: 6px 5px;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  transition: background 140ms ease, transform 140ms ease;
}

.desktop-icon:hover,
.desktop-icon:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.logo-frame {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fallback {
  display: none;
  color: #f4f6fb;
  font-size: 1.2rem;
  font-weight: 900;
}

.logo-frame.is-missing img {
  display: none;
}

.logo-frame.is-missing .logo-fallback {
  display: block;
}

.desktop-icon-label {
  width: 100%;
  margin-top: 7px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow:
    0 1px 3px #000,
    0 0 8px #000;
  overflow-wrap: anywhere;
}

.window-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.window-layer.has-fullscreen {
  z-index: 45;
}

.os-window {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: min(720px, calc(100vw - 28px));
  height: min(460px, calc(100vh - 145px));
  min-width: min(410px, calc(100vw - 28px));
  min-height: 280px;
  overflow: hidden;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(4, 5, 8, 0.78);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(1.1);
  animation: windowOpen 180ms ease-out both;
}

.os-window.is-fullscreen {
  inset: 0 !important;
  z-index: 100000 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0;
  border-radius: 0;
  background: #020204;
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
}

.os-window.is-fullscreen .window-titlebar,
.os-window.is-fullscreen .window-resize-handle {
  display: none;
}

.os-window.is-resizing iframe {
  pointer-events: none;
}

.window-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  cursor: grab;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.window-titlebar:active {
  cursor: grabbing;
}

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

.window-control {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  color: transparent;
  transition: transform 140ms ease, filter 140ms ease;
}

.window-control:hover {
  filter: brightness(1.18);
  transform: scale(1.12);
}

.window-control.close {
  background: #ff5f68;
}

.window-control.fullscreen {
  background: #46d97e;
}

.fullscreen-exit {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  padding: 0 13px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(6, 7, 10, 0.74);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(1.08);
  color: rgba(244, 246, 251, 0.94);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.fullscreen-exit:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(18, 20, 26, 0.82);
  transform: translateY(-1px);
}

.os-window.is-fullscreen .fullscreen-exit {
  display: inline-flex;
}

.window-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 9px;
  color: rgba(244, 246, 251, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
}

.window-title .logo-frame {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.window-spacer {
  width: 52px;
}

.window-body {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #020204;
}

.window-body iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.window-body iframe:focus {
  outline: none;
}

.window-resize-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 24px;
  height: 24px;
  cursor: nwse-resize;
  touch-action: none;
}

.window-resize-handle::before {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid rgba(244, 246, 251, 0.36);
  border-bottom: 2px solid rgba(244, 246, 251, 0.36);
  border-radius: 0 0 4px 0;
}

.window-resize-handle::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid rgba(244, 246, 251, 0.22);
  border-bottom: 1px solid rgba(244, 246, 251, 0.22);
}

.window-resize-handle:hover::before {
  border-color: rgba(244, 246, 251, 0.66);
}

.settings-app {
  height: 100%;
  overflow: auto;
  padding: 22px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.08), transparent 28%),
    #030306;
}

.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.settings-header p,
.settings-header h2 {
  margin: 0;
}

.settings-header p {
  color: rgba(244, 246, 251, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.settings-header h2 {
  color: rgba(244, 246, 251, 0.94);
  font-size: 1.55rem;
  line-height: 1;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.settings-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.settings-panel h3 {
  margin: 0 0 16px;
  color: rgba(244, 246, 251, 0.9);
  font-size: 0.98rem;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field span {
  color: rgba(244, 246, 251, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  color: #f4f6fb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, 0.36);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input:focus {
  border-color: rgba(210, 226, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(210, 226, 255, 0.08);
}

.settings-button,
.settings-soft-button {
  min-height: 38px;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.settings-button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(244, 246, 251, 0.12);
}

.settings-soft-button {
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.settings-button:hover,
.settings-soft-button:hover,
.settings-button:focus-visible,
.settings-soft-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  outline: none;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.settings-soft-button.is-listening {
  border-color: rgba(159, 205, 255, 0.62);
  background: rgba(159, 205, 255, 0.16);
}

.settings-note {
  min-height: 17px;
  margin: 9px 0 0;
  color: rgba(244, 246, 251, 0.56);
  font-size: 0.76rem;
}

.key-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

#panicKeyLabel {
  display: inline-grid;
  min-width: 58px;
  min-height: 38px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-weight: 900;
}

.cmd-app {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(41, 255, 158, 0.05), transparent 32%),
    #030504;
  color: #d7ffe8;
  font-family: Consolas, "Courier New", monospace;
}

.cmd-output {
  min-height: 0;
  overflow: auto;
  padding: 16px 18px;
  font-size: 0.9rem;
  line-height: 1.48;
}

.cmd-output p {
  margin: 0 0 6px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cmd-echo {
  color: #8dffb8;
}

.cmd-error {
  color: #ff8d8d;
}

.cmd-form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 12px;
  border-top: 1px solid rgba(141, 255, 184, 0.18);
  background: rgba(0, 0, 0, 0.34);
}

.cmd-prompt {
  color: #8dffb8;
  font-weight: 900;
}

.cmd-form input {
  flex: 1;
  min-width: 0;
  height: 30px;
  padding: 0;
  color: #d7ffe8;
  caret-color: #8dffb8;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.dock-shell {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  max-width: min(calc(100vw - 24px), 600px);
  min-height: 70px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 6, 8, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(22px) saturate(1.18);
  transform: translateX(-50%);
}

.dock-apps {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dock-item {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.dock-item:hover,
.dock-item:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-9px) scale(1.1);
}

.dock-item::after {
  position: absolute;
  bottom: -8px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: transparent;
}

.dock-item.is-running::after {
  background: rgba(244, 246, 251, 0.86);
  box-shadow: 0 0 12px rgba(244, 246, 251, 0.76);
}

.dock-item .logo-frame {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: transparent;
}

.dock-divider {
  width: 1px;
  height: 34px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.16);
}

.dock-clock {
  min-width: 72px;
  color: rgba(244, 246, 251, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

@keyframes bootPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes windowOpen {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .system-bar {
    padding: 0 10px;
  }

  .system-brand,
  .system-center {
    display: none;
  }

  .system-bar {
    grid-template-columns: 1fr;
  }

  .date-widget {
    top: 88px;
  }

  .desktop-icons {
    top: 170px;
    left: 14px;
    grid-template-columns: repeat(3, 82px);
    gap: 12px;
  }

  .desktop-icon {
    width: 82px;
  }

  .dock-shell {
    bottom: 10px;
    min-height: 62px;
    padding: 8px 9px;
  }

  .dock-apps {
    gap: 6px;
  }

  .dock-item {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .dock-item .logo-frame {
    width: 32px;
    height: 32px;
  }

  .dock-divider,
  .dock-clock {
    display: none;
  }

  .settings-app {
    padding: 15px;
  }

  .settings-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
