body {
  margin: 0;
  padding: 0;
  background: url('../images/backgr.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column; /* penting supaya download bisa turun ke bawah */
  justify-content: flex-start;
  font-family: Arial, sans-serif;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}

.btn {
  padding: 12px 20px;
  display: block;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ffcc00;
  color: black;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
  width: 60%;
  max-width: 300px; /* biar tombolnya tidak terlalu lebar */
  text-decoration: none;
}

.btn:hover {
  background-color: #f0f0f0;
}

/* Logo download M2U di bawah */
.download {
  margin-top: auto; /* otomatis ke bawah */
  text-align: center;
  padding-bottom: 20px;
}

.download img {
  width: 80px; /* atur ukuran sesuai kebutuhan */
  height: auto;
  display: block;
  margin: 0 auto;
}

.akses-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin: 10px 0 20px;
}

.store-logos {
  display: flex;
  justify-content: center;
  gap: 15px; /* jarak antar logo */
}

.store {
  width:120px !important; /* ukuran logo store */
  height: auto !important;
}

.footer-text {
  text-align: center;
  font-size: 13px;
  color: white;
  line-height: 1.4;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  width: 98%;
}