/* Global utilities + SEO section styles */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Mobile perf: disable fixed backgrounds */
@media (max-width: 768px) {
  .hero-section,
  .hero,
  .hero-banner,
  .page-hero,
  .series-hero,
  .banner,
  .cover,
  .main-hero {
    background-attachment: scroll !important;
  }
}

/* SEO SECTION STYLES (shared) */
.seo-section {
  padding: 50px 4% 80px;
  background: #0a0a0a;
}

.seo-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.seo-card h2 {
  font-size: 1.6rem;
  color: var(--primary, #00f2ff);
  margin-bottom: 16px;
}

.seo-card .seo-block h2 {
  font-size: 1.2rem;
  margin-top: 18px;
}

.seo-card p {
  color: #cbd5f5;
  margin-bottom: 12px;
  line-height: 1.7;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-links a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: 0.3s ease;
}

.seo-links a:hover {
  border-color: var(--primary, #00f2ff);
  color: var(--primary, #00f2ff);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--text-muted, #a3a3a3);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary, #00f2ff);
}
