* {
  box-sizing: border-box;
}

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

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.brand-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.brand-sub {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: -6px;
}

.brand-title {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
}

.page-title {
  margin: 18px 0 14px;
  font-size: 22px;
  font-weight: 700;
}

.action-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.btn {
  border: 0;
  background: #1e73d8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  cursor: default;
}

.status-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.status {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-right: 10px;
}

.status.connected {
  color: #1f9d3a;
}

.status.disconnected {
  color: #c62828;
}

.status.connecting {
  color: #d98200;
}

.last-update {
  display: inline-block;
  font-size: 12px;
  color: #666;
}

.report-card {
  background: #fff;
}

.report-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  row-gap: 12px;
  column-gap: 44px;
  align-items: center;
}

.label {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.value {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  word-break: break-word;
}

@media (max-width: 600px) {
  .page {
    max-width: 100%;
    padding: 20px 16px 32px;
  }

  .brand-title {
    font-size: 46px;
  }

  .report-grid {
    grid-template-columns: 130px 1fr;
    column-gap: 20px;
    row-gap: 10px;
  }

  .label,
  .value {
    font-size: 15px;
  }
}