    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Georgia', serif;
      background: #f9f5e9;
      color: #333;
      line-height: 1.6;
    }

    /* ==== ENCABEZADO ==== */
    header {
      background: linear-gradient(to right, #8B0000, #FFD700);
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    header p {
      font-style: italic;
      font-size: 1.1rem;
    }

    /* ==== NAVEGACIÓN ==== */
    nav {
      background: #333;
      padding: 1rem;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 1rem;
      font-weight: bold;
    }
    nav a:hover {
      color: #FFD700;
    }

    /* ==== SECCIONES ==== */
    section {
      padding: 3rem 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    h2 {
      color: #8B0000;
      border-bottom: 3px solid #FFD700;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    /* ==== PROTAGONISTAS ==== */
    .personajes {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }
    .personaje {
      background: white;
      border: 2px solid #FFD700;
      border-radius: 12px;
      width: 280px;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .personaje:hover {
      transform: translateY(-10px);
    }
    .personaje img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .personaje h3 {
      color: #8B0000;
      margin: 0.5rem 0;
    }

    /* ==== REFORMAS (LISTA) ==== */
    ul {
      background: #fff8e1;
      padding: 1.5rem;
      border-left: 5px solid #FFD700;
      margin: 1rem 0;
    }

    /* ==== PIE DE PÁGINA ==== */
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 2rem;
      margin-top: 2rem;
    }

    /* ==== RESPONSIVE ==== */
    @media (max-width: 768px) {
      header h1 { font-size: 2rem; }
      nav a { display: block; margin: 0.5rem 0; }
      .personajes { flex-direction: column; align-items: center; }
    }