body {
  transition: background-color 1s ease;
  background-color: #0a1a0f; /* Deep Balkan Forest Green */
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), 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(0, 26, 51, 0.5); /* Cobalt Tint */
  font-size: 1.35rem;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: inline-block;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(12px);
  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.7);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
  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.3);
}

.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.6);
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  padding: 5px 15px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(5px);
  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 VISIBILITY:
 * Spanish is visible by default (CSS-only).
 * JS hides it and shows the selected language when the user changes.
 * This way, if JS fails, Spanish content is still visible.
 */
.language {
  display: none;
}

.language.spanish {
  display: inline;
}

/* Block-level language elements (divs inside jumbotron, poem sections, etc.) */
div.language.spanish {
  display: block;
}