:root {
  color-scheme: light;
  --blue: #0000cc;
  --hot: #ff00ff;
  --cyan: #00ffff;
  --yellow: #ffff66;
  --red: #cc0000;
  --gray: #c0c0c0;
  --dark: #000066;
  --green: #00aa00;
  --ink: #000;
}

* {
  box-sizing: border-box;
  scrollbar-color: #000080 #ffff66;
}

::-webkit-scrollbar {
  width: 22px;
  height: 22px;
  background:
    repeating-linear-gradient(45deg, #000 0 5px, #000080 5px 10px, #00ffff 10px 15px, #ffff00 15px 20px);
}

::-webkit-scrollbar-track {
  border: 4px ridge #fff;
  background:
    repeating-conic-gradient(#c0c0c0 0 25%, #808080 0 50%) 0 0 / 12px 12px;
}

::-webkit-scrollbar-thumb {
  border: 4px outset #fff;
  background:
    repeating-conic-gradient(#000080 0 25%, #00ffff 0 50%, #0000cc 0 75%, #ffff00 0) 0 0 / 14px 14px;
  image-rendering: pixelated;
}

::-webkit-scrollbar-thumb:hover {
  background:
    repeating-conic-gradient(#ff00ff 0 25%, #ffff00 0 50%, #00ffff 0 75%, #000080 0) 0 0 / 14px 14px;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-button {
  border: 4px outset #fff;
  background:
    repeating-conic-gradient(#fff 0 25%, #c0c0c0 0 50%, #000 0 75%, #808080 0) 0 0 / 10px 10px;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  background:
    linear-gradient(45deg, #000066 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(45deg, transparent 75%, #000066 75%) 0 0 / 18px 18px,
    #0033aa;
}

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

button,
.button-link,
input[type="submit"] {
  border: 2px outset #fff;
  background: var(--gray);
  color: #000;
  padding: 3px 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:active,
.button-link:active,
input[type="submit"]:active {
  border-style: inset;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px dotted #000;
  outline-offset: 2px;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  margin: 0 5px 0 0;
  vertical-align: middle;
  border: 4px outset #fff;
  background:
    repeating-conic-gradient(#fff 0 25%, #c0c0c0 0 50%, #808080 0 75%, #fff 0) 0 0 / 8px 8px;
  image-rendering: pixelated;
}

input[type="checkbox"]:checked {
  border-style: inset;
  background:
    linear-gradient(45deg, transparent 0 35%, #000 35% 47%, transparent 47% 100%),
    linear-gradient(-45deg, transparent 0 35%, #000 35% 47%, transparent 47% 100%),
    #ffff00;
}

a {
  color: var(--blue);
  text-decoration: underline;
}

a:visited {
  color: #660099;
}

.browser-frame {
  width: min(1220px, calc(100% - 18px));
  margin: 8px auto;
  border: 3px outset #fff;
  background: #d6d6d6;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  color: #fff;
  background: linear-gradient(90deg, #000080, #1084d0);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.dot {
  width: 13px;
  height: 13px;
  border: 2px outset #fff;
  background: #c0c0c0;
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-bottom: 2px groove #fff;
  background: #c0c0c0;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.address-label {
  font-weight: bold;
}

.address-box {
  min-width: 0;
  flex: 1;
  border: 2px inset #fff;
  padding: 3px 5px;
  background: #fff;
}

.tiny-btn {
  font-family: Arial, sans-serif;
  font-size: 12px;
  white-space: nowrap;
}

.site-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-bottom: 3px ridge #fff;
  background:
    repeating-linear-gradient(90deg, #ffff99 0 12px, #ff99ff 12px 24px, #99ffff 24px 36px);
}

.brand-block {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-star {
  width: 62px;
  height: 62px;
  image-rendering: pixelated;
  object-fit: contain;
  border: 2px inset #fff;
  background: #000;
}

.site-banner h1 {
  margin: 0;
  color: #000080;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 7vw, 70px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 #ff00ff;
}

.site-banner p {
  margin: 6px 0 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #000;
}

.site-banner marquee {
  grid-column: 1 / -1;
  border: 2px inset #fff;
  background: #000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  padding: 4px;
}

.construction-gif {
  width: 170px;
  max-width: 26vw;
  border: 2px outset #fff;
  background: #fff;
}

.layout-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 6px;
}

.left-rail,
.right-rail,
.main-cell {
  vertical-align: top;
}

.left-rail {
  width: 205px;
}

.right-rail {
  width: 285px;
}

.main-cell {
  min-width: 0;
}

.panel,
.article,
.editor-box,
.warning-box {
  border: 3px ridge #fff;
  background: #ffffee;
  padding: 8px;
  margin-bottom: 8px;
}

.panel h2,
.panel h3,
.article h2,
.article h3,
.editor-box h2,
.warning-box h2 {
  margin: 0 0 7px;
  padding: 3px 5px;
  color: #fff;
  background: #000080;
  font-family: Arial, sans-serif;
  font-size: 17px;
}

.article-title {
  margin: 0;
  padding: 6px;
  color: #ff0;
  background: #000080;
  border: 3px ridge #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.article-meta {
  margin: 5px 0 10px;
  padding: 4px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  border: 2px inset #fff;
  background: #e9e9e9;
}

.article-body {
  min-height: 220px;
  padding: 10px;
  border: 2px inset #fff;
  background: #fff;
  line-height: 1.45;
}

.article-body h2 {
  margin: 12px 0 7px;
  padding: 0;
  color: #000080;
  background: transparent;
  border-bottom: 2px solid #000080;
  font-size: 25px;
}

.article-body p {
  margin: 0 0 12px;
}

.article-body ul {
  margin-top: 4px;
}

.nav-list,
.page-list,
.media-list,
.admin-list {
  list-style: square;
  padding-left: 20px;
  margin: 6px 0;
}

.page-card {
  border: 2px outset #fff;
  background: #e6ffe6;
  margin-bottom: 8px;
  padding: 7px;
}

.page-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.badge {
  display: inline-block;
  padding: 2px 5px;
  margin: 2px;
  border: 1px solid #000;
  background: #ff0;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: bold;
}

.danger-badge {
  color: #fff;
  background: #c00;
}

.ok-badge {
  color: #fff;
  background: #008000;
}

.caution-badge {
  color: #000;
  background: #ffcc00;
}

.form-grid {
  display: grid;
  gap: 6px;
}

.form-grid label {
  display: grid;
  gap: 2px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-width: 0;
  border: 2px inset #fff;
  background: #fff;
  padding: 5px;
}

.form-grid textarea {
  resize: vertical;
}

.captcha-box {
  padding: 5px;
  border: 2px dashed #000;
  background: #fffacd;
  font-family: "Courier New", monospace;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #cc0000;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.language-panel label,
.mail-actions,
.translator-box,
.mail-provider-status,
.loading-strip {
  display: grid;
  gap: 5px;
  padding: 6px;
  border: 2px inset #fff;
  background: #ffffcc;
  font-family: "Courier New", monospace;
}

.language-panel select,
.admin-filter {
  width: 100%;
  border: 3px inset #fff;
  background: #fff;
  padding: 5px;
}

.translator-box {
  margin: 6px 0;
  background:
    repeating-linear-gradient(90deg, #fffbd0 0 12px, #e0ffff 12px 24px);
}

.mail-provider-status.ok {
  background: #d9ffd9;
}

.mail-provider-status.caution {
  background: #fff2b8;
}

.loading-strip {
  color: #00ff00;
  background:
    repeating-linear-gradient(90deg, #000 0 12px, #001900 12px 24px);
  animation: loadingBlink 0.75s steps(2, end) infinite;
}

@keyframes loadingBlink {
  50% {
    color: #ffff00;
  }
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px;
  border: 2px inset #fff;
  background: #d6d6d6;
}

.toolbar button,
.toolbar select {
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.inline-media-uploader {
  margin-bottom: 8px;
  padding: 8px;
  border: 3px ridge #fff;
  background: #f0f8ff;
}

.inline-media-uploader h3 {
  margin: 0;
}

.editor-textarea {
  width: 100%;
  min-height: 330px;
  margin-top: 7px;
  border: 3px inset #fff;
  background: #fff;
  color: #000;
  font-family: "Courier New", monospace;
  font-size: 15px;
  line-height: 1.35;
}

.preview-box {
  margin-top: 8px;
  border: 3px ridge #fff;
  background: #fff;
  padding: 8px;
}

.comment {
  border: 2px inset #fff;
  background: #f6f6f6;
  padding: 6px;
  margin: 6px 0;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px outset #fff;
  background: #000;
  image-rendering: pixelated;
}

.comment strong {
  color: #000080;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.profile-pop {
  position: relative;
  display: inline-block;
}

.profile-preview {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  z-index: 30;
  display: none;
  width: 280px;
  gap: 8px;
  padding: 7px;
  border: 3px outset #fff;
  color: #000;
  background: #ffffcc;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.45);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  text-align: left;
}

.profile-pop:hover .profile-preview,
.profile-pop:focus-within .profile-preview {
  display: flex;
}

.preview-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px outset #fff;
  background: #000;
  image-rendering: pixelated;
}

.preview-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.preview-name {
  color: #000080;
  font-weight: bold;
}

.preview-desc {
  display: block;
  overflow-wrap: anywhere;
}

.owner-badge {
  color: #fff;
  background: #cc0000;
}

.retro-player {
  border: 4px solid #fff;
  border-style: outset;
  background:
    repeating-linear-gradient(0deg, #111 0 4px, #050505 4px 8px);
  color: #00ff00;
  margin: 10px 0;
  padding: 7px;
  font-family: "Courier New", monospace;
  image-rendering: pixelated;
  box-shadow: 4px 4px 0 #000, inset 0 0 0 3px #333;
}

.retro-player img,
.retro-player video {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #000;
  border: 2px inset #666;
}

.retro-player audio {
  width: 100%;
}

.retro-av-player {
  border-color: #00ffff;
  box-shadow: 5px 5px 0 #000, inset 0 0 0 3px #000, inset 0 0 0 6px #003366;
}

.retro-av-player:fullscreen,
.retro-av-player.retro-fake-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: 100vw;
  height: 100vh;
  max-width: none;
  margin: 0;
  padding: 12px;
  border-width: 8px;
  background:
    repeating-linear-gradient(0deg, #000 0 6px, #001122 6px 12px);
}

.retro-video-screen,
.retro-audio-screen {
  border: 4px inset #666;
  background:
    linear-gradient(rgba(0, 255, 0, 0.06) 50%, rgba(0, 0, 0, 0.1) 50%) 0 0 / 100% 6px,
    #000;
}

.retro-video-screen video {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #000;
  image-rendering: pixelated;
}

.retro-av-player:fullscreen .retro-video-screen,
.retro-av-player.retro-fake-fullscreen .retro-video-screen,
.retro-av-player:fullscreen .retro-audio-screen,
.retro-av-player.retro-fake-fullscreen .retro-audio-screen {
  min-height: 0;
}

.retro-av-player:fullscreen .retro-video-screen video,
.retro-av-player.retro-fake-fullscreen .retro-video-screen video {
  height: 100%;
  max-height: none;
}

.retro-av-player:fullscreen .retro-audio-screen,
.retro-av-player.retro-fake-fullscreen .retro-audio-screen {
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.retro-audio-screen {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 112px;
  padding: 12px;
  color: #00ff00;
}

.retro-audio-screen strong {
  align-self: center;
  margin-left: auto;
  color: #ffff00;
  text-shadow: 2px 2px #ff00ff;
}

.vu-bar {
  width: 18px;
  height: 22px;
  border: 2px solid #00ff00;
  background:
    repeating-linear-gradient(0deg, #004400 0 5px, #00aa00 5px 10px);
  box-shadow: 2px 2px 0 #001900;
}

.is-playing .vu-bar {
  animation: vuPulse 0.65s steps(4, end) infinite;
}

.is-playing .vu-bar:nth-child(2) {
  animation-delay: 0.12s;
}

.is-playing .vu-bar:nth-child(3) {
  animation-delay: 0.24s;
}

.is-playing .vu-bar:nth-child(4) {
  animation-delay: 0.36s;
}

.is-playing .vu-bar:nth-child(5) {
  animation-delay: 0.48s;
}

.retro-controls {
  display: grid;
  grid-template-columns: auto auto auto minmax(90px, 1fr) auto minmax(90px, 150px);
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  padding: 7px;
  border: 3px outset #fff;
  background:
    repeating-linear-gradient(90deg, #d6d6d6 0 8px, #c0c0c0 8px 16px);
  color: #000;
  font-family: "Courier New", monospace;
}

.retro-controls button {
  font-family: "Courier New", monospace;
  font-weight: bold;
  min-width: 58px;
  border: 3px outset #fff;
  background:
    linear-gradient(#ffffcc 0 45%, #c0c000 45% 55%, #808000 55% 100%);
  box-shadow: 2px 2px 0 #000;
}

.retro-controls button:active {
  border-style: inset;
  box-shadow: none;
}

.retro-seek,
.retro-volume {
  height: 18px;
  border: 2px inset #fff;
  background:
    repeating-linear-gradient(90deg, #000080 0 6px, #0000cc 6px 12px);
  accent-color: #ffff00;
  appearance: none;
  -webkit-appearance: none;
}

.retro-seek::-webkit-slider-runnable-track,
.retro-volume::-webkit-slider-runnable-track {
  height: 12px;
  border: 1px solid #000;
  background:
    repeating-linear-gradient(90deg, #000 0 4px, #00ff00 4px 8px);
}

.retro-seek::-webkit-slider-thumb,
.retro-volume::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -4px;
  border: 3px outset #fff;
  background: #ffff00;
  box-shadow: 2px 2px 0 #000;
  appearance: none;
  -webkit-appearance: none;
}

.retro-seek::-moz-range-track,
.retro-volume::-moz-range-track {
  height: 12px;
  border: 1px solid #000;
  background:
    repeating-linear-gradient(90deg, #000 0 4px, #00ff00 4px 8px);
}

.retro-seek::-moz-range-thumb,
.retro-volume::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px outset #fff;
  border-radius: 0;
  background: #ffff00;
  box-shadow: 2px 2px 0 #000;
}

.retro-time {
  min-width: 96px;
  padding: 2px 4px;
  color: #00ff00;
  background: #001900;
  border: 2px inset #333;
  text-align: center;
  text-shadow: 1px 1px #003300;
}

.retro-volume-label {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.retro-volume-label input {
  min-width: 0;
  width: 100%;
}

@keyframes vuPulse {
  0% {
    height: 18px;
    background: #004400;
  }
  50% {
    height: 82px;
    background: #00ff00;
  }
  100% {
    height: 35px;
    background: #99ff00;
  }
}

.player-title {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.lcd {
  padding: 3px 6px;
  color: #00ff00;
  border: 2px inset #333;
  background: #001900;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.media-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #000;
  border: 2px outset #fff;
}

.uploaded-media-item {
  display: grid;
  gap: 4px;
  margin: 6px 0;
  padding: 5px;
  border: 2px outset #fff;
  background: #eef;
  word-break: break-word;
}

.media-upload-box {
  margin-bottom: 10px;
  padding: 8px;
  border: 2px inset #fff;
  background: #f0f8ff;
}

.media-picker {
  margin: 8px 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.media-picker select {
  width: 100%;
  margin-top: 3px;
  border: 2px inset #fff;
  padding: 5px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.media-tile {
  display: grid;
  gap: 4px;
  min-height: 150px;
  text-align: left;
  background: #eef;
}

.media-tile img,
.media-note {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  color: #00ff00;
  background: #001122;
  border: 2px inset #fff;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.warning-box {
  background: #fff8d6;
}

.warning-meter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  margin: 8px 0;
  border: 4px double #000;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
}

.warning-meter img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  image-rendering: pixelated;
}

.warning-meter.danger {
  color: #fff;
  background: #c00;
}

.warning-meter.caution {
  background: #ffcc00;
}

.warning-meter.ok {
  color: #fff;
  background: #008000;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.admin-filter {
  margin: 3px 0 6px;
  font-family: "Courier New", monospace;
}

.admin-scroll {
  max-height: 320px;
  overflow: auto;
  margin-bottom: 12px;
  border: 4px ridge #fff;
  background: #c0c0c0;
}

.admin-table th,
.admin-table td {
  border: 1px solid #666;
  padding: 5px;
  vertical-align: top;
}

.admin-table th {
  background: #000080;
  color: #fff;
}

.pin-form {
  display: grid;
  gap: 4px;
}

.pin-form label {
  display: block;
  font-size: 12px;
}

.account-card,
.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.account-avatar,
.profile-avatar {
  flex: 0 0 auto;
  object-fit: cover;
  border: 3px outset #fff;
  background: #000;
  image-rendering: pixelated;
}

.account-avatar {
  width: 64px;
  height: 64px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
}

.mail-link img,
.title-gif,
.footer-gif {
  width: 34px;
  height: 34px;
  object-fit: contain;
  vertical-align: middle;
  image-rendering: pixelated;
}

.mail-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mail-actions {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 8px;
}

.mail-actions p {
  margin: 0;
}

.clean-mail-button {
  min-width: 96px;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.mail-stack {
  display: grid;
  gap: 8px;
}

.mail-message {
  border: 3px ridge #fff;
  background: #f6f6f6;
  padding: 8px;
}

.mail-message.unread {
  background: #ffffcc;
}

.mail-message pre {
  white-space: pre-wrap;
  margin: 0;
  font-family: "Courier New", monospace;
}

.profile-bio,
.recovery-result {
  border: 2px inset #fff;
  background: #fff;
  padding: 8px;
}

.page-snippet h2 {
  margin: 0 0 4px;
  padding: 0;
  color: #000080;
  background: transparent;
  font-size: 18px;
}

.tiny-links {
  margin-bottom: 0;
  font-size: 13px;
}

.footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border-top: 3px ridge #fff;
  background: #c0c0c0;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

#toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 28px));
}

.toast-message {
  border: 3px outset #fff;
  background: #ffff99;
  padding: 8px;
  margin-top: 6px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .layout-table,
  .layout-table tbody,
  .layout-table tr,
  .layout-table td {
    display: block;
    width: 100%;
  }

  .left-rail,
  .right-rail {
    width: 100%;
  }

  .site-banner {
    grid-template-columns: 1fr;
  }

  .construction-gif {
    max-width: 100%;
  }

  .browser-toolbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .browser-frame {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .site-banner h1 {
    font-size: 40px;
  }

  .brand-star {
    width: 48px;
    height: 48px;
  }

  .layout-table {
    border-spacing: 4px;
  }

  .media-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retro-controls {
    grid-template-columns: 1fr 1fr;
  }

  .retro-seek,
  .retro-time,
  .retro-volume-label {
    grid-column: 1 / -1;
  }

  .profile-preview {
    width: min(280px, calc(100vw - 30px));
  }
}
