* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- VIDEO ---------- */

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  background: #000;
  overflow: hidden;
}

iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.thumbnail {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 🔒 CLICK BLOCKER */
/* 🔒 PARTIAL CLICK BLOCKERS (TEST MODE VISIBLE) */

.blocker {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 4;
}

/* Top 30% blocked */
.top-block {
  top: 0;
  
  height: 15%;
  background: rgba(255, 0, 0, 0); /* 🔴 red overlay (testing) */
}

/* Bottom 30% blocked */
.bottom-block {
  bottom: 0;
  height: 15%;
  background: rgba(0, 0, 255, 0); /* 🔵 blue overlay (testing) */
}


/* ---------- DETAILS ---------- */

.details {
  padding: 20px;
}

.details h1 {
  margin: 0;
  font-size: 24px;
}

.subtitle {
  opacity: 0.7;
  margin-top: 6px;
}

.desc {
  margin-top: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

.features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.features div {
  background: #2c2c2c;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
}
/* App open button with logo */
.app-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  gap: 10px;
}

/* Logo inside button */
.app-open-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* 🔊 Mute / Unmute Button */
.mute-btn {
  position: absolute;
  right: 14px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 6; /* ABOVE BLOCKERS */

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 20px;
}

.mute-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none; /* button handles click */
}




.cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;   /* ✅ CENTER EVERYTHING */
}
.playstore {
  display: flex;
  justify-content: center;
}



.primary {
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  background: #684c06;
  color: #fff;
}

.playstore img {
  width: 200px;
}

.source {
  margin-top: 24px;
  text-align: center;
  opacity: 0.7;
}

.source button {
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  margin-top: 6px;
}

.source p {
  font-size: 13px;
}
