/* Download CTA Section */

#download {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 50%, #3D2B0A 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

/* Decorative Glows */
#download::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

#download::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 128, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -100px;
  z-index: 0;
}

.cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.cta-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-amber);
}

.cta-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.play-badge-cta {
  width: 60px;
  height: 60px;
  display: block;
}

.btn-cta-login {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: var(--color-amber);
  border-radius: 10px;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.btn-cta-login:hover {
  background-color: var(--color-amber-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  #download {
    padding: 60px 24px;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
  }

  .cta-headline {
    font-size: 1.8rem;
  }

  .play-badge-cta {
    width: 48px;
    height: 48px;
  }

  .btn-cta-login {
    width: 100%;
    max-width: 280px;
  }
}
