:root {
  --black: #070707;
  --charcoal: #111111;
  --card: rgba(255, 255, 255, 0.045);
  --white: #ffffff;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.14);
  --active: #22c55e;
  --inactive: #ef4444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 197, 94, 0.16), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(239, 68, 68, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #101010 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.hero {
  text-align: center;
  margin-bottom: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.intro {
  width: min(620px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stats div {
  min-width: 130px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.active-dot {
  background: var(--active);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.65);
}

.inactive-dot {
  background: var(--inactive);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.55);
}

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

.domain-card {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.domain-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075);
}

.domain-card.active {
  border-color: var(--active);
}

.domain-card.active:hover {
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.16), 0 0 22px rgba(34, 197, 94, 0.18);
}

.domain-card.inactive {
  border-color: var(--inactive);
}

.domain-card.inactive:hover {
  box-shadow: 0 18px 42px rgba(239, 68, 68, 0.14), 0 0 20px rgba(239, 68, 68, 0.13);
}

.domain-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  word-break: break-word;
}

.status,
.live-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  margin-bottom: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.active .status {
  background: rgba(34, 197, 94, 0.14);
}

.inactive .status {
  background: rgba(239, 68, 68, 0.14);
}

.live-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #07130b;
  background: var(--active);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.38);
}

footer {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-top: 48px;
  }

  .stats {
    gap: 10px;
  }

  .stats div {
    width: 100%;
  }

  .legend {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }
}

footer a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

footer a:hover {
  border-bottom-color: var(--white);
}
