body {
  transition: background-color 1s ease;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
  color: white;
  min-height: 100vh;
}

.jumbotron {
  background: transparent;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  padding: 6rem 2rem;
  margin-bottom: 0;
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem !important;
  margin-bottom: 20px;
}

.poem-text {
  line-height: 1.8;
  color: #fff;
  background-color: rgba(50, 30, 0, 0.4); /* warm Tint */
  font-size: 1.35rem;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 200, 0, 0.2);
  display: inline-block;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  max-width: 850px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stanza {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.stanza.reveal {
  opacity: 1;
  transform: translateY(0);
}

#effects-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.content-wrap {
  position: relative;
  z-index: 1;
}

.album-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 200, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  max-width: 280px;
  margin: 0 auto;
}

.album-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: #FFD700;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.2);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.album-info {
  padding: 15px;
}

.album-title {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.album-artist {
  color: #ccc;
  font-size: 0.8rem;
  font-weight: bold;
}

#language-select {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 30px;
  padding: 5px 15px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.btn-spotify {
  background-color: #1DB954;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-spotify:hover {
  background-color: #1ed760;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.language {
  display: none;
}

.custom-select-lg {
  font-size: 1.1rem;
  height: auto;
}