.download-apk-container {
  width: 100%;
  padding: 20px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
}
.download-apk-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.download-apk-container .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
.download-apk-container .row {
  display: flex;
  flex-wrap: wrap;
}
.download-apk-container .col-md-12 {
  width: 100%;
}
.download-apk {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 0;
  background: transparent;
}
.download-apk > div {
  flex: 1;
  min-width: 250px;
  text-align: center;
}
.download-apk img.img-responsive {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.download-apk .h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
.download-apk .h2 strong {
  color: #0011ff;
  display: block;
  font-size: 22px;
}
.download-apk .h3 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.download-apk-info {
  display: flex;
  justify-content: center;
}
.download-apk-section {
  text-align: center;
}
.download-apk-qr-code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-block;
}
.download-apk-qr-code img {
  border-radius: 0;
}
.download-apk-detail {
  margin-top: 8px;
}
.download-apk-detail div {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}
.download-apk-detail .btn {
  display: inline-block;
  background: linear-gradient(90deg, #0011ff, #003ae6);
  color: #000;
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: 0.3s;
}
.download-apk-detail .btn:hover {
  background: linear-gradient(90deg, #003ae6, #cca300);
}
.download-apk-section span {
  color: #fff;
  font-size: 11px;
  display: block;
  margin-top: 8px;
}
.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}
.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}
.modal.download-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
}
.modal.download-popup-modal.show {
  display: flex;
}
.modal-dialog {
  width: 90%;
  max-width: 380px;
}
.modal-content {
  background: #0a0a0a;
  border-radius: 16px;
  border: 1px solid #333;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #333;
}
.modal-header .close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.modal-header .close:hover {
  color: #f55;
}
.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #0011ff;
}
.modal-body {
  padding: 15px;
  color: #ccc;
  font-size: 13px;
}
.modal-body ol {
  padding-left: 18px;
  margin: 10px 0;
}
.modal-body li {
  margin: 5px 0;
}
.download-32-bit-cntr {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #333;
  font-size: 12px;
}
.download-32-bit-cntr a {
  color: #0011ff;
  text-decoration: none;
}
