body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 3em;
  color: #fff;
  text-shadow: 2px 2px #000;
  transition: transform 0.5s ease-in-out;
}

h2:hover {
  transform: rotate(5deg) scale(1.1);
}

.media-section {
  margin: 40px 0;
}

audio, video {
  margin: 20px;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

audio:hover, video:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.crazy-box {
  width: 150px;
  height: 150px;
  margin: 40px auto;
  background: #fff;
  border-radius: 50%;
  transition: background 1s ease, transform 1s ease;
}

.crazy-box:hover {
  background: #ff6f61;
  transform: rotate(360deg) scale(1.2);
}