:root {
  --primary-color: #FF8C42;
  /* Sunset Orange */
  --secondary-color: #6B8E23;
  /* Peace Green */
  --accent-color: #FFD700;
  /* Gold */
  --bg-dark: #0a0a0a;
  --text-light: #f5f5f5;
  --glass-bg: rgba(0, 0, 0, 0.6);
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  transition: background 1.5s ease;
}

#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;
}

.jumbotron {
  background: transparent;
  padding: 120px 0 80px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 140, 66, 0.3);
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 3.5rem;
}

.poem-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Philosopher', serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #eee;
}

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

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

.language {
  display: none;
}

.buttonAudio {
  background: var(--glass-bg);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.buttonAudio:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px var(--primary-color);
}

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

.btn-spotify:hover {
  transform: scale(1.05);
  color: #fff;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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