body {
  margin: 0;
  font-family: Verdana, sans-serif;

 background-image: 
  linear-gradient(
    rgba(233, 213, 255, 0.2),
    rgba(216, 180, 248, 0.2)
  ),
  url("fondito.png");


  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #2d1b4e;
  text-align: center;
  cursor: url("https://cur.cursors-4u.net/cursors/cur-9/cur817.cur"), auto;
}

/* Título */
.top-title {
  width: 80%;
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 25px;
  background: rgba(243, 232, 255, 0.9);
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(160, 90, 255, 0.5);
}

.top-title h1 {
  margin: 0;
  font-size: 38px;
  color: #7c3aed;
  text-shadow: 0 0 15px #d8b4fe;
}

/* Layout */
.layout {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 25px;
}

/* Lado izquierdo */
.side-box {
  background: rgba(243, 232, 255, 0.9);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(160, 90, 255, 0.4);
}

.side-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Caja principal */
.container {
  background: rgba(243, 232, 255, 0.9);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 45px rgba(160, 90, 255, 0.5);
}

.container img {
  width: 80%;
  max-width: 320px;
  margin: 25px auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(160, 90, 255, 0.6);
}

/* Sección inferior compacta */
.bottom-wrapper {
  width: 85%;
  max-width: 1100px;
  margin: 40px auto 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(243, 232, 255, 0.9);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(160, 90, 255, 0.4);
}

.bottom-section img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  align-items: start;
}

.text-box {
  text-align: left;
}

/* Music box */
.music-box {
  background: rgba(243, 232, 255, 0.9);
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(160, 90, 255, 0.4);
}

.music-box img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .bottom-wrapper {
    grid-template-columns: 1fr;
    width: 80%;
  }

  .bottom-section {
    grid-template-columns: 1fr;
  }
}
.side-box:hover,
.container:hover,
.bottom-section:hover,
.music-box:hover {
  animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 20px #d8b4fe,
                0 0 35px rgba(160, 90, 255, 0.5);
  }
  to {
    box-shadow: 0 0 35px #c084fc,
                0 0 60px rgba(160, 90, 255, 0.8);
  }
}


.side-box,
.container,
.bottom-section,
.music-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 2px solid transparent;
  will-change: transform;
}


.side-box:hover,
.container:hover,
.bottom-section:hover,
.music-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px #c084fc,
              0 0 50px rgba(160, 90, 255, 0.7);
  border: 2px solid #c084fc;
}
