html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  background-image: url("../images/fashionBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
p{
  color:white;
  margin:250px;
}
/* NEW: stage that gets scaled */
.stage {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: 1080px;

  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;

  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  pointer-events: none;
}

.note {
  width: 1600px;
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 2;
  pointer-events: none;
}

/* REMOVE vw scaling → use fixed sizes */
.decor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2000px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.45));
}

.decor1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2000px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0px 35px 70px rgba(0, 0, 0, 0.6));
}
.noteText {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;

  width: 900px;
  text-align: center;
  font-family: cursive;
  color: #2a2a2a;
  pointer-events: auto; /* allow button clicks */
}

.noteText p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Play button styling */
.playButton {
  font-size: 26px;
  padding: 10px 40px;
  border: none;
  background-color:  #ff1f5c;
  color: white;
  cursor: pointer;

  transition: all 0.2s ease;
}

.playButton:hover {
  background: #e01640;
  transform: scale(1.05);
}