html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

.global-footer {
  padding: 20px 12px;
  text-align: center;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.install-btn {
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #ff6b00, #ff914d);
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 10px;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.35);
}

.install-btn--hero {
  margin-bottom: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

.made-by {
  font-size: 13px;
  color: #aaa;
  margin-top: 6px;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.heart {
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

.tiny-confetti {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #ff6b00;
  border-radius: 2px;
  animation: confettiBurst 0.8s ease forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes confettiBurst {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx, 0px), var(--ty, 0px)) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .global-footer {
    padding: 18px 10px;
  }

  .made-by {
    font-size: 12px;
  }
}
