/* App download promo modal */

.app-promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.app-promo-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.app-promo-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 36px 28px 28px;
  text-align: center;
  color: #fff;
  background: rgba(28, 28, 28, 0.88);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.app-promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #ccc;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.app-promo-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.app-promo-logo {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.app-promo-logo .accent {
  color: #e50914;
}

.app-promo-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.app-promo-copy {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.app-promo-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #0078d4;
  color: #fff !important;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.app-promo-download:hover {
  background: #106ebe;
  color: #fff !important;
}

.app-promo-download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.app-download-btn {
  float: right;
}

body.app-promo-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .app-promo-modal {
    padding: 28px 18px 22px;
  }

  .app-promo-logo {
    font-size: 1.7rem;
  }

  .app-promo-title {
    font-size: 1.05rem;
  }

  .app-promo-download {
    width: 100%;
  }
}
