/* === Reset básico === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0a0a0a, #1a001a);
  color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Encabezado === */
header {
  background-color: #1a001a;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #800080;
}

header h1 {
  color: #c0aaff;
  font-size: 2.5em;
  margin-bottom: 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  padding: 10px 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #c879e0;
}

/* === Dropdown === */
.dropdown {
  position: relative;
}

.dropbtn {
  background-color: #bb37c0;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.dropbtn:hover {
  background-color: #5e265e;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #e0f7fa;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* === Sección principal === */
.categoria {
  padding: 40px 20px;
  background-color: #1a001a;
  border-top: 1px solid #800080;
  flex: 1;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.grid-item {
  background-color: #2a0033;
  border: 1px solid #800080;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.03);
}

.grid-item h3 {
  color: #d8b4ff;
  margin-bottom: 10px;
}

.grid-item p {
  color: #ccc;
  margin-bottom: 15px;
}

.grid-item a {
  color: #b38aff;
  text-decoration: underline;
  font-weight: bold;
}

/* === Pie de página === */
footer {
  text-align: center;
  padding: 20px;
  background-color: #0d0d0d;
  color: #999;
  border-top: 1px solid #800080;
  margin-top: auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  .dropbtn {
    font-size: 14px;
    padding: 8px 12px;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
.contenedor-vertical {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.franja-imagen {
  flex: 1;
  background-image: url('imagenes/rollo.png'); /* Cambia esto por tu imagen */
  background-size: cover;
  background-position: center;
}

.columnas-streaming {
  flex: 4;
  display: flex;
  flex-direction: row;
  background-color: rgba(26, 0, 26, 0.9);
  padding: 40px;
  gap: 30px;
}

.columna-streaming {
  flex: 1;
  background-color: #2a0033;
  border: 1px solid #800080;
  border-radius: 10px;
  padding: 20px;
  color: #eee;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.3);
}

.columna-streaming h2 {
  color: #d8b4ff;
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 2px solid #800080;
  padding-bottom: 5px;
}

.columna-streaming ul {
  list-style: none;
  padding-left: 0;
}

.columna-streaming li {
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(128, 0, 128, 0.1);
  border-radius: 6px;
}

.columna-streaming li:hover {
  background-color: rgba(128, 0, 128, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .columnas-streaming {
    flex-direction: column;
  }
}
.streaming-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-color: #1a001a;
}

.franja-lateral {
  width: 10%;
  background-image: url('imagenes/rollo.png'); /* Cambia esto por tu imagen */
  background-repeat: repeat-y; /* Repite verticalmente */
  background-size: contain;    /* Ajusta para que se vea bien */
  background-position: center;
}


.columna-streaming {
  width: 40%;
  padding: 30px;
  background-color: #2a0033;
  border: 1px solid #800080;
  border-radius: 10px;
  margin: 20px 0;
  color: #eee;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.3);
}

.columna-streaming h2 {
  color: #d8b4ff;
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 2px solid #800080;
  padding-bottom: 5px;
}

.columna-streaming ul {
  list-style: none;
  padding-left: 0;
}

.columna-streaming li {
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(128, 0, 128, 0.1);
  border-radius: 6px;
}

.columna-streaming li:hover {
  background-color: rgba(128, 0, 128, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .streaming-layout {
    flex-direction: column;
  }

  .franja-lateral {
    display: none;
  }

  .columna-streaming {
    width: 100%;
  }
}
.columna-streaming a {
  color: #D1B3FF;            /* Lavanda claro */
  text-decoration: none;     /* Quita el subrayado */
  cursor: default;           /* Opcional: evita el cursor de enlace */
  font-weight: normal;       /* Opcional: evita que se vean más gruesos */
}

.columna-streaming a:hover {
  color: #D1B3FF;            /* Mantiene el mismo color al pasar el mouse */
  text-decoration: none;     /* Sin subrayado al hacer hover */

    body {
      background-color: #1a1a1a;
      color: #f0f0f0;
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    header h1 {
      text-align: center;
      font-size: 2.5em;
      margin: 20px 0;
      color: #d8b4ff;
    }

    .titulo-principal {
      text-align: center;
      font-size: 4em;
      font-weight: bold;
      color: #ffd700;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .contenido-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 20px;
    }

    .trailer {
      flex: 1 1 500px;
      max-width: 600px;
    }

    .trailer iframe {
      width: 100%;
      height: 340px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.5);
    }

    .detalles {
      flex: 1 1 300px;
      max-width: 400px;
    }

    .detalles p {
      font-size: 1.1em;
      margin: 10px 0;
    }

    .enlace-conjuros {
      text-align: center;
      margin: 40px 0;
    }

    .enlace-conjuros a {
      color: #d8b4ff;
      text-decoration: none;
      font-weight: bold;
    }

    footer {
      text-align: center;
      padding: 20px;
      background-color: #000;
      color: #ccc;
    }
    .iframe-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  width: 100%;
}
.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropbtn {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.menu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #222;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
}

.dropdown {
  position: relative;
}

.dropbtn {
  background-color: #444;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #333;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}}