:root {
  --bg: #090606;
  --bg-2: #18110d;
  --panel: rgba(28, 16, 13, 0.9);
  --panel-solid: #2a1813;
  --panel-soft: rgba(58, 36, 25, 0.86);
  --card: rgba(18, 12, 10, 0.92);
  --line: rgba(255, 214, 153, 0.18);
  --text: #f6ead3;
  --muted: #d1b99a;
  --pink: #ff4d6d;
  --cyan: #59d4c8;
  --lime: #f2cb6d;
  --orange: #ff9248;
  --violet: #9a7dff;
  --danger: #ff5b45;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.52);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 161, 76, 0.14), transparent 20%),
    radial-gradient(circle at 78% 0%, rgba(255, 77, 109, 0.12), transparent 18%),
    linear-gradient(180deg, #050404 0%, #140d0a 48%, #090606 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--text);
  background: transparent;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 245, 220, 0.035) 0, rgba(255, 245, 220, 0.035) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 28%, rgba(0, 0, 0, 0.28));
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

.page-noise,
.laser-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  z-index: 0;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,214,153,0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 65% 65%, rgba(255,125,82,0.85) 0 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px, 190px 190px, 240px 240px;
}

.laser-grid {
  z-index: 0;
  background:
    linear-gradient(rgba(255, 214, 153, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 116, 88, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), transparent 94%);
}

.chaos-header,
main,
footer {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.chaos-header,
.hero-panel,
.control-panel,
.intro-card,
.placeholder-card,
.server-card,
footer {
  border: 2px solid var(--line);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.chaos-header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 212, 126, 0.12), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 10px, transparent 10px 20px),
    var(--panel);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.eyebrow,
.hero-kicker,
.widget__label,
.server-chip,
.server-card__label,
.status-badge,
.sticker,
.marquee-track,
.tab-button,
.play-button,
.control-label,
.control-toggle__label,
footer span {
  font-family: "Press Start 2P", monospace;
}

.eyebrow,
.hero-kicker {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.62rem;
  line-height: 1.6;
  text-shadow: 0 0 8px rgba(217, 255, 88, 0.5);
}

.brand__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.95;
}

.brand__title a {
  color: var(--text);
  text-decoration: none;
  text-shadow:
    2px 2px 0 rgba(255, 77, 109, 0.38),
    -1px -1px 0 rgba(89, 212, 200, 0.24),
    0 0 16px rgba(255, 210, 145, 0.15);
}

.brand__tagline {
  margin: 12px 0 0;
  max-width: 48rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.sticker-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.stamp-grid {
  align-content: start;
}

.blink {
  animation: blinkStamp 1.2s steps(2, end) infinite;
}

.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px 10px;
  border-radius: 2px;
  color: #24140e;
  font-size: 0.58rem;
  line-height: 1.4;
  text-align: center;
  border: 2px outset rgba(43, 23, 14, 0.7);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
}

.sticker--pink { background: var(--pink); }
.sticker--lime { background: var(--lime); transform: rotate(2deg); }
.sticker--blue { background: var(--cyan); transform: rotate(-1deg); }

.tab-rack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tab-button,
.auth-button,
.control-select,
.control-toggle,
.timer,
.play-button,
.share-button {
  appearance: none;
  border: 2px solid var(--line);
}

.tab-button {
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255,230,181,0.16), rgba(255,255,255,0.02));
  color: var(--text);
  border-radius: 2px;
  padding: 12px 14px 10px;
  font-size: 0.58rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(255,255,255,0.15);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.active {
  border-color: rgba(107, 214, 255, 0.65);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.26), 0 0 0 1px rgba(107, 214, 255, 0.22);
  transform: translateY(-2px);
  outline: none;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-message {
  color: var(--muted);
  font-weight: 700;
}

.auth-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255,239,199,0.18), rgba(96, 58, 32, 0.22));
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.22);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.auth-button:hover,
.auth-button:focus-visible {
  border-color: rgba(107, 214, 255, 0.7);
  transform: translateY(-2px);
  outline: none;
}

.auth-button--outline {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.hamburger-button {
  display: none;
  position: relative;
  width: 54px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  cursor: pointer;
}

.hamburger-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--text);
  border-radius: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.hamburger-button span:nth-child(1) { top: 13px; }
.hamburger-button span:nth-child(2) { top: 21px; }
.hamburger-button span:nth-child(3) { top: 29px; }

.hamburger-button.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger-button.is-open span:nth-child(2) { opacity: 0; }
.hamburger-button.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

#navBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 0, 6, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 8;
}

#navBackdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

main {
  display: grid;
  gap: 20px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 380px);
  gap: 18px;
  border-radius: 4px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,244,214,0.08), transparent 18%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px),
    var(--panel);
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 45rem;
}

.hero-panel__widgets {
  display: grid;
  gap: 14px;
}

.widget {
  padding: 16px 18px;
  border-radius: 2px;
  background: rgba(10, 6, 4, 0.5);
  border: 2px dashed var(--line);
}

.widget--status { box-shadow: inset 0 0 0 1px rgba(107, 214, 255, 0.18); }
.widget--warning { box-shadow: inset 0 0 0 1px rgba(255, 177, 90, 0.18); }

.widget__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.54rem;
  color: var(--cyan);
}

.widget strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.widget small {
  color: var(--muted);
  line-height: 1.5;
}

.tab-content { display: block; }
.tab-content.hidden { display: none; }

.marquee-shell {
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid rgba(255, 214, 153, 0.18);
  background: linear-gradient(90deg, rgba(97, 46, 27, 0.9), rgba(33, 17, 10, 0.94));
  padding: 10px 0;
  box-shadow: inset 0 0 18px rgba(0,0,0,0.35);
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 0.58rem;
  color: var(--lime);
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.control-panel {
  border-radius: 3px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 212, 126, 0.08), transparent 18%),
    linear-gradient(90deg, rgba(83, 42, 19, 0.32), transparent 60%),
    var(--panel);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.control-panel__group {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.control-label {
  color: var(--lime);
  font-size: 0.55rem;
  line-height: 1.5;
}

.control-select,
.timer,
.control-toggle {
  border-radius: 2px;
  background: rgba(7, 5, 4, 0.76);
  color: var(--text);
}

.control-select {
  min-width: 250px;
  padding: 12px 14px;
  font: inherit;
}

.control-select:focus-visible {
  outline: 2px solid rgba(60, 247, 255, 0.55);
  outline-offset: 2px;
}

.control-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
}

.control-toggle__input {
  appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: rgba(255,255,255,0.05);
  position: relative;
  cursor: pointer;
}

.control-toggle__input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
  transition: transform 0.18s ease, background 0.18s ease;
}

.control-toggle__input:checked::after {
  transform: translateX(18px);
  background: var(--lime);
}

.control-toggle__label {
  font-size: 0.58rem;
  color: var(--text);
}

.timer {
  min-width: 112px;
  text-align: center;
  padding: 11px 14px 9px;
  font-size: 0.62rem;
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(60, 247, 255, 0.12);
}

.sort-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 2px;
  background: rgba(7, 5, 4, 0.78);
  border: 2px dotted rgba(255,214,153,0.2);
  color: var(--muted);
  font-family: "Press Start 2P", monospace;
  font-size: 0.55rem;
  line-height: 1.7;
}

.intro-card,
.placeholder-card {
  padding: 20px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,248,227,0.06), transparent 18%),
    rgba(21, 13, 10, 0.92);
}

.intro-card h2,
.placeholder-card h2 {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 1rem;
}

.intro-card p,
.placeholder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.server-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,248,227,0.08), transparent 20%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0 3px, transparent 3px 6px),
    var(--card);
}

.server-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-glow, linear-gradient(140deg, rgba(79, 124, 255, 0.18), transparent));
  opacity: 0.55;
  pointer-events: none;
}

.server-card > * {
  position: relative;
  z-index: 1;
}

.server-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 214, 255, 0.38);
}

.server-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.server-card h3 {
  margin: 0;
  font-size: 1rem;
  max-width: calc(100% - 88px);
}

.server-card h3 code {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 2px;
  background: rgba(6, 4, 4, 0.76);
  border: 2px solid rgba(255,214,153,0.1);
  color: var(--text);
  word-break: break-all;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px 7px;
  border-radius: 2px;
  background: var(--lime);
  color: #2a190b;
  font-size: 0.52rem;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.25);
}

.server-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.server-chip {
  display: inline-flex;
  padding: 8px 10px 7px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 0.48rem;
  line-height: 1.4;
}

.server-chip--pink { color: #fff; background: rgba(79, 124, 255, 0.22); }
.server-chip--cyan { color: #fff; background: rgba(107, 214, 255, 0.18); }
.server-chip--orange { color: #fff; background: rgba(255, 177, 90, 0.18); }

.server-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.server-card li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 2px;
  background: rgba(8, 6, 5, 0.66);
  border: 1px dashed rgba(255,214,153,0.12);
}

.server-card__label {
  color: var(--muted);
  font-size: 0.5rem;
  line-height: 1.5;
}

.server-card__value {
  font-size: 1.15rem;
  font-weight: 700;
}

.text-muted,
.inspector-list {
  color: var(--muted);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 2px;
  padding: 12px 16px 10px;
  font-size: 0.56rem;
  color: #24150d;
  background: linear-gradient(180deg, #f4d78d, #c2873f);
  box-shadow: inset 0 -5px 0 rgba(0,0,0,0.24);
}

.play-button:hover,
.play-button:focus-visible,
.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.share-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(8, 6, 5, 0.78);
  color: var(--cyan);
  cursor: pointer;
}

.share-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.share-hint {
  position: absolute;
  right: 18px;
  bottom: 74px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(7, 8, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cyan);
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.share-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loading,
.empty-state,
.error-state {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7, 8, 20, 0.72);
  border: 2px dashed rgba(255,255,255,0.12);
  color: var(--muted);
}

footer {
  padding: 18px 20px;
  border-radius: 2px;
  background: var(--panel);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

footer p {
  margin: 0;
}

footer span {
  color: var(--cyan);
  font-size: 0.55rem;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 1100px) {
  .chaos-header,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .tab-rack,
  .auth-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body {
    padding: 14px;
  }

  .chaos-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px;
    gap: 12px;
  }

  .hamburger-button {
    display: inline-block;
  }

  #tabsNav {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(17, 26, 52, 0.97);
    backdrop-filter: blur(12px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9;
  }

  #tabsNav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .auth-panel {
    grid-column: 1 / -1;
  }

  /* Scale up pixel-font text so it's legible on small screens. */
  .tab-button        { font-size: 0.66rem; }
  .control-label     { font-size: 0.64rem; }
  .control-toggle__label { font-size: 0.64rem; }
  .timer             { font-size: 0.66rem; min-width: 0; }
  .sort-status       { font-size: 0.62rem; }
  .marquee-track     { font-size: 0.64rem; }
  .server-grid-shell__title,
  .server-grid-shell__meta { font-size: 0.6rem; }
  .status-badge      { font-size: 0.58rem; }
  .server-chip       { font-size: 0.56rem; }
  .server-card__label { font-size: 0.56rem; }
  .play-button       { font-size: 0.62rem; }
  footer span        { font-size: 0.62rem; }
}

@media (max-width: 640px) {
  body {
    padding: 10px;
  }

  .chaos-header {
    padding: 12px;
    gap: 10px;
  }

  /* "trcu.dev" must shrink to fit beside the hamburger on narrow phones. */
  .brand__title {
    font-size: clamp(1.3rem, 6.5vw, 2rem);
    line-height: 1;
  }

  .hamburger-button {
    width: 48px;
    height: 44px;
  }

  #tabsNav {
    top: 80px;
    left: 8px;
    right: 8px;
  }

  .server-grid {
    grid-template-columns: 1fr;
  }

  .server-grid-shell {
    padding: 12px;
  }

  .server-grid-shell__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Stack the sort/auto-reload controls vertically. */
  .control-panel {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .control-panel__group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .control-select {
    min-width: 0;
    width: 100%;
  }

  /* Stack login / sign-out full-width. */
  .auth-panel {
    justify-content: stretch;
  }

  .auth-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .auth-button {
    width: 100%;
    padding: 13px 14px;
  }

  /* Server card header stacks: title above, badge below. */
  .server-card {
    padding: 14px;
  }

  .server-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .server-card h3 {
    max-width: 100%;
  }

  .card-actions,
  footer {
    align-items: stretch;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  body {
    padding: 8px;
  }

  .brand__title {
    font-size: 1.25rem;
  }

  .server-card {
    padding: 12px;
  }
}


.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-notes span {
  padding: 6px 10px;
  border: 1px dotted rgba(255, 214, 153, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: var(--lime);
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
}


.server-grid-shell {
  border: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,244,214,0.04), transparent 12%),
    rgba(12, 8, 6, 0.72);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 16px;
}

.server-grid-shell__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 214, 153, 0.18);
}

.server-grid-shell__title,
.server-grid-shell__meta {
  font-family: "Press Start 2P", monospace;
  font-size: 0.52rem;
  line-height: 1.6;
}

.server-grid-shell__title {
  color: var(--lime);
}

.server-grid-shell__meta {
  color: var(--muted);
}

@keyframes blinkStamp {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.45; }
}
