:root {
  --bg-deep: #060a0f;
  --bg: #0a1018;
  --bg-elevated: #111a26;
  --card: rgba(17, 26, 38, 0.85);
  --card-solid: #141f2e;
  --accent: #3ecf8e;
  --accent-bright: #5ee0a8;
  --accent-dim: #2a9d6a;
  --accent-glow: rgba(62, 207, 142, 0.25);
  --gold: #c9a227;
  --text: #f0f4f8;
  --text-secondary: #b8c5d6;
  --muted: #7a8fa6;
  --error: #f07178;
  --warn: #e6b84a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --nav-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(62, 207, 142, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(41, 98, 255, 0.06), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, #0d1520 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(6, 10, 15, 0.82);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(62, 207, 142, 0.35);
}

.logo__text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  min-width: 0;
  flex-shrink: 1;
}

.site-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a.is-active {
  color: var(--accent);
  background: rgba(62, 207, 142, 0.1);
}

.site-nav__profile {
  margin-left: 0.35rem;
  padding-left: 0.65rem;
  border-left: 1px solid var(--border);
}

.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.site-nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--nav-open .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--nav-open .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header--nav-open .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.profile-menu {
  position: relative;
}

.profile-menu > summary {
  list-style: none;
}

.profile-menu > summary::-webkit-details-marker {
  display: none;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 14rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.profile-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.profile-btn.is-active,
.profile-menu[open] > .profile-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.profile-btn__avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-btn__avatar--guest,
.profile-btn__avatar--discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-btn__avatar--guest {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.profile-btn__avatar--discord {
  border-radius: 50%;
  image-rendering: auto;
}

.profile-btn__meta {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  min-width: 0;
}

.profile-btn__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 6.5rem;
  color: var(--text);
  font-weight: 600;
}

.profile-btn__status {
  flex-shrink: 0;
}

.profile-status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-status--approved {
  color: var(--accent-dim);
}

.profile-status--pending,
.profile-status--expired {
  color: var(--warn);
}

.profile-status--rejected,
.profile-status--revoked {
  color: var(--error);
}

.profile-status--registering {
  color: #8aa8d8;
}

.profile-btn__chevron {
  flex-shrink: 0;
  margin-left: -0.1rem;
  color: var(--muted);
  transition: transform 0.15s ease, color 0.15s ease;
}

.profile-menu[open] .profile-btn__chevron {
  transform: rotate(180deg);
  color: var(--text-secondary);
}

.profile-menu__panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 120;
  width: min(16rem, calc(100dvw - 2rem));
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card-solid);
  box-shadow: var(--shadow);
}

.profile-menu__user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.6rem 0.65rem;
}

.profile-menu__avatar {
  width: 36px;
  height: auto;
  max-height: 58px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-menu__avatar--discord {
  width: 40px;
  height: 40px;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.profile-menu__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.profile-menu__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.profile-menu__sub {
  font-size: 0.76rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.profile-menu__badge {
  margin-top: 0.1rem;
  padding: 0.18rem 0.45rem;
  font-size: 0.62rem;
}

.profile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.15rem 0;
  border-top: 1px solid var(--border);
}

.profile-menu__links a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.profile-menu__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.profile-menu__links a.is-active {
  color: var(--accent);
  background: rgba(62, 207, 142, 0.1);
}

.profile-menu__footer {
  margin-top: 0.15rem;
  padding-top: 0.15rem;
  border-top: 1px solid var(--border);
}

.profile-menu__logout {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.profile-menu__logout:hover {
  color: #ffb4b8;
  background: rgba(240, 113, 120, 0.08);
}

.page {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  min-width: 0;
}

.page--narrow {
  max-width: 520px;
}

.page--wide {
  max-width: 1280px;
}

.home-dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero--server {
  padding: 0.5rem 0 0;
  text-align: center;
}

.hero--video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: clamp(220px, 38vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  margin-top: -0.5rem;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 15, 0.45) 0%,
    rgba(6, 10, 15, 0.62) 45%,
    rgba(6, 10, 15, 0.82) 100%
  );
  pointer-events: none;
}

.hero--video .hero__top {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero--video .hero__title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.hero--video .hero__motd,
.hero--video .hero__lead,
.hero--video .hero__sleep-hint {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero--video {
    background:
      linear-gradient(145deg, rgba(62, 207, 142, 0.08), rgba(6, 10, 15, 0.95)),
      var(--surface);
  }
}

.hero__motd {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
  background: var(--muted);
}

.status-dot--online {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease infinite;
}

.status-dot--offline {
  background: var(--error);
}

.status-dot--sleeping {
  background: #6b8cce;
  box-shadow: 0 0 10px rgba(107, 140, 206, 0.45);
  animation: pulse 2.5s ease infinite;
}

.status-dot--starting {
  background: var(--warn);
  box-shadow: 0 0 10px rgba(230, 184, 74, 0.4);
  animation: pulse 1.2s ease infinite;
}

.hero__sleep-hint {
  margin: 0.5rem auto 0;
  max-width: 28rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat-card__value--sm {
  font-size: 1.15rem;
}

.stat-card__value--copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat-card__value--copy code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-bright);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.stat-card__muted {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.stat-card__hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.btn-copy {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-copy:hover {
  background: rgba(62, 207, 142, 0.15);
  color: var(--accent);
}

.btn-copy.is-copied {
  color: var(--accent);
  border-color: rgba(62, 207, 142, 0.35);
  background: rgba(62, 207, 142, 0.12);
}

.tech-metrics {
  padding: 1.75rem 2rem;
}

.tech-metrics--last {
  margin-bottom: 0;
}

.tech-metrics__title {
  margin: 0;
}

.tech-metrics__subtitle {
  margin: 0.35rem 0 0;
}

.tech-metrics__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.tech-metrics__badge {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  color: var(--accent-bright);
  background: rgba(62, 207, 142, 0.1);
  border: 1px solid rgba(62, 207, 142, 0.35);
  box-shadow: 0 0 12px rgba(62, 207, 142, 0.15);
}

.tech-metrics__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tech-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-metric--tps {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .tech-metrics__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-metric--tps {
    grid-column: span 2;
  }
}

.tech-metric {
  padding: 1.25rem 1.35rem;
  min-height: 6.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(62, 207, 142, 0.45);
}

.tps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.tps-cell {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tps-cell__k {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.tps-cell__v {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
}

.tech-metric__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.tech-metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.tech-metric__value--mono {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-bright);
  word-break: break-word;
}

.tech-metric__dim {
  font-size: 0.85em;
  font-weight: 500;
  color: var(--muted);
}

.tech-metric__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", monospace;
}

.tech-metric__bar {
  height: 4px;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.tech-metric__bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: none;
}

.tech-metric__bar-fill--good {
  background: linear-gradient(90deg, #2ecc71, #3ecf8e);
  box-shadow: 0 0 8px rgba(62, 207, 142, 0.5);
}

.tech-metric__bar-fill--warn {
  background: linear-gradient(90deg, #f39c12, #e67e22);
}

.tech-metric__bar-fill--bad {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.tech-metric__bar-fill--unknown {
  background: rgba(255, 255, 255, 0.15);
}

.tech-metric__bar-fill--mem {
  background: linear-gradient(90deg, #3498db, #5dade2);
}

.tech-metric__bar-fill--cpu {
  background: linear-gradient(90deg, #e67e22, #f39c12);
}

.tech-metric__bar-fill--cpu.tech-metric__bar-fill--good {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.tech-metric__bar-fill--cpu.tech-metric__bar-fill--warn {
  background: linear-gradient(90deg, #e67e22, #f39c12);
}

.tech-metric__bar-fill--cpu.tech-metric__bar-fill--bad {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}

.home-live {
  display: grid;
  gap: 1.5rem;
}

.home-live--empty {
  display: none;
}

.home-live--solo {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
  .home-live--solo {
    max-width: 720px;
  }
}

.live-panel[hidden] {
  display: none !important;
}

.home-bottom {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .home-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .home-bottom {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
}

.live-panel .card__subtitle {
  margin-bottom: 1.25rem;
}

.live-panel__empty {
  margin: 0;
}

.live-panel {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.live-panel--chat .chat-feed {
  flex: 1 1 auto;
  min-height: 280px;
  height: 420px;
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.home-bottom .live-panel--members .player-list--scroll {
  max-height: 280px;
}

@media (min-width: 900px) {
  .home-live:not(.home-live--empty) {
    grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.45fr);
    align-items: stretch;
  }

  .home-live:not(.home-live--empty) .live-panel--chat .chat-feed {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (min-width: 1200px) {
  .home-live:not(.home-live--empty) {
    grid-template-columns: minmax(280px, 1fr) minmax(400px, 1.55fr);
  }
}

.online-players {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.online-player {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(62, 207, 142, 0.2);
}

.online-player__avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.4);
  align-self: center;
}

.online-player__main {
  min-width: 0;
}

.online-player__name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.online-player__vitals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vital-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr 2.75rem;
  align-items: center;
  gap: 0.5rem;
}

.vital-row--empty {
  grid-template-columns: 1.5rem 1fr;
}

.vital-row__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}

.vital-row--health .vital-row__label {
  color: #e74c3c;
}

.vital-row--food .vital-row__label {
  font-size: 0.75rem;
}

.vital-row__track {
  height: 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  min-width: 0;
}

.vital-row__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.vital-row--health .vital-row__fill {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}

.vital-row--food .vital-row__fill {
  background: linear-gradient(90deg, #8b6914, #e6b84a);
}

.vital-row__val {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.vital-row--empty .vital-row__val {
  color: var(--muted);
  font-weight: 500;
}

.chat-feed {
  height: 420px;
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
}

.chat-line {
  margin-bottom: 0.45rem;
  word-break: break-word;
}

.chat-line__time {
  color: var(--muted);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  margin-right: 0.35rem;
}

.chat-line__player {
  color: var(--accent-bright);
  font-weight: 600;
}

.chat-line--join,
.chat-line--leave,
.chat-line--system {
  color: var(--muted);
  font-style: italic;
}

.chat-line--join .chat-line__player,
.chat-line--leave .chat-line__player {
  color: var(--warn);
  font-style: normal;
}

.player-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.player-list--scroll {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.player-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.player-chip__avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  image-rendering: pixelated;
  background: rgba(0, 0, 0, 0.35);
}

a.player-chip__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

a.player-chip__main:hover .player-chip__mc {
  color: var(--accent-bright);
}

a.player-chip__main:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.player-chip__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.player-chip--online {
  border-color: rgba(62, 207, 142, 0.25);
}

.player-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.player-chip__mc {
  font-weight: 600;
  color: var(--text);
}

.player-chip__discord {
  color: var(--muted);
  font-size: 0.85rem;
}

.player-chip__discord::before {
  content: "@";
  opacity: 0.6;
}

.player-chip__status {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.65rem;
}

.death-log {
  margin-bottom: 0;
}

.home-side-feeds {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .home-side-feeds {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Homepage Diamonds widget */
section.card.home-diamonds {
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  border-color: rgba(92, 184, 255, 0.18);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(92, 184, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(62, 207, 142, 0.06), transparent 50%),
    var(--card);
  overflow: hidden;
}

.home-diamonds__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
}

.home-diamonds__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.home-diamonds__gem {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(92, 184, 255, 0.22), rgba(62, 207, 142, 0.12));
  border: 1px solid rgba(92, 184, 255, 0.28);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(92, 184, 255, 0.12);
}

.home-diamonds__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.home-diamonds__subtitle {
  margin: 0.12rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.home-diamonds__link {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-bright);
  white-space: nowrap;
}

.home-diamonds__link:hover {
  color: var(--text);
}

.home-diamonds__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

a.home-diamonds__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.12s ease,
    box-shadow 0.15s ease;
}

a.home-diamonds__card:hover {
  border-color: rgba(92, 184, 255, 0.35);
  background: rgba(92, 184, 255, 0.08);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

a.home-diamonds__card--rank-1 {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(0, 0, 0, 0.22));
}

a.home-diamonds__card--rank-1:hover {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.16), rgba(92, 184, 255, 0.06));
}

.home-diamonds__rank {
  flex-shrink: 0;
  width: 1.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--gold);
}

.home-diamonds__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  image-rendering: pixelated;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.home-diamonds__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.home-diamonds__name {
  font-size: 0.84rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-diamonds__score {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.home-diamonds__score strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #7ec8ff;
}

.home-diamonds__unit {
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.9;
}

.home-updates__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0;
}

.home-updates__head .card__title {
  margin-bottom: 0;
}

.home-updates__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.home-updates__link:hover {
  color: var(--accent-bright);
}

.home-updates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 480px;
  overflow-y: auto;
}

.home-update {
  --tone: var(--accent);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-left: 3px solid color-mix(in srgb, var(--tone) 55%, transparent);
}

.home-update--empty {
  border-left-color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
}

.home-update--amber { --tone: #e6b84a; }
.home-update--neutral { --tone: #8b9cb0; }
.home-update--violet { --tone: #a78bfa; }
.home-update--cyan { --tone: #67e8f9; }
.home-update--green { --tone: #3ecf8e; }
.home-update--blue { --tone: #7cb4ff; }
.home-update--rose { --tone: #fb7185; }
.home-update--red { --tone: #f87171; }

.home-update--resolved {
  opacity: 0.72;
  border-left-color: rgba(62, 207, 142, 0.4);
}

.home-update__resolved {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9eebc8;
}

.home-update__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.home-update__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tone) 75%, white);
}

.home-update__time {
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.home-update__title {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.home-update__title:hover {
  color: var(--accent-bright);
}

.home-update__body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-update__body p {
  margin: 0;
  display: inline;
}

.home-update__body p + p::before {
  content: " ";
}

.home-update__body ul {
  margin: 0;
  padding-left: 1rem;
}

.home-update__body strong {
  color: var(--text-primary);
  font-weight: 650;
}

.home-update__body em {
  font-style: italic;
  color: var(--text-primary);
}

.home-update__body del {
  opacity: 0.72;
}

.home-update__body a.bulletin-link {
  color: #7cb4ff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.home-update__thumb {
  display: block;
  width: 100%;
  max-height: 5rem;
  margin-top: 0.5rem;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.death-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 480px;
  overflow-y: auto;
}

.death-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.22);
  border-left: 3px solid rgba(231, 76, 60, 0.65);
}

.death-row--empty {
  background: rgba(0, 0, 0, 0.2);
  border-color: var(--border);
  border-left-color: var(--muted);
}

.death-row__avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  image-rendering: pixelated;
  opacity: 0.9;
}

.death-row__body {
  min-width: 0;
  flex: 1;
}

.death-row__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}

.death-row__player {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.death-row__time {
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.death-row__reason {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.card--cta {
  margin-bottom: 1.5rem;
}

.home-bottom .card--cta {
  margin-bottom: 0;
}

.card--cta-promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(62, 207, 142, 0.12) 0%,
    rgba(17, 26, 38, 0.95) 55%
  );
  border-color: rgba(62, 207, 142, 0.28);
}

.home-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-bottom .home-cta {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  gap: 1.25rem;
}

.home-cta__copy .card__title {
  margin-bottom: 0.35rem;
}

.home-cta__text {
  margin-bottom: 0;
}

.home-cta__actions {
  min-width: 240px;
  flex: 1;
  max-width: 320px;
}

.home-bottom .home-cta__actions {
  max-width: none;
  min-width: 0;
}

.steps--compact {
  margin: 0;
}

.steps--compact .step {
  padding: 0.85rem 1rem;
}

.steps--compact .step__text {
  font-size: 0.82rem;
}

.flash {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border: 1px solid;
}

.flash::before {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.flash.success {
  background: rgba(62, 207, 142, 0.1);
  border-color: rgba(62, 207, 142, 0.35);
  color: var(--accent-bright);
}

.flash.success::before { content: "✓"; }

.flash.error {
  background: rgba(240, 113, 120, 0.1);
  border-color: rgba(240, 113, 120, 0.35);
  color: #ffb4b8;
}

.flash.error::before { content: "!"; }

.flash.info {
  background: rgba(230, 184, 74, 0.1);
  border-color: rgba(230, 184, 74, 0.35);
  color: #f5d78a;
}

.flash.info::before { content: "i"; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card--flat {
  box-shadow: none;
}

.card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.card__subtitle {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.25);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.hero__lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

.step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  background: rgba(62, 207, 142, 0.15);
  border: 1px solid rgba(62, 207, 142, 0.25);
}

.step__title {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.step__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cta-block {
  margin-top: 1.75rem;
}

.page-back {
  margin: 0 0 1rem;
}

.page-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.page-back__link:hover {
  color: var(--accent);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
}

.link-row a {
  color: var(--muted);
  font-weight: 500;
}

.link-row a:hover {
  color: var(--accent);
}

.layout--auth .page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.5rem, 6vh, 3rem);
}

.auth-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card--auth {
  padding: clamp(1.75rem, 4vw, 2.25rem);
}

.card--auth .card__subtitle {
  margin-bottom: 1.75rem;
}

.auth-card__hint {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.auth-links a {
  color: var(--muted);
  font-weight: 500;
}

.auth-links a:hover {
  color: var(--accent);
}

.auth-links__sep {
  color: var(--border-strong);
  user-select: none;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.15rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-dim));
  color: #041208;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  color: #041208;
  box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
  background: #4752c4;
  color: #fff;
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.45);
}

.btn-small {
  width: auto;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

.btn-xs {
  width: auto;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.2;
}

.btn-outline-danger {
  background: transparent;
  color: #ffb4b8;
  border: 1px solid rgba(240, 113, 120, 0.4);
  box-shadow: none;
}

.btn-outline-danger:hover {
  background: rgba(240, 113, 120, 0.15);
  color: #fff;
  border-color: rgba(240, 113, 120, 0.55);
}

.btn-danger {
  background: rgba(240, 113, 120, 0.15);
  color: #ffb4b8;
  border: 1px solid rgba(240, 113, 120, 0.35);
  box-shadow: none;
}

.btn-danger:hover {
  background: rgba(240, 113, 120, 0.25);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.status-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 1.25rem 0;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.status-row:last-child {
  border-bottom: none;
}

.status-row__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.status-row__value {
  font-weight: 600;
  text-align: right;
}

.status-message {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  border: 1px solid var(--border);
}

.status-message--ok {
  background: rgba(62, 207, 142, 0.1);
  border-color: rgba(62, 207, 142, 0.25);
  color: var(--accent-bright);
}

.status-message--warn {
  background: rgba(230, 184, 74, 0.1);
  border-color: rgba(230, 184, 74, 0.25);
  color: #f5d78a;
}

.status-message--error {
  background: rgba(240, 113, 120, 0.1);
  border-color: rgba(240, 113, 120, 0.25);
  color: #ffb4b8;
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pending {
  background: rgba(230, 184, 74, 0.15);
  color: var(--warn);
}

.status-approved {
  background: rgba(62, 207, 142, 0.15);
  color: var(--accent-bright);
}

.status-rejected,
.status-revoked {
  background: rgba(240, 113, 120, 0.12);
  color: #ffb4b8;
}

.status-expired {
  background: rgba(230, 184, 74, 0.12);
  color: var(--warn);
}

.status-registering {
  background: rgba(107, 140, 206, 0.15);
  color: #9eb8ea;
}

.hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: -0.25rem 0 1rem;
  line-height: 1.5;
}

.hint--warn {
  color: var(--warn);
}

