/* SEO pages: match landing nav and site look */
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}
.seo-nav {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seo-nav a { text-decoration: none; }
.seo-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.seo-nav-logo img { height: 2.5rem; width: auto; }
.seo-nav-brand { font-size: 1.25rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .seo-nav-brand { font-size: 1.5rem; } }
.seo-nav-links { display: flex; align-items: center; gap: 1rem; }
.seo-nav-links .log-in { color: #d1d5db; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.seo-nav-links .log-in:hover { color: #fff; }
.seo-nav-links .register {
  background: #D00000; color: #fff; font-weight: 700; padding: 0.75rem 1.5rem;
  border-radius: 0.375rem; text-transform: uppercase; letter-spacing: 0.025em;
  box-shadow: 0 0 15px rgba(208,0,0,0.3);
}
.seo-nav-links .register:hover { background: #a00000; box-shadow: 0 0 25px rgba(208,0,0,0.5); }
.seo-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.seo-main h1 { font-size: 1.875rem; font-weight: 900; color: #fff; margin: 0 0 1.5rem; }
@media (min-width: 768px) { .seo-main h1 { font-size: 2.25rem; } }
.seo-main p { color: #d1d5db; margin: 0 0 1rem; }
.seo-main strong { color: #fff; }
.seo-cta { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #333; }
.seo-cta .btn {
  display: inline-block;
  background: #D00000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 0.375rem;
  text-decoration: none;
}
.seo-cta .btn:hover { background: #a00000; }
.seo-cta .log-link { color: #9ca3af; margin-left: 0.75rem; }
.seo-cta .log-link:hover { color: #fff; }
.seo-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}
.seo-related-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 0.75rem;
}
.seo-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.seo-related-list a { color: #D00000; text-decoration: none; font-weight: 600; }
.seo-related-list a:hover { text-decoration: underline; color: #ff4444; }
