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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f3f4f6;
  color: #111827;
  min-height: 100vh;
}

.page {
  max-width: 720px;
  margin: 32px auto;
  padding: 16px;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.logo {
  max-width: 100%;
  height: auto;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  background: #f9fafb;
  margin-bottom: 16px;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111827;
}

.lead {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
}

.notice {
  background: #e0edff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.notice-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #1f2937;
}

.notice-link {
  font-size: 15px;
  margin-bottom: 4px;
}

.notice-link .arrow {
  margin-right: 6px;
}

.notice-link a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.notice-link a:hover {
  text-decoration: underline;
}

.notice-text {
  font-size: 13px;
  color: #4b5563;
}

.card > p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 12px;
}

.btn {
  flex: 1 1 160px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: #1d4ed8;
  color: #ffffff;
}

.btn.primary:hover {
  background: #1e40af;
}

.btn.secondary {
  background: #ffffff;
  color: #1d4ed8;
  border-color: #1d4ed8;
}

.btn.secondary:hover {
  background: #eff6ff;
}

.btn .small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.footer-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.footer-text a {
  color: #1d4ed8;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 12px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: #9ca3af;
}

@media (max-width: 480px) {
  .card {
    padding: 20px 16px 24px;
  }

  h1 {
    font-size: 22px;
  }

  .page {
    margin: 16px auto;
  }
}
