
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #0e0e0e;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
}



.carousel-container {
  width: 100vw;
  overflow-x: scroll;
  display: flex;
  scroll-snap-type: x mandatory;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}





.carousel {
  display: flex;
  gap: 1rem;
  scroll-snap-align: start;
}




.carousel-item {
  position: relative;
  display: inline-block;
  scroll-snap-align: start;
  flex-shrink: 0;
}



.carousel img {
  width: 240px;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  scroll-snap-align: start;
  border-radius: 1rem;
  border: 4px solid white;
  opacity: 0.5;
  transition: 0.3s;
}


.carousel img.selected {
  opacity: 1;
  border-color: #facc15;
}

.locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  pointer-events: none;
}

.button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

button {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  background: #facc15;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}
