body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #2c3e50;
  font-family: 'Press Start 2P', cursive;
  overflow: hidden;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  font-size: clamp(16px, 4vw, 28px); /* mengecil di HP, membesar di desktop */
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-align: center;
}

.carousel {
  position: relative;
  width: 90vw;      /* pakai viewport width agar fleksibel */
  max-width: 600px; /* batas maksimum untuk desktop */
  height: 40vh;     /* tinggi menyesuaikan layar */
  max-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card {
  position: absolute;
  width: 25vw;      /* relatif terhadap layar */
  max-width: 120px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.left {
  transform: translateX(-200px) scale(0.8);
  opacity: 0.6;
  z-index: 1;
}

.center {
  transform: translateX(0) scale(1.2);
  opacity: 1;
  z-index: 2;
}

.right {
  transform: translateX(200px) scale(0.8);
  opacity: 0.6;
  z-index: 1;
}
