body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #111111;
  color: #f5f5f5;
}

.seo-page {
  width: min(560px, 100%);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #1a1a1a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.seo-page__brand {
  display: inline-block;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.seo-page h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.15;
}

.seo-page p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.seo-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.seo-page__btn--primary {
  background: #ffffff;
  color: #111111;
}

.seo-page__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f5f5f5;
}

.seo-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.seo-page__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
}
