body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f19fca;
  color: #492e3e;
  text-align: center;
}

/* Hero con imagen + fade out */
.hero {
  position: relative;
}
.hero-bg {
  width: 100%;
  display: block;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.hero-overlay .fecha { font-size: 1.5em; color: #f19fca; }
.hero-overlay .logo-evento { width: 200px; margin: 10px 0; }
.hero-overlay .juego { color: #fff; }
.hero-overlay .plataforma { color: #492e3e; font-weight: bold; }

/* Carrusel */
.carrusel {
  margin: 30px auto;
}
.carrusel-thumbs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  justify-content: center;
}
.carrusel-thumbs img {
  width: 80px;
  cursor: pointer;
  transition: transform 0.2s;
}
.carrusel-thumbs img:hover {
  transform: scale(1.1);
}
.carrusel-perfil img {
  margin-top: 20px;
  width: 300px;
  display: none;
}

/* Pronósticos */
.pronosticos {
  background: transparent;
  padding: 30px 0;
}
.combate {
  margin: 20px auto;
}
.votacion button {
  margin: 5px;
  padding: 10px 20px;
  background: #492e3e;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.barra {
  background: #eee;
  height: 20px;
  width: 80%;
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
}
.progreso {
  background: #f19fca;
  height: 100%;
  width: 0;
}

/* Entradas */
.entradas button {
  background: #f19fca;
  color: #492e3e;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2em;
}

/* Artistas */
.artistas img {
  max-width: 80%;
}

/* Embeds */
.embeds .videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.embeds iframe {
  width: 100%;
  height: 200px;
}

/* Footer con fade out */
.footer {
  position: relative;
  background: transparent;
  padding: 20px;
}
.footer-img {
  width: 100%;
  display: block;
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}