body {
  transition: background-color 1s ease;
  background: linear-gradient(180deg, #001e3c 0%, #000000 100%);
  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;
}

.jumbotron h1 {
  font-family: 'Montserrat', sans-serif;
  color: #00d4ff;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.poem-text {
  line-height: 1.8;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 1.3rem;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: inline-block;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  max-width: 900px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
}

.stanza {
  margin-bottom: 40px;
  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;
}

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

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

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 850px;
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

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

.language {
  display: none;
}

.arabic {
  direction: rtl;
  text-align: right;
}

.arabic .poem-text {
  text-align: right;
}