body {
  font-family: Arial, sans-serif;
}

#info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  min-height: 420px;
}

body {
  background: #fff;
  font-family: Arial, sans-serif;
}

.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Kartu utama */
.card {
  background: #d26b57;
  border-radius: 30px;
  width: 320px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  padding-bottom: 20px;
}

/* Gambar di dalam kartu */
.card-image {
  width: 85%;
  height: 150px;
  margin-top: 20px;
  border-radius: 20px 20px 40px 40px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Konten kartu */
.card-content {
  width: 90%;
  margin-top: 20px;
  color: #fff;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 15px;
  margin-top: 8px;
}

/* Garis pemisah */
hr {
  border: none;
  border-top: 2px solid #fff;
  margin: 0;
}

/* Tombol navigasi kiri-kanan */
.nav-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #444;
  cursor: pointer;
  margin: 0 10px;
  transition: color 0.2s;
}

.nav-btn:hover {
  color: #d26b57;
}
.nav-btn:active {
  transform: scale(0.9);
}

/* Indikator posisi kartu */
.card-indicator {
  text-align: center;
  color: #d26b57;
  font-weight: bold;
  margin-top: 8px;
}

.card-viewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px auto 10px auto;
  width: 100vw;
  max-width: 100vw;
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 10;
}
