* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f7f8;
  color: #182026;
  font-family: Arial, Helvetica, sans-serif;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.eyebrow {
  color: #4f6f52;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

h1 {
  font-size: 42px;
  margin: 0;
}

h2 {
  font-size: 18px;
  margin: 0 0 16px;
}

.status {
  background: #e7ece8;
  border: 1px solid #c6d1c8;
  border-radius: 6px;
  padding: 8px 12px;
}

.grid {
  display: grid;
  gap: 16px;
}

.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

article,
section {
  background: #ffffff;
  border: 1px solid #dbe2de;
  border-radius: 8px;
  padding: 18px;
}

.stats article span {
  color: #536269;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.stats article strong {
  font-size: 28px;
}

.list {
  display: grid;
  gap: 10px;
}

.video-wrap {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #11181d;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#live-frame {
  display: none;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

#video-placeholder {
  color: #dce5e0;
  font-size: 15px;
  position: absolute;
}

.metrics {
  color: #536269;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.row {
  align-items: center;
  border-top: 1px solid #edf1ef;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.row:first-child {
  border-top: 0;
  padding-top: 0;
}

.muted {
  color: #637178;
}

footer {
  color: #536269;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .stats,
  .two {
    grid-template-columns: 1fr;
  }

  header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
}
