:root {
  color-scheme: dark;
  --background: #090a0d;
  --surface: #111318;
  --border: #24272f;
  --text: #f3f4f6;
  --muted: #8d929e;
  --red: #ff514b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 81, 75, 0.08), transparent 25rem),
    var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.notice {
  width: min(100%, 520px);
  padding: 48px;
  text-align: center;
  background: rgba(17, 19, 24, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--red);
  background: rgba(255, 81, 75, 0.1);
  border: 1px solid rgba(255, 81, 75, 0.25);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
}

.label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(31px, 6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.description {
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.domain {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0 17px;
  overflow: hidden;
  background: #0c0e12;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
}

#requested-domain {
  overflow: hidden;
  color: #cdd0d7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  flex: none;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}

button {
  width: 100%;
  min-height: 50px;
  color: #fff;
  background: #252830;
  border: 1px solid #30343d;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}

button:hover { background: #30343d; }
button:active { transform: translateY(1px); }
button:focus-visible { outline: 3px solid rgba(255, 81, 75, 0.3); outline-offset: 3px; }

.help {
  margin: 20px 0 0;
  color: #606570;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 520px) {
  main { padding: 16px; }
  .notice { padding: 38px 24px; border-radius: 16px; }
}

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