.notice-panel:root {
  --color-background: #f7f8fa;
  --color-panel: #ffffff;
  --color-primary: #171717;
  --color-secondary: #404040;
  --color-muted: #e8ecf0;
  --color-border: #dfe3e8;
  --color-accent: #a16207;
  --color-accent-strong: #854d0e;
  --color-focus: #171717;
  --shadow-panel: 0 24px 80px rgba(23, 23, 23, 0.11);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(161, 98, 7, 0.08), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(23, 23, 23, 0.08), transparent 28%),
    var(--color-background);
  color: var(--color-primary);
}

a,
button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.page-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.notice-panel {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-panel);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent-strong);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 7vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--color-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.redirect-card {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.label {
  color: #626a73;
  font-size: 13px;
  font-weight: 700;
}

.domain-link {
  overflow-wrap: anywhere;
  color: var(--color-primary);
  font-size: clamp(19px, 4vw, 28px);
  font-weight: 800;
  text-decoration-color: rgba(161, 98, 7, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.timer {
  color: var(--color-secondary);
  font-size: 15px;
}

.timer strong {
  display: inline-block;
  min-width: 2ch;
  color: var(--color-accent-strong);
  font-variant-numeric: tabular-nums;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--color-primary);
  color: #ffffff;
}

.button.primary:hover {
  background: #2b2b2b;
}

.button.secondary {
  border-color: var(--color-border);
  background: #ffffff;
  color: var(--color-primary);
}

.button.secondary:hover {
  border-color: #b8c0ca;
  background: #f8fafc;
}

.copy-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--color-accent-strong);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .page-shell {
    align-items: start;
    padding-top: 18px;
  }

  .notice-panel {
    padding: 24px;
  }

  .brand-row {
    margin-bottom: 32px;
  }

  .actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
