/* ---------------------------
   terminos.css - Anime Game Dolls
   v1.0 - 05 Nov 2025
---------------------------- */

:root {
  --brand: #ff4081;
  --brand-dark: #e73370;
  --bg: #fafafa;
  --text: #222;
  --card: #fff;
  --muted: #666;
  --ring: rgba(255,64,129,0.2);
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  font-size: 1.9rem;
  margin: 0 0 20px;
  color: #111;
}

p.update {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

section {
  margin-bottom: 28px;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--brand);
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

p, ul {
  font-size: 1rem;
  margin: 0 0 12px;
}

ul {
  padding-left: 20px;
  list-style: disc;
}

em {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    margin: 20px auto;
    padding: 20px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
}