body {
  margin: 0;
  background: #0b0b0b;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  padding: 20px 40px;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  gap: 20px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px;
}

.category-card {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  position: relative;
  text-decoration: none;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    transparent
  );
  font-size: 22px;
  color: #ffffff;
}


.season-title {
  cursor: pointer;
  padding: 20px 40px;
}

.season {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 20px;
  padding: 40px;
}

.season.hidden {
  display: none !important;
}

.episode {
  text-decoration: none;
  color: white;
}

.episode img {
  width: 100%;
  border-radius: 10px;
}

.player-page {
  max-width: 1000px;
  margin: 40px auto;
}

video {
  width: 100%;
  border-radius: 12px;
}

.next-btn {
  margin-top: 20px;
  padding: 12px 20px;
  background: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Fuente para títulos (Huntik / Pokémon / títulos grandes) */
h1, 
.season-title, 
.overlay {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff; /* blanco puro */
}

h1 {
  letter-spacing: 1px;
  text-transform: uppercase;
}
