/* ============================================================
   MOVIEXTO — Static Content Pages (Privacy / Terms / About)
   Loaded on top of home.css — uses the same CSS variables so it
   automatically follows dark/light theme.
   ============================================================ */

.static-page-wrap {
  max-width: 720px;
  margin: 2rem auto 3rem auto;
  padding: 0 1.2rem;
}

.static-page-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.static-section {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1rem;
}

.static-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: var(--text-primary);
}

.static-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
  color: var(--text-primary);
}

.static-section p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0.4rem 0 0.9rem 0;
}

.static-section p:last-child {
  margin-bottom: 0;
}

.static-section ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0.4rem 0 0.9rem 0;
}

.static-section ul:last-child {
  margin-bottom: 0;
}

.static-section li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.static-section strong {
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .static-page-wrap {
    margin: 1.2rem auto 2rem auto;
  }
  .static-page-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .static-section {
    padding: 1rem 1.1rem;
  }
}