:root {
  --bg: #1b1b1b;
  --panel: #2b2b2b;
  --panel-light: #333333;
  --border: #555555;
  --text: #eeeeee;
  --text-dim: #aaaaaa;
  --red: #cc0000;
  --red-dark: #900000;
  --yellow: #cc9900;
  --green: #2e8b3d;
  --cyan: #2f8f9f;
  --topbar-h: 32px;
  --taskbar-h: 46px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button, input, select, textarea {
  font-family: inherit;
}

#ignition-screen,
#format-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

#format-screen {
  display: none;
}

#ignition-screen.hidden,
#format-screen.hidden {
  opacity: 0;
}

.ignition-stage {
  text-align: center;
}

.dial-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

#ignition-btn {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.ignition-btn-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--red);
}

.ignition-btn-core {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--panel-light);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text);
}

#ignition-btn.firing .ignition-btn-core {
  background: var(--red);
}

.ignition-icon {
  width: 26px;
  height: 26px;
  color: var(--red);
}

#ignition-btn.firing .ignition-icon {
  color: var(--text);
}

.ignition-btn-text {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.3;
}

.ignition-hint {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.format-panel {
  width: 340px;
  text-align: center;
}

.welcome-eyebrow {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.format-title {
  font-size: 22px;
  font-weight: bold;
  margin: 4px 0 6px;
}

.format-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 16px;
}

.format-options {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.format-btn {
  width: 140px;
  padding: 14px 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.format-btn:hover {
  border-color: var(--red);
}

.format-btn-time {
  font-size: 16px;
}

.format-btn-label {
  font-size: 11px;
  font-weight: bold;
  color: var(--text-dim);
  letter-spacing: 1px;
}

#desktop {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#wallpaper {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.55) 100%),
    url('georgeTpose.png') center / cover no-repeat,
    var(--bg);
  background-blend-mode: normal;
  z-index: 0;
}

#topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  font-size: 13px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-logo {
  font-weight: bold;
  letter-spacing: 1px;
}

.accent {
  color: var(--red);
}

.topbar-divider {
  color: var(--border);
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.topbar-clock {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  min-width: 80px;
  text-align: right;
}

.race-countdown {
  position: absolute;
  top: calc(var(--topbar-h) + 10px);
  right: 12px;
  padding: 14px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  text-align: right;
  z-index: 5;
}

.countdown-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 5px;
}

.countdown-session {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 12px;
}

.countdown-clock {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit span {
  font-family: 'Courier New', monospace;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.countdown-unit label {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-top: 4px;
}

#taskbar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 26px;
  padding: 6px 18px;
  z-index: 1000;
  background: transparent;
  border: none;
  height: auto;
}

.dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: transform 0.18s cubic-bezier(.4,1.6,.5,1);
}

.dock-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 6px 14px rgba(0,0,0,0.45);
  transition: transform 0.18s cubic-bezier(.4,1.6,.5,1),
              filter 0.18s ease;
}

.dock-glyph {
  width: 30px;
  height: 30px;
  display: block;
}

.dock-letter {
  font-family: 'Titillium Web', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.dock-welcome .dock-icon {
  background: linear-gradient(160deg, #4a6cff 0%, #2a3fcf 100%);
}

.dock-quiz .dock-icon {
  background: linear-gradient(160deg, #b572ff 0%, #6a2dc9 100%);
}

.dock-lightsout .dock-icon {
  background: linear-gradient(160deg, #ff2f43 0%, #b8001a 100%);
}

.dock-champions .dock-icon {
  background: linear-gradient(160deg, #1eb89a 0%, #0a7a64 100%);
}

.dock-calendar .dock-icon {
  background: linear-gradient(160deg, #6e7a96 0%, #38415c 100%);
}

.dock-cars .dock-icon {
  background: linear-gradient(160deg, #cb8a26 0%, #7a4f08 100%);
}

.dock-item:hover {
  transform: translateY(-14px) scale(1.20);
}
.dock-item:hover + .dock-item,
.dock-item:has(+ .dock-item:hover) {
  transform: translateY(-6px) scale(1.10);
}

.dock-item:focus-visible {
  outline: 2px solid #ffffffaa;
  outline-offset: 4px;
}

.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 15, 17, 0.92);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dock-item.open .dock-icon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}

.window {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 600px;
  height: 440px;
  top: 80px;
  left: 150px;
  background: var(--panel);
  border: 1px solid var(--border);
  z-index: 100;
}

#welcome    { top: 70px;  left: 110px; width: 660px; height: 420px; }
#lightsout  { top: 90px;  left: 220px; width: 740px; height: 460px; }
#champions  { top: 80px;  left: 320px; width: 600px; height: 500px; }
#quiz       { top: 80px;  left: 200px; width: 540px; height: 480px; }
#calendar   { top: 70px;  left: 140px; width: 700px; height: 540px; }
#cars       { top: 70px; left: 110px; width: 760px; height: 600px; }

.windowheader {
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 0 10px;
  background: var(--red-dark);
  border-bottom: 1px solid var(--border);
  cursor: grab;
}

.windowheader:active {
  cursor: grabbing;
}

.headertext {
  font-size: 12px;
  font-weight: bold;
  color: var(--text);
  letter-spacing: 0.5px;
}

.windowcontrols {
  display: flex;
  gap: 3px;
}

.winctrl {
  width: 22px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-light);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
}

.winctrl svg {
  width: 10px;
  height: 10px;
}

.winctrl:hover {
  background: var(--red);
}

.windowcontent {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}

.guide-body {
  display: flex;
  height: 100%;
  min-height: 0;
}

.btn-primary {
  width: 100%;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--text);
  background: var(--red);
  border: none;
  padding: 10px;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-primary:disabled {
  background: var(--panel-light);
  color: var(--text-dim);
  cursor: default;
}

.spec-label {
  display: block;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.spec-value {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.lightsout-content {
  display: flex;
  height: 100%;
}

.lo-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.lo-rig {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 16px 24px;
  background: var(--panel-light);
  border: 1px solid var(--border);
  cursor: pointer;
}

.lo-rig.go-flash {
  background: #1e3d22;
}

.lo-gantry {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  background: #111111;
  border: 1px solid var(--border);
}

.lo-light {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3a1010;
  border: 2px solid var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lo-light span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5a1818;
}

.lo-light.lit {
  border-color: var(--red);
}

.lo-light.lit span {
  background: var(--red);
}

.lo-status {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-dim);
  text-align: center;
  min-height: 18px;
}

.lo-readout {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.lo-readout #lo-result-value {
  font-family: 'Courier New', monospace;
  font-size: 44px;
  font-weight: bold;
}

.lo-readout-unit {
  font-size: 14px;
  color: var(--text-dim);
}

.lo-grade {
  font-size: 12px;
  font-weight: bold;
  min-height: 16px;
}

.lo-grade.grade-elite { color: var(--cyan); }
.lo-grade.grade-pro   { color: var(--green); }
.lo-grade.grade-good  { color: var(--yellow); }
.lo-grade.grade-avg   { color: var(--text-dim); }
.lo-grade.grade-slow  { color: var(--red); }

.lo-start-btn {
  width: auto;
  padding: 10px 26px;
}

.lo-sidebar {
  width: 220px;
  flex-shrink: 0;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.lo-stat-box {
  background: var(--panel-light);
  border: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lo-history-label {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.lo-history {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 160px;
  overflow-y: auto;
}

.lo-history-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  background: var(--panel-light);
  border: 1px solid var(--border);
  padding: 5px 8px;
}

.lo-history-grade {
  font-size: 10px;
  font-weight: bold;
  color: var(--text-dim);
}

.lo-history-empty {
  font-size: 12px;
  color: var(--text-dim);
  padding: 8px 0;
}

.lo-rules {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.lo-rules-title {
  font-size: 11px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 5px;
}

.lo-rules p {
  margin: 0 0 6px;
}

.lo-rules p:last-child {
  margin-bottom: 0;
}

.quiz-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.quiz-display {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.quiz-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.quiz-progress-label { letter-spacing: 0.12em; }
.quiz-progress-score { color: var(--cyan); font-weight: bold; }

.quiz-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(237,238,239,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff7a50);
  transition: width 0.3s ease;
}

.quiz-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-card--result {
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 36px 22px;
}

.quiz-question {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.4;
}

.quiz-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.quiz-choice:hover {
  background: var(--panel-light);
  border-color: rgba(237,238,239,0.18);
}

.quiz-choice:active { transform: translateY(1px); }

.quiz-choice:disabled { cursor: default; }

.quiz-choice-letter {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.quiz-choice--correct {
  background: rgba(28, 208, 122, 0.10);
  border-color: var(--green);
  color: var(--text);
}

.quiz-choice--correct .quiz-choice-letter {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.quiz-choice--wrong {
  background: rgba(227, 6, 29, 0.10);
  border-color: var(--red);
  color: var(--text);
}

.quiz-choice--wrong .quiz-choice-letter {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.quiz-choice--dim {
  opacity: 0.5;
}

.quiz-feedback {
  font-size: 13px;
  letter-spacing: 0.02em;
  min-height: 18px;
}

.feedback--good { color: var(--green); }
.feedback--bad  { color: var(--red); }

.quiz-actions {
  display: flex;
  justify-content: flex-end;
}

.quiz-next-btn,
.quiz-restart {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: var(--text);
  background: var(--red);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  width: auto;
  transition: background 0.18s ease;
}

.quiz-next-btn:hover,
.quiz-restart:hover {
  background: var(--red-dark);
}

.quiz-restart {
  width: auto;
  margin-top: 8px;
  padding: 10px 24px;
}

.result-eyebrow {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.result-title {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: bold;
  font-size: 48px;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  color: var(--text);
}

.result-rating {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--red);
  margin: 8px 0 0;
}

.result-percent {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.champions-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.champions-display {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px 22px;
}

.champ-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.champ-table thead th {
  top: 0;
  z-index: 1;
  background: var(--panel);
  padding: 10px 12px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.champ-table tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.champ-table tbody tr:last-child td {
  border-bottom: none;
}

.champ-table tbody tr:hover td {
  background: rgba(255,255,255,0.025);
}

.champ-rank,
.champ-rank-head {
  width: 50px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-dim);
  text-align: right;
}

.champ-rank-head { text-align: left; }

.champ-name {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.champ-titles,
.champ-titles-head {
  width: 70px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  text-align: center;
}

.champ-titles-head { color: var(--text-dim); font-size: 10px; font-weight: bold; letter-spacing: 1.5px; }

.champ-years {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

.calendar-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #0a0c12;
}

.calendar-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
}

.calendar-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.cars-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--panel);
}

.cars-header-bar {
  background: var(--red);
  text-align: left;
  padding: 12px 18px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.cars-intro {
  margin: 12px 18px 0 18px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.cars-grid {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px;
  align-content: start;
}

.cars-cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--panel-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 10px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.cars-cell:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.cars-img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 100px;
  object-fit: contain;
  border-radius: 3px;
}

.cars-name {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: center;
}

@media (max-width: 960px) {
  .window { width: 92vw !important; left: 4vw !important; height: 66vh !important; }
  .lightsout-content { flex-direction: column; }
  .lo-main { border-right: none; border-bottom: 1px solid var(--border); }
  .lo-sidebar { width: 100%; }
  .race-countdown { top: calc(var(--topbar-h) + 6px); right: 8px; padding: 8px 10px; }
  .countdown-clock { gap: 6px; }
  .countdown-unit span { font-size: 14px; }

  .dock-icon { width: 44px; height: 44px; border-radius: 12px; }
  .dock-glyph { width: 26px; height: 26px; }
  .dock-letter { font-size: 24px; }
  #taskbar { gap: 18px; }
  .dock-item:hover { transform: translateY(-10px) scale(1.15); }
  .dock-item:hover + .dock-item,
  .dock-item:has(+ .dock-item:hover) { transform: translateY(-4px) scale(1.06); }
}

@media (max-width: 560px) {
  .dock-icon { width: 38px; height: 38px; border-radius: 10px; }
  .dock-glyph { width: 22px; height: 22px; }
  .dock-letter { font-size: 20px; }
  #taskbar { gap: 12px; }
}