* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Comic Sans MS;
  overflow-x: hidden;
}
.scene {
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url('images/wallpaper.gif'); 
}
.behind-title {
  position: absolute;
  top: 320px;
  left: 0;
  width: 100%;
  height: 550px;
  background-color: #000000;
  z-index: 2;
}
.main-container {
  position: relative;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 40px;
  overflow: hidden;
  z-index: 3; 
}
.corner-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none; 
}
.left-corner, .right-corner {
  position: absolute;
  top: -20px;
  width: 375px;
  height: auto;
}
.left-corner {
  left: -15px;
}
.right-corner {
  right: -15px;
  transform: scaleX(-1);
}
.purple-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  /* display: none; */
}
.video-selector {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(123, 0, 155, 0.5);
  padding: 10px 20px;
  border-radius: 15px;
  border: 2px solid #D3AF37;
}
.selector-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.video-options {
  background: #000000;
  color: #D3AF37;
  border: 1px solid #D3AF37;
  padding: 5px 10px;
  font-family: Comic Sans MS;
}
.nav-btn {
  background: #000000;
  color: #d3af37;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-btn:hover {
  background: #ffd700;
  color: #000000;
  transform: scale(1.1);
}
.video-container {
  position: relative;
  top: 230px;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 270px;
}
.video-container iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
}
.main-title > h1,
.main-title > p {
  position: relative;
  z-index: 3;
  font-weight: bold;
}
.main-title > h1 {
  font-size: 50px;
  text-shadow: 
    -2px -2px 0 #ffffff,
    2px -2px 0 #ffffff,
    -2px 2px 0 #ffffff,
    2px 2px 0 #ffffff;
  color: #D3AF37;
}
.main-title > p {
  color: #d3af37;
  padding: 5px;
}
.main-line {
  position: relative;
}
.hanging-stars {
  position: absolute;
  top: -65px;
  left: 60px;
  width: 100%;
  height: 160px;
  object-fit: cover; 
  z-index: 3;
  filter: brightness(5);
  pointer-events: none;
}
.top-line {
  background: linear-gradient(0deg, #520068, #000000);
  height: 45px;
}
.middle-line {
  background-color: #d3af37;
  height: 90px;
  box-shadow: inset 0 -20px 15px 5px rgb(0, 0, 0);
}
.middle-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.bottom-line {
  background-color: #000000;
  height: 90px;
}
.underline {
  height: 500px;
  background-image: url('images/dream.gif');
}
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav-bar ul {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
  gap: 30px;
}
.nav-bar li {
  display: flex;
}
.nav-bar a {
  color: #D3AF37;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border: 2px solid #D3AF37;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.nav-bar a:hover {
  background: #D3AF37;
  color: #000000;
  transform: scale(1.05);
}
/* .example-image {
  width: 100%;      
  max-width: 600px;
  height: auto;
  display: block;
  margin-top: 12px;  
  margin-bottom: 0;
} */
.end-line {
  background-color: #d3af37;
  height: 90px;
  position: relative;
}
.end-line img {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  display: block;
  position: absolute;
  top: -65%;
}