* {
  box-sizing: border-box;
}

:root {
  --desktop-1: #d8d1c8;
  --desktop-2: #aaa49d;
  --desktop-3: #77736f;
  --taskbar: rgba(31, 30, 29, 0.9);
  --window-border: #77736f;
  --window-title: #f6f5f3;
  --window-title-2: #e7e5e2;
  --shadow: 0 22px 64px rgba(25, 23, 21, 0.28), 0 3px 12px rgba(25, 23, 21, 0.18);

  --namu-green: #00a495;
  --namu-green-dark: #008b7f;
  --namu-link: #0275d8;
  --namu-orange: #d67b00;
  --namu-text: #373a3c;
  --namu-muted: #777;
  --namu-page-bg: #efefef;
  --namu-border: #d5d5d5;
  --namu-soft: #f5f5f5;
}

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

body {
  overflow: hidden;
  color: #292725;
  font-family: Arial, "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: #aaa49d;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

/* =========================================================
   Desktop
========================================================= */

.desktop {
  position: relative;
  width: 100%;
  height: calc(100vh - 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.32), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(255, 245, 232, 0.17), transparent 32%),
    linear-gradient(135deg, var(--desktop-1) 0%, var(--desktop-2) 53%, var(--desktop-3) 100%);
}

.desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.desktop-icons {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 22px;
  display: grid;
  width: 94px;
  gap: 8px;
}

.desktop-icon {
  display: flex;
  width: 92px;
  min-height: 96px;
  padding: 8px 4px 7px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: default;
  text-align: center;
}

.desktop-icon:hover,
.desktop-icon.selected {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
}

.desktop-icon:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: -2px;
}

.desktop-icon-art {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 6px;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.16));
}

.folder-tab {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 25px;
  height: 13px;
  border-radius: 5px 5px 0 0;
  background: #d9b36f;
}

.folder-body {
  position: absolute;
  top: 15px;
  left: 4px;
  width: 47px;
  height: 34px;
  border: 1px solid rgba(91, 69, 35, 0.22);
  border-radius: 4px 6px 6px 6px;
  background: linear-gradient(160deg, #f1d18e, #d9ad62);
}

.document-icon {
  width: 44px;
  height: 53px;
  border: 1px solid #b7b3ad;
  border-radius: 3px;
  background: linear-gradient(145deg, #fff, #eceae7);
}

.doc-fold {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #b7b3ad;
  border-bottom: 1px solid #b7b3ad;
  background: #dad7d2;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.doc-line {
  position: absolute;
  left: 9px;
  height: 3px;
  border-radius: 2px;
  background: var(--namu-green);
}

.line-1 { top: 24px; width: 25px; }
.line-2 { top: 32px; width: 20px; background: #9e9a95; }
.line-3 { top: 40px; width: 25px; background: #9e9a95; }

.desktop-icon-label {
  max-width: 86px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.76), 0 0 6px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}

.desktop-watermark {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.78);
  pointer-events: none;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.26);
}

.desktop-watermark strong {
  margin-bottom: 4px;
  font-size: 25px;
  letter-spacing: 0.11em;
}

.desktop-watermark span {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* =========================================================
   Taskbar
========================================================= */

.taskbar {
  position: fixed;
  z-index: 5000;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 48px;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--taskbar);
  color: #fff;
  backdrop-filter: blur(16px);
}

.start-button {
  display: flex;
  min-width: 112px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.start-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-apps {
  display: flex;
  min-width: 0;
  height: 100%;
  padding-left: 5px;
  align-items: stretch;
  gap: 3px;
}

.taskbar-app-button {
  display: flex;
  width: 150px;
  min-width: 0;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: pointer;
}

.taskbar-app-button:hover,
.taskbar-app-button.active {
  background: rgba(255, 255, 255, 0.11);
}

.taskbar-app-button.active {
  border-bottom-color: #efefef;
}

.task-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tray {
  display: flex;
  margin-left: auto;
  padding: 0 13px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.tray-status {
  color: #9fe8d9;
}

.clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

/* =========================================================
   OS windows
========================================================= */

.os-window {
  position: absolute;
  z-index: 120;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--window-border);
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--shadow);
}

.os-window.active {
  box-shadow: 0 25px 74px rgba(25, 23, 21, 0.36), 0 4px 15px rgba(25, 23, 21, 0.22);
}

.window-titlebar {
  display: flex;
  min-height: 38px;
  flex: 0 0 38px;
  align-items: center;
  border-bottom: 1px solid #b8b5b1;
  background: linear-gradient(var(--window-title), var(--window-title-2));
  cursor: move;
  user-select: none;
}

.window-titlebar.dark {
  border-color: #161616;
  background: #242424;
  color: #fff;
}

.window-title {
  display: flex;
  min-width: 0;
  padding-left: 11px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.window-title > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-controls {
  display: flex;
  height: 100%;
  margin-left: auto;
}

.window-control {
  width: 46px;
  height: 37px;
  border: 0;
  border-left: 1px solid #cbc8c4;
  background: transparent;
  cursor: pointer;
}

.window-control:hover {
  background: rgba(0, 0, 0, 0.08);
}

.window-control.close:hover {
  background: #e81123;
  color: #fff;
}

.dark-control {
  border-color: #444;
  color: #fff;
}

.dark-control:hover {
  background: #444;
}

.mini-folder {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background: #dbb265;
}

.mini-folder::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 1px;
  width: 9px;
  height: 5px;
  border-radius: 2px 2px 0 0;
  background: #dbb265;
}

.system-app-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 3px;
  background: var(--namu-green);
  color: #fff;
  font-size: 12px;
}

.player-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00ffa3;
  box-shadow: 0 0 8px rgba(0, 255, 163, 0.6);
}

/* =========================================================
   Archive explorer
========================================================= */

.explorer-window {
  top: 82px;
  left: 126px;
  width: min(840px, calc(100vw - 110px));
  height: min(600px, calc(100vh - 116px));
}

.explorer-toolbar {
  display: flex;
  min-height: 48px;
  padding: 7px 10px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #dedede;
  background: #f7f7f7;
}

.nav-button {
  width: 32px;
  height: 31px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  background: #fff;
  color: #888;
}

.address-bar {
  display: flex;
  flex: 1;
  height: 31px;
  padding: 0 10px;
  align-items: center;
  gap: 7px;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-size: 13px;
}

.address-chevron {
  color: #999;
}

.explorer-meta {
  display: flex;
  min-height: 35px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  color: #777;
  font-size: 12px;
}

.archive-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  align-content: start;
  gap: 16px;
  padding: 20px;
  overflow: auto;
  background: #fff;
}

.clip-file {
  min-width: 0;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  cursor: default;
  text-align: left;
}

.clip-file:hover,
.clip-file.selected {
  border-color: #aac7e8;
  background: #e8f2fd;
}

.clip-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #c4c4c4;
  border-radius: 2px;
  background: linear-gradient(135deg, #ddd, #bbb);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.08);
}

.clip-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clip-thumbnail.thumbnail-missing::before {
  content: "CHZZK";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #777;
  font-weight: 700;
}

.clip-origin-badge {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 2px 5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.clip-filename {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #343434;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.empty-archive {
  grid-column: 1 / -1;
  display: grid;
  min-height: 310px;
  place-items: center;
  color: #777;
  text-align: center;
}

.empty-card {
  display: grid;
  gap: 8px;
}

.empty-icon {
  font-size: 48px;
}

/* =========================================================
   Clip player
========================================================= */

.player-window {
  top: 112px;
  left: 50%;
  width: min(900px, calc(100vw - 90px));
  transform: translateX(-50%);
}

.player-content {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  background: #000;
}

.player-content iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.player-error {
  color: #fff;
  text-align: center;
}

/* =========================================================
   System window shell
========================================================= */

.system-window {
  top: 30px;
  left: 50%;
  width: min(1240px, calc(100vw - 70px));
  height: min(880px, calc(100vh - 72px));
  transform: translateX(-50%);
  background: var(--namu-page-bg);
}

.system-browser-bar {
  display: flex;
  min-height: 39px;
  padding: 5px 10px;
  flex: 0 0 39px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #d1d1d1;
  background: #f4f4f4;
  color: #666;
  font-size: 12px;
}

.mock-nav-buttons {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #777;
}

.mock-address {
  display: flex;
  flex: 1;
  height: 28px;
  padding: 0 10px;
  align-items: center;
  gap: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  color: #555;
}

.mock-lock {
  color: #777;
  font-size: 9px;
}

.mock-browser-menu {
  font-size: 18px;
}

.system-scroll {
  flex: 1;
  overflow: auto;
  background: var(--namu-page-bg);
  color: var(--namu-text);
  user-select: text;
}

/* =========================================================
   NamuWiki-like global navigation
========================================================= */

.namu-global-nav {
  z-index: 2;
  display: flex;
  min-height: 52px;
  flex: 0 0 52px;
  align-items: stretch;
  background: var(--namu-green);
  color: #fff;
  user-select: none;
}

.namu-nav-inner {
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 10px;
  align-items: stretch;
}

.namu-brand {
  display: flex;
  min-width: 152px;
  padding: 0 8px 0 2px;
  align-items: center;
  gap: 6px;
  color: #fff;
  white-space: nowrap;
}

.namu-brand strong {
  font-size: 19px;
  letter-spacing: -0.06em;
}

.namu-logo-mark {
  width: 38px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.namu-logo-mark circle {
  fill: var(--namu-green);
}

.namu-nav-links {
  display: flex;
  align-items: stretch;
}

.namu-nav-links button {
  display: flex;
  padding: 0 12px;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: default;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.namu-nav-links button:hover {
  background: rgba(0, 0, 0, 0.09);
}

.nav-caret {
  opacity: 0.75;
  font-size: 10px;
}

.namu-search {
  display: flex;
  height: 32px;
  margin: auto 0 auto auto;
  align-items: stretch;
}

.namu-search input {
  width: 215px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 2px 0 0 2px;
  outline: none;
  color: #333;
  background: #fff;
  font-size: 13px;
}

.namu-search button {
  width: 34px;
  border: 0;
  border-left: 1px solid #ddd;
  background: #f7f7f7;
  color: #555;
  cursor: default;
}

.namu-user-button {
  width: 42px;
  margin-left: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: default;
  font-size: 17px;
}

/* =========================================================
   NamuWiki-like page layout
========================================================= */

.namu-page-shell {
  display: grid;
  width: min(1180px, calc(100% - 24px));
  margin: 14px auto 28px;
  grid-template-columns: minmax(0, 1fr) 235px;
  align-items: start;
  gap: 14px;
}

.namu-document {
  min-width: 0;
  border: 1px solid #d8d8d8;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.namu-document-inner {
  padding: 24px 30px 38px;
}

.namu-document-header {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid #d5d5d5;
}

.namu-document-header h1 {
  margin: 0 0 6px;
  padding-right: 220px;
  color: #212529;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.revision-time {
  margin: 0;
  color: #777;
  font-size: 12px;
}

.namu-document-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 4px;
}

.namu-document-actions button {
  min-width: 44px;
  height: 31px;
  padding: 0 8px;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  background: #fff;
  color: #555;
  cursor: default;
  font-size: 12px;
}

.namu-document-actions .primary-action {
  border-color: #aaa;
  background: #f4f4f4;
  color: #222;
  font-weight: 600;
}

.namu-document a {
  color: var(--namu-link);
  text-decoration: none;
}

.namu-document a:hover {
  text-decoration: underline;
}

.disabled-link {
  color: #888 !important;
  cursor: default;
  text-decoration: none !important;
}

/* =========================================================
   Profile table
========================================================= */

.profile-table {
  width: min(520px, 100%);
  margin: 28px auto 24px;
  border: 2px solid var(--namu-green);
  border-collapse: collapse;
  background: #fff;
  color: #373a3c;
  font-size: 14px;
}

.profile-table th,
.profile-table td {
  border: 1px solid #c9c9c9;
}

.profile-table thead th {
  padding: 10px 8px;
  border-color: var(--namu-green);
  background: var(--namu-green);
  color: #fff;
  text-align: center;
}

.profile-table thead strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.profile-table thead small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
}

.profile-table tbody th {
  width: 29%;
  padding: 8px 10px;
  background: var(--namu-green);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.profile-table tbody td {
  padding: 8px 10px;
  line-height: 1.5;
}

.profile-image-cell {
  padding: 0 !important;
  background: #f3f3f3;
  text-align: center;
}

.profile-image {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.profile-links {
  text-align: center;
}

.profile-links span {
  color: #aaa;
}

/* =========================================================
   NamuWiki-like article elements
========================================================= */

.namu-quote {
  position: relative;
  margin: 20px 0;
  padding: 12px 18px 12px 35px;
  border-left: 5px solid var(--namu-green);
  background: #f7f7f7;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.quote-mark {
  position: absolute;
  top: 0;
  left: 11px;
  color: #aaa;
  font-family: Georgia, serif;
  font-size: 30px;
}

.namu-toc {
  display: inline-block;
  min-width: 320px;
  max-width: 100%;
  margin: 8px 0 30px;
  padding: 12px 15px 13px;
  border: 1px solid #ccc;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.75;
}

.namu-toc-title {
  margin-bottom: 4px;
  color: #444;
}

.namu-toc-title button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #888;
  cursor: default;
  font-size: 11px;
}

.namu-toc a {
  display: block;
}

.namu-toc a > span {
  display: inline-block;
  min-width: 31px;
  color: #555;
}

.namu-toc .depth-2 {
  padding-left: 18px;
}

.namu-section {
  scroll-margin-top: 12px;
  margin-top: 31px;
}

.namu-sub-section {
  margin-top: 25px;
}

.namu-section h2,
.namu-section h3,
.namu-footnotes h2 {
  display: flex;
  margin: 0 0 13px;
  padding: 0 0 6px;
  align-items: baseline;
  gap: 7px;
  border-bottom: 1px solid #aaa;
  color: #373a3c;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.namu-section h2,
.namu-footnotes h2 {
  font-size: 24px;
}

.namu-section h3 {
  font-size: 19px;
}

.section-number {
  color: #555;
}

.namu-section h2 button,
.namu-section h3 button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #888;
  cursor: default;
  font-size: 11px;
  font-weight: 400;
}

.namu-section p,
.namu-section li {
  font-size: 14px;
  line-height: 1.85;
}

.namu-section p {
  margin: 9px 0;
}

.namu-section ul {
  margin: 8px 0 8px 21px;
  padding: 0;
}

.namu-section li {
  margin: 3px 0;
}

.namu-section sup {
  position: relative;
  top: -0.15em;
  margin-left: 1px;
  font-size: 0.75em;
}

.namu-data-table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.namu-data-table th,
.namu-data-table td {
  padding: 8px 10px;
  border: 1px solid #ccc;
}

.namu-data-table th {
  width: 31%;
  background: #f2f2f2;
  text-align: center;
}

.namu-footnotes {
  margin-top: 36px;
  padding-top: 3px;
}

.namu-footnotes p {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.65;
}

.namu-categories {
  display: flex;
  margin-top: 28px;
  padding: 8px 10px;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  border: 1px solid #ccc;
  background: #fafafa;
  font-size: 13px;
}

.category-label {
  margin-right: 2px;
  font-weight: 700;
}

.namu-categories a {
  display: inline-block;
  padding: 3px 6px;
  background: #e6f4f2;
  color: #087c72;
}

/* =========================================================
   NamuWiki-like sidebar
========================================================= */

.namu-sidebar {
  display: grid;
  gap: 12px;
}

.sidebar-card {
  overflow: hidden;
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sidebar-card h2 {
  margin: 0;
  padding: 8px 10px;
  background: var(--namu-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sidebar-card ul {
  margin: 0;
  padding: 7px 10px 2px;
  list-style: none;
}

.sidebar-card li {
  display: flex;
  min-height: 27px;
  padding: 4px 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #eee;
  color: var(--namu-orange);
  font-size: 11px;
}

.sidebar-card li:last-child {
  border-bottom: 0;
}

.sidebar-card time {
  flex: 0 0 auto;
  color: #777;
  font-size: 10px;
}

.sidebar-card > button {
  display: block;
  margin: 5px 8px 8px auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  cursor: default;
  font-size: 10px;
}

.news-card li {
  display: block;
  color: #555;
  line-height: 1.5;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1000px) {
  .namu-page-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .namu-sidebar {
    display: none;
  }

  .namu-nav-links button {
    padding: 0 8px;
    font-size: 12px;
  }

  .namu-search input {
    width: 160px;
  }
}

@media (max-width: 760px) {
  .desktop-icons {
    top: 16px;
    left: 12px;
  }

  .desktop-watermark {
    right: 18px;
    bottom: 20px;
  }

  .os-window {
    top: 7px !important;
    left: 7px !important;
    width: calc(100vw - 14px) !important;
    height: calc(100vh - 62px) !important;
    transform: none !important;
  }

  .player-window {
    height: auto !important;
  }

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

  .namu-global-nav {
    min-height: 48px;
    flex-basis: 48px;
  }

  .namu-nav-inner {
    padding: 0 6px;
  }

  .namu-brand {
    min-width: auto;
    padding-right: 4px;
  }

  .namu-brand strong {
    display: none;
  }

  .namu-logo-mark {
    width: 34px;
  }

  .namu-nav-links button {
    padding: 0 7px;
    font-size: 0;
  }

  .namu-nav-links button > span:first-child {
    font-size: 14px;
  }

  .namu-search {
    flex: 1;
    margin-left: 3px;
  }

  .namu-search input {
    width: 100%;
  }

  .namu-user-button {
    display: none;
  }

  .namu-page-shell {
    width: 100%;
    margin: 0;
  }

  .namu-document {
    border-right: 0;
    border-left: 0;
  }

  .namu-document-inner {
    padding: 20px 15px 32px;
  }

  .namu-document-header h1 {
    padding-right: 0;
    font-size: 28px;
  }

  .namu-document-actions {
    position: static;
    margin-top: 10px;
    justify-content: flex-end;
  }

  .profile-table {
    font-size: 13px;
  }

  .namu-toc {
    width: 100%;
    min-width: 0;
  }

  .namu-section h2,
  .namu-footnotes h2 {
    font-size: 21px;
  }

  .taskbar-app-button {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .task-label {
    display: none;
  }

  .start-button {
    min-width: 52px;
    padding: 0 9px;
  }

  .start-button strong {
    display: none;
  }

  .tray-status {
    display: none;
  }
}
