/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: #ffffff;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --border: #e5e7eb;
  --muted: #6b7280;
  --brand: #111827;
  --accent: #ef4444;
  --secure: #10b981;
  --secure-bg: #ecfdf5;
  --secure-border: #d1fae5;
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.notice {
  width: min(720px, 100%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.notice__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 800; }
.brand__dot { width: 10px; height: 10px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.brand__text { letter-spacing: 0.5px; }

.notice__header h1 { font-size: 18px; color: #111827; }

.lead { color: #374151; line-height: 1.9; margin: 8px 0 10px; }

.list { padding-inline-start: 18px; color: #374151; }
.list li { margin: 6px 0; line-height: 1.9; }

.notice__meta { display: flex; gap: 12px; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.status { padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.status--secure { border: 1px solid var(--secure-border); background: var(--secure-bg); color: var(--secure); }

.notice__contact { margin-top: 10px; font-size: 14px; }
.notice__contact a { color: #2563eb; text-decoration: none; }
.notice__contact a:hover { text-decoration: underline; }

.translation { margin-top: 16px; padding-top: 12px; border-top: 1px dashed var(--border); }
.translation h2 { font-size: 16px; color: #111827; margin-bottom: 6px; }
.translation__meta { margin-top: 8px; color: var(--secure); font-weight: 800; }

@media (max-width: 480px) {
  .notice { border-radius: 12px; padding: 16px; }
  .notice__header { flex-direction: column; align-items: flex-start; gap: 6px; }
}
