@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
}

.video-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Menempatkan video di bawah konten */
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Menempatkan video di bawah konten */
  background-color: #1e222bba;
}
.content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px 0px 0px 0px;
  height: 100%; /* Tambahkan baris ini */
}
.logo-up {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-up .card {
  height: 70px;
  width: 795px;
}
.logo-up .card .text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.logo-up .card .d-flex {
  justify-content: center;
}
.logo-up img {
  margin-top: -10px;
}

.card .card-body .title-apk {
  color: #000;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  min-height: 64px;
}
[data-bs-theme="dark"] {
  .card .card-body .title-apk {
    color: #fff;
  }
  .card .card-body .desc {
    color: #fff;
  }
  .logo-up .card .text {
    color: #fff;
  }
}

a {
  text-decoration: none !important;
}
.card .card-body .desc {
  color: #000;
  text-decoration: none !important;
  font-size: 12px;
  min-height: 54px;
  overflow: hidden; /* Menghilangkan teks yang melampaui batas */
  text-overflow: ellipsis; /* Menampilkan titik-titik jika teks terpotong */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Menampilkan hanya 3 baris */
  -webkit-box-orient: vertical;
}
.card .image {
  margin-top: -55px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card.image:hover {
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
  transform: scale(1.1); /* Atur perubahan skala sesuai kebutuhan Anda */
}

.image {
  margin: 0 auto;
}

.logo {
  height: 8rem;
  max-height: 8rem;
  align-items: center;
  display: flex;
}
.button-link {
  width: 100%;
}

.main-card {
  margin-bottom: 100px;
}

.footer {
  /* background-color: #1e222b; */
  margin-top: 10px;
}
.footer .quotes {
  font-size: 16px;
  padding: 10px 0px;
  font-style: italic;
  font-weight: bold;
}
.footer .copyright {
  font-size: 11px;
  padding: 10px 0px;
}
.footer hr {
  margin: 0px;
  border-top: 2px solid #fff;
  opacity: 100%;
}
.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {
  color: #f1c40f;
}

.fa-sun {
  color: #f39c12;
}

.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}

@media (max-width: 768px) {
  .logo-up .card .text {
    font-size: 12px;
    font-weight: 600;
  }
  .logo-up img {
    max-width: 100%;
    height: auto;
  }
  .card .card-body .title-apk {
    font-size: 12px;
    font-weight: 600;
    min-height: 50px;
  }
  .card .card-body .desc {
    font-size: 10px;
    min-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .btn {
    font-size: 12px !important;
  }
  .logo {
    height: 5rem;
    max-height: 5rem;
    align-items: center;
    display: flex;
  }
  .footer .quetes {
    font-size: 10px;
    padding: 10px 10px;
  }
  .footer .copyrigt {
    font-size: 10px;
    padding: 10px 10px;
  }
  .footer hr {
    margin: 0px;
    border-top: 1px solid #fff;
    opacity: 100%;
  }
  .video-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 317vh;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 317vh;
    background-color: #1e222b;
    opacity: 0.8;
  }
  .change-mode label {
    font-size: 12px;
  }
}