/* Reset y tipografía */
* {
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  margin: 0;
  background-color: #000;
  background-image: url("fondo-magia.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  color: #e8e6d9;
}

header {
  text-align: center;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 2px solid #2e8b57;
  box-shadow: 0 0 25px #1e4620;
}

header h1 {
  font-size: 3rem;
  color: #d4af37;
  text-shadow: 0 0 25px #2e8b57, 0 0 10px #d4af37;
  margin: 0;
}

/* Sección de películas */
.peliculas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
  padding: 50px;
  background: rgba(0, 0, 0, 0.85);
}

.pelicula {
  background: rgba(10, 10, 10, 0.95);
  border: 2px solid #2e8b57;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(46, 139, 87, 0.4);
}

.pelicula h2 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #2e8b57;
}

.pelicula p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

iframe {
  width: 100%;
  height: 210px;
  border-radius: 10px;
  border: 2px solid #2e8b57;
}

/* Botones inferiores */
.buttons {
  text-align: center;
  margin: 40px 0 60px 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  border-top: 2px solid #2e8b57;
}

.boton-caja {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #2e8b57;
}

.boton-caja:hover {
  background: rgba(212, 175, 55, 0.2);
}
