/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 20 2026 | 13:45:57 */
/* ================= WRAPPER CENTER ================= */
.cd-container {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

/* ================= SLIDER ================= */
.cd-wrapper {
  overflow: hidden;
  position: relative;
}

.cd-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.cd-item {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* ================= CASE ================= */
.cd-case {
  width: 220px;
  height: 220px;
  position: relative;
  border-radius: 14px;
  background: rgba(150,118,193,.08);
  border: 1px solid rgba(150,118,193,.3);
  backdrop-filter: blur(6px);
  cursor: pointer;
  overflow: visible;
}

/* CD */
.cd-disc {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 30px;
  left: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  transition: .5s;
}

/* hover keluar */
.cd-case:hover .cd-disc {
  transform: translateX(20px) rotate(20deg);
}

/* ================= PREVIEW ================= */
.cd-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.cd-case:hover .cd-preview {
  opacity: 1;
}

/* ================= INFO ================= */
.cd-info {
  text-align: left;
  max-width: 300px;
}

.cd-info h3 {
  margin: 0 0 10px;
}

.cd-info a {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  background: #9676c1;
  color: #fff;
  text-decoration: none;
}

/* ================= NAV ================= */
.cd-nav {
  margin-top: 15px;
}

.cd-nav button {
  padding: 6px 14px;
  margin: 0 5px;
  border: none;
  background: #9676c1;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
/* ===== ARROW BUTTON ===== */
.cd-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  position: relative;
  background: rgba(150,118,193,.15);
  backdrop-filter: blur(6px);

  box-shadow: 0 4px 14px rgba(150,118,193,.25);
  transition: .25s ease;
}

/* hover glow */
.cd-arrow:hover {
  transform: scale(1.1);
  background: #9676c1;
}

/* panah */
.cd-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;

  border: solid currentColor;
  border-width: 0 2px 2px 0;

  transform-origin: center;
}

/* arah kiri */
.cd-arrow.left::before {
  transform: translate(-40%, -50%) rotate(135deg);
}

/* arah kanan */
.cd-arrow.right::before {
  transform: translate(-60%, -50%) rotate(-45deg);
}

/* warna */
.cd-arrow {
  color: #9676c1;
}

.cd-arrow:hover {
  color: #fff;
}

/* ================= MODAL ================= */
.cd-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.cd-modal.active {
  display: flex;
}

.cd-modal-content {
  width: 90%;
  max-width: 900px;
  background: #000;
  padding: 10px;
  border-radius: 12px;
}

.cd-modal iframe {
  width: 100%;
  height: 450px;
}

.cd-close {
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}