body {
display: flex;
justify-content: center;
background: #f1f1f1;
min-height: 106px;
}

.phone-frame {
    width: 100vw; /* ukuran iPhone 12 Pro */
    max-width: 100%;
    background: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  /*object-fit: cover; /* kunci fullscreen tanpa gepeng */
  display: block;
}

.continue-wrapper {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.btn-continue {
  padding: 14px 44px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18%;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  cursor: pointer;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.25);

  transition:
    background 0.4s ease,
    color 0.4s ease,
    border 0.4s ease,
    transform 0.3s ease,
    box-shadow 0.4s ease;
}

/* Hover */
.btn-continue:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;

  transform: translateY(-3px);

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Active */
.btn-continue:active {
  transform: scale(0.96);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.3);
}


/* --- FORCE SIMPLyCOUNTDOWN HORIZONTAL --- */

.simply-countdown {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important; /* jangan sampai turun ke bawah */
    gap: 14px;
    width: 100%;
}

.simply-countdown > .simply-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 4px;
    min-width: fit-content !important;
}

.simply-countdown .simply-amount {
    font-size: 22px;
    font-weight: 700;
}

.simply-countdown .simply-word {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 8;
}

/* --- FORM AESTHETIC --- */
.form-aesthetic input,
.form-aesthetic textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    outline: none;
    transition: all .25s ease;
}

.form-aesthetic input:focus,
.form-aesthetic textarea:focus {
    border-color: #bfa27a; /* nude gold */
    box-shadow: 0 0 10px rgba(191, 162, 122, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

/* placeholder warna elegan */
.form-aesthetic input::placeholder,
.form-aesthetic textarea::placeholder {
    color: #888;
    font-weight: 300;
}

/* --- BUTTON AESTHETIC --- */
.btn-aesthetic {
    width: 100%;
    background: linear-gradient(135deg, #bfa27a, #d8c3a5);
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: all .25s ease;
}

.btn-aesthetic:active {
    transform: scale(.97);
}

.btn-aesthetic:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.listUcapan h6 {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
}

.listUcapan p {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
}

#listUcapan {
  max-height: calc(140px * 3); /* 3 card saja */
  overflow-y: auto;
}

/* Aesthetic Scrollbar untuk listUcapan */
#listUcapan {
    scrollbar-width: thin;               /* Firefox */
    scrollbar-color: rgba(180, 150, 120, 0.55) transparent;
}

/* Chrome, Edge, Safari */
#listUcapan::-webkit-scrollbar {
    width: 6px;                          /* Lebar scrollbar */
}

/* Track (background) */
#listUcapan::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 10px;
    margin: 8px 0; /* hilangkan bagian arrow */
}

/* Thumb (scroll bar yang digeser) */
#listUcapan::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(200,170,130,0.9),
        rgba(160,130,100,0.9)
    );
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Hover effect */
#listUcapan::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(210,180,140,1),
        rgba(170,140,110,1)
    );
}

/* Hapus arrow lama (IE / Edge lama) */
#listUcapan::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 480px;
    background: #0a0a0a;
    border-radius: 15px 15px 0 0;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  /* Link item */
  .bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  /* Ikon */
  .bottom-nav .nav-item i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
  }

  /* Aktif */
  .bottom-nav .nav-item.active {
    color: #fff;
  }

  .bottom-nav .nav-item.active i {
    transform: scale(1.1);
  }

  /* Hover efek (desktop) */
  @media (hover: hover) {
    .bottom-nav .nav-item:hover {
      color: #fff;
    }
  }

.cd-disc {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 9999;
  cursor: pointer; /* jadi tombol */
}


/* animasi muter saat audio playing */
.cd-rotate {
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.penutup {
    font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}