/* Carousel wrapper */
#carousel-wrapper {
  position: relative;
  width: 512px;
  height: 384px;
  overflow: hidden;
  background: #000;
  border: 5px solid #aa0000;
  border-radius: 10px;
  z-index: 1;
}

/* Window */
#carousel-window {
  width: 512px;
  height: 384px;
  overflow: hidden;
}

/* Track that slides left/right */
#carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Each slide */
#carousel-track img {
  width: 512px;
  height: 384px;
  object-fit: cover;
  image-rendering: auto;
}

/* ----------------------------- */
/* CUSTOM ARROW BUTTONS (64x15)  */
/* ----------------------------- */

/* Arrow buttons using your PNGs */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Left arrow */
.nav.prev {
  left: 0px; /* move inside/outside as you prefer */
}

/* Right arrow */
.nav.next {
  right: 0px;
}

/* Arrow images */
.nav img {
  width: 30px;
  height: 128px;
  display: block;
  image-rendering: auto; /* DS/Wii crispness */
}
