body {
  font-family: sans-serif;
  margin: 0;
  background: #111;
  color: #f0f0f0;
  text-align: center;
}

.psychedelic-banner {
  background: radial-gradient(circle at center, #ff00cc, #3333ff, #00ffff, #33ff00, #ffff00, #ff6600);
  background-size: 600% 600%;
  animation: trippyBackground 12s ease infinite;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 4px solid #000;
}

.psychedelic-banner h1 {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Comic Sans MS', 'Chalkboard SE', fantasy, sans-serif;
  color: transparent;
  background: linear-gradient(90deg, #ffcc00, #ff00ff, #00ffff, #ffcc00);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: psychedelicText 5s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@keyframes trippyBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes psychedelicText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.carousel {
  margin: 2rem auto;
  max-width: 800px;
  max-height: 600px;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: auto;
  border: 4px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: opacity 1s ease-in-out;
}

.description {
  margin: 2rem auto;
  font-size: 1.2rem;
}

.description a {
  color: #00bcd4;
  text-decoration: none;
}

.description a:hover {
  text-decoration: underline;
}
