:root {
  color-scheme: dark;
  --bg: #0b1020;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
  --accent: #f48120;
  --accent2: #6be4ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(900px 700px at 15% 10%, rgba(244, 129, 32, 0.28), transparent 60%),
    radial-gradient(740px 650px at 88% 25%, rgba(107, 228, 255, 0.2), transparent 55%),
    radial-gradient(800px 850px at 40% 85%, rgba(134, 96, 255, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34)),
    var(--bg);
  color: var(--text);
}

.wrap {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 44px 18px;
}

.card {
  width: min(900px, 100%);
  padding: 26px 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.domain {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
}

h1 {
  margin: 14px 0 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 75ch;
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.label {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.value {
  margin-top: 10px;
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.hint {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.68);
}

.mini {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.86);
}

.k {
  display: inline-block;
  min-width: 92px;
  color: rgba(255, 255, 255, 0.65);
}

.actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
  font-size: 13.5px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  border-color: rgba(244, 129, 32, 0.35);
  background: linear-gradient(135deg, rgba(244, 129, 32, 0.9), rgba(107, 228, 255, 0.55));
  color: rgba(0, 0, 0, 0.85);
}

.note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.75;
}

.footer {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
}

.sep {
  opacity: 0.55;
}

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

  .k {
    min-width: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
