.status-body {
  min-height: 100vh;
  color: var(--text);
  background: #070b10;
}

.status-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 14%, rgba(55, 216, 134, .12), transparent 24rem),
    radial-gradient(circle at 14% 20%, rgba(119, 33, 20, .28), transparent 34rem),
    linear-gradient(135deg, #080c12, #101820 48%, #140e13);
}

.status-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(248, 237, 216, .08);
  background: rgba(7, 10, 14, .88);
  backdrop-filter: blur(14px);
}

.status-shell {
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
  padding: 74px 0 92px;
}

.status-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: 390px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.status-hero h1,
.status-panel h2 {
  margin: 0;
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.status-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: .88;
}

.status-hero p,
.status-main-card p,
.status-main-card small,
.status-panel span {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.status-main-card,
.status-grid article,
.status-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(22, 28, 36, .92), rgba(10, 14, 20, .9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.status-main-card {
  padding: 30px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: #f1bd58;
  box-shadow: 0 0 0 12px rgba(241, 189, 88, .12);
  margin-bottom: 48px;
}

.status-dot.is-online {
  background: #40e08b;
  box-shadow: 0 0 0 12px rgba(64, 224, 139, .13);
}

.status-dot.is-offline {
  background: #e05252;
  box-shadow: 0 0 0 12px rgba(224, 82, 82, .13);
}

.status-main-card strong {
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 42px 0;
}

.status-grid article {
  padding: 24px;
}

.status-grid span,
.status-meta span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.status-grid strong {
  display: block;
  margin-top: 14px;
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
}

.status-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.status-panel {
  padding: 30px;
}

.status-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .98;
}

.top-player,
.status-meta {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
}

.top-player strong,
.status-meta strong {
  display: block;
  color: #fff3dc;
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.status-link {
  display: inline-flex;
  margin-top: 18px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  color: #201408;
  background: linear-gradient(135deg, #ffd36a, #a96a18);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .status-hero,
  .status-grid,
  .status-detail-grid {
    grid-template-columns: 1fr;
  }
}