* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0b1c2d, #020b14);
  color: #9fd4ff;
}

/* ================= BANNER ================= */
.banner img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

/* ================= APP GRID ================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* ================= APP CARD ================= */
.app-card {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0,140,255,0.3);
  transition: 0.3s;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(0,140,255,0.6);
}

.app-card img {
  width: 110px;
  margin-bottom: 15px;
}

.app-card h2 {
  color: #fff;
}

.app-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* ================= BUTTONS ================= */
.btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(135deg, #008cff, #4fc3ff);
  color: #000;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid #4fc3ff;
  color: #4fc3ff;
}

/* ================= VIEW PACKAGE (RED) ================= */
.package-btn {
  background: linear-gradient(135deg, #ff3b3b, #ff7676);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,60,60,0.7);
}

/* ================= PAYMENT ================= */
.payment {
  text-align: center;
  padding: 70px 20px;
}

.payment h2 {
  margin-bottom: 20px;
  color: #fff;
}

/* FULL WIDTH PAYMENT BUTTONS */
.payment a.btn,
.payment button.btn {
  width: 100%;
  max-width: 1100px;
  height: 60px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 30px rgba(0,140,255,0.8);
}

/* ================= HELP ================= */
.help {
  text-align: center;
  padding: 60px 20px;
}

.help h2 {
  margin-bottom: 20px;
  color: #fff;
}

.help-btn {
  display: block;
  max-width: 340px;
  margin: 15px auto;
  padding: 16px;
  border-radius: 30px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,140,255,0.4);
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #0088cc;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 25px;
  font-size: 13px;
  color: #7bbcff;
  border-top: 1px solid rgba(0,140,255,0.3);
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.modal-box {
  background: #081a2c;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
  text-align: center;
}

.modal-box h2 {
  color: #fff;
}

.modal-box ul {
  list-style: none;
  margin: 20px 0;
}

.modal-box li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ================= QR PROTECTION ================= */
.no-save {
  pointer-events: none;
  user-select: none;
}

.qr-img {
  width: 220px;
  margin: 15px 0;
}
