/* 🌈🎸 SCENE-EMO CRUNKCORE STYLE 🎸🌈 */

body {
  background: linear-gradient(135deg, #000000, #220033, #ff00ff, #00ffff, #ff0000);
  background-size: 400% 400%;
  animation: bgShift 10s ease infinite;
  color: #f5f5f5;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 20px;
  text-align: center;
}

/* Fondo que cambia de color como glow rave */
@keyframes bgShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

h1 {
  font-size: 3.5em;
  text-transform: uppercase;
  background: linear-gradient(to right, #ff00ff, #00ffff, #ffff00, #ff0000, #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowText 3s linear infinite;
  border-bottom: 6px double #fff;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-shadow: 0px 0px 10px #000;
}

/* Texto arcoíris animado */
@keyframes rainbowText {
  to { background-position: 200% center; }
}

article {
  background: rgba(0, 0, 0, 0.8);
  border: 4px dotted #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 25px auto;
  max-width: 650px;
  box-shadow: 0px 0px 20px #ff00ff, 0px 0px 30px #00ffff inset, 0px 0px 10px #ffff00;
  text-align: left;
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

article:hover {
  transform: rotate(-1deg) scale(1.05);
  box-shadow: 0px 0px 25px #00ff00, 0px 0px 35px #ff00ff inset, 0px 0px 15px #ff0000;
}

h2 {
  font-size: 1.8em;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 5px #000;
  margin-bottom: 10px;
  animation: flicker 2s infinite;
}

/* Parpadeo glitch emo */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.3;
  }
}

p {
  font-size: 1.1em;
  line-height: 1.7em;
  color: #e0e0e0;
  text-shadow: 0px 0px 5px #ff00ff, 0px 0px 5px #00ffff;
}

a {
  color: #ffff00;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid #ffff00;
  padding: 8px 14px;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  text-shadow: 2px 2px 4px #000;
  background: rgba(255, 255, 0, 0.1);
}

a:hover {
  background: #ffff00;
  color: #000;
  box-shadow: 0px 0px 15px #ff00ff, 0px 0px 15px #00ffff;
  transform: scale(1.1) rotate(2deg);
}


.blog-boton {
  display: inline-block;
  margin: 50px auto;
  padding: 20px 40px;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
  border: 4px solid #fff;
  border-radius: 25px;
  text-shadow: 2px 2px 5px #000;
  box-shadow: 0px 0px 20px #ff00ff, 0px 0px 30px #00ffff inset;
  transition: all 0.3s ease-in-out;
}

/* Efecto hover */
.blog-boton:hover {
  transform: scale(1.1) rotate(-2deg);
  background: linear-gradient(45deg, #ffff00, #ff0000, #00ff00);
  box-shadow: 0px 0px 25px #ff00ff, 0px 0px 25px #00ffff;
}
