/* Base layout */
html, body { height: 100%; margin: 0; }
body {
  background: #ffde59 url('../images/tiktok_ad.jpg') no-repeat center center;
  background-size: cover;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
/* Social bar (top) */
.social-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  padding-top: calc(10px + env(safe-area-inset-top));
  backdrop-filter: none;
  background: transparent;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.12s ease;
}

.social-btn:hover { transform: translateY(-1px); }
.social-btn:active { transform: translateY(0); }

.social-btn.ig,
.social-btn.tt,
.social-btn.yt,
.social-btn.fb { background: transparent; }

.social-btn img { display: block; width: 28px; height: 28px; object-fit: contain; }

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.contact-link:hover { text-decoration: none; }

/* Make the mail icon consistent with other social icons */
.contact-link img { width: 28px; height: 28px; display: block; object-fit: contain; }


/* Prefer contain on wide screens to avoid over-zoom */
@media (min-aspect-ratio: 1/1) {
  body { background-size: contain; }
}

/* CTA bar */
.cta-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  backdrop-filter: none;
  background: transparent;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.download-btn span { white-space: nowrap; }

.download-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.download-btn:active { transform: translateY(0); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* Platform colors */
.download-btn.ios { background: #000; border: 1px solid rgba(255,255,255,0.08); }
.download-btn.android { background: #000; border: 1px solid rgba(255,255,255,0.08); }

/* Optional icons using emoji fallback to avoid extra assets */
.download-btn img { width: 18px; height: 18px; display: block; object-fit: contain; }

/* Responsive tweaks */
@media (max-width: 420px) {
  .cta-container { gap: 8px; padding: 12px; }
  .download-btn { padding: 12px 14px; font-size: 15px; }
}

@media (min-width: 900px) {
  .cta-container { justify-content: center; }
}


