body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #034cb4;
  color: white;
  text-align: center;
  padding: 3em;
  background-image: url('estadio_vacio.jpg'); /* estadio difuminado */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* opcional: para efecto parallax */
  background-color: #034cb4; /* color de respaldo */
  background-blend-mode: multiply;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 15px;
  display: inline-block;
  animation: fadeIn 1.5s ease-in-out;
}

.pirata {
  width: 200px;
  margin: 1em auto;
  display: block;
}

.comic {
  font-style: italic;
  font-size: 1.3em;
  margin: 1em 0;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

a {
  color: yellow;
  font-weight: bold;
  text-decoration: none;
}
