body { background: #111; color: #fff; font-family: sans-serif; padding: 2rem; }
    .ver-episodio-btn {
      border: 2px solid #e2d703;
      color: #fff;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      background-color: #1d1a28;
      cursor: pointer;
      transition: 0.3s ease-in-out;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .ver-episodio-btn:hover {
      background: #e2d703;
      color: #1d1a28;
    }
    .episode-row {
      display: flex;
      gap: 1rem;
      background: #1a1a1a;
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 2rem;
      align-items: center;
    }
    .episode-details img {
      width: 300px;
      height: auto;
      border-radius: 6px;
    }
    .modal {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 1rem;
    }
    .modal-content.episode {
      background: #222;
      padding: 2rem;
      max-width: 900px;
      width: 100%;
      border-radius: 10px;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2.5rem;
      color: #fff;
      cursor: pointer;
    }