body {
  margin: 0;
  background-color: #0a0a0a;
  font-family: Arial, sans-serif;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
  overflow: hidden;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-right: 1px solid #000;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(20, 20, 20, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}

button.prev:hover, button.next:hover {
  background-color: rgba(80, 80, 80, 0.8);
}

button.prev { left: 10px; }
button.next { right: 10px; }
