@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #f3f3f3;
}

.container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px 24px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.subtitle {
  margin: 6px 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.last-updated {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 12px;
  color: #b9b9b9;
}

.domain-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}

.domain-card {
  width: min(740px, 100%);
  border: 1px solid #242424;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #171717 0%, #242424 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.domain-card:hover {
  transform: translateY(-1px);
  border-color: #343434;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}

.status.up {
  color: #39e58a;
  background: rgba(57, 229, 138, 0.12);
  border-color: rgba(57, 229, 138, 0.35);
}

.status.down {
  color: #ff7d7d;
  background: rgba(255, 125, 125, 0.12);
  border-color: rgba(255, 125, 125, 0.35);
}

.status.unknown {
  color: #9aa3ad;
  background: rgba(154, 163, 173, 0.1);
  border-color: rgba(154, 163, 173, 0.3);
}

.status.unknown .status-icon {
  border-color: rgba(154, 163, 173, 0.6);
}

.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 11px;
  font-weight: 800;
}

.domain-name {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.domain-card:hover .domain-name {
  color: #e9e9e9;
}

.page-footer {
  width: 100%;
  padding-top: 8px;
}

.footer-note {
  max-width: 860px;
  margin: 8px auto 0;
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 1.45;
}
