/**
 * ============================================================================
 * SIRI GOLD & DIAMONDS - LUXURY APP PROMO POPUP MODAL STYLES
 * ============================================================================
 */

/* Modal Backdrop */
.siri-app-promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 2, 4, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.siri-app-promo-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal Card Dialog */
.siri-app-promo-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #25040d 0%, #160207 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(143, 8, 34, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.08);
  padding: 28px 24px 22px 24px;
  text-align: center;
  box-sizing: border-box;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Outfit', sans-serif;
  color: #fbf7f2;
}

.siri-app-promo-overlay.active .siri-app-promo-card {
  transform: scale(1);
}

/* Close Button */
.siri-app-promo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.siri-app-promo-close:hover {
  background: #8f0822;
  border-color: #ffd700;
  color: #ffd700;
  transform: scale(1.1);
}

/* Top Emblem Icon */
.siri-app-emblem-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b0307 0%, #4a0614 100%);
  border: 1.5px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  padding: 6px;
  box-sizing: border-box;
}

.siri-app-emblem-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Modal Heading */
.siri-app-promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

/* Modal Description */
.siri-app-promo-desc {
  font-size: 12px;
  line-height: 1.55;
  color: #c9b5b9;
  margin: 0 auto 14px auto;
  max-width: 380px;
}

/* CTA Pill Badge */
.siri-app-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3d050f 0%, #680a1d 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  padding: 5px 16px;
  color: #ffd700;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(104, 10, 29, 0.4);
}

/* QR Code Display Container */
.siri-app-qr-container {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.siri-app-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Dual Store Buttons */
.siri-app-store-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px 0 12px 0;
  width: 100%;
}

.siri-app-store-btn {
  flex: 1 1 0;
  max-width: 185px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.2px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: #ffffff;
  transition: all 0.25s ease;
  box-sizing: border-box;
  text-align: left;
}

.siri-app-store-btn:hover {
  background: rgba(143, 8, 34, 0.4);
  border-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(143, 8, 34, 0.3);
  color: #ffd700;
}

.siri-store-icon {
  font-size: 20px;
  color: #ffd700;
  flex-shrink: 0;
}

.siri-store-icon.apple-icon {
  color: #ffffff;
  font-size: 22px;
}

.siri-store-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.siri-store-sub {
  font-size: 8px;
  text-transform: uppercase;
  color: #a99a9d;
  line-height: 1;
  letter-spacing: 0.5px;
}

.siri-store-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 1px;
}

/* Live Indicator Status */
.siri-app-live-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #c4b3b7;
  font-weight: 500;
  margin-bottom: 10px;
}

.siri-live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Continue link */
.siri-continue-link {
  font-size: 11.5px;
  color: #d4af37;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
  background: transparent;
  border: none;
  font-family: inherit;
  padding: 0;
}

.siri-continue-link:hover {
  color: #ffd700;
}

@media (max-width: 480px) {
  .siri-app-promo-card {
    padding: 24px 16px 18px 16px;
    border-radius: 20px;
  }
  .siri-app-promo-title {
    font-size: 18px;
  }
  .siri-app-qr-container {
    width: 145px;
    height: 145px;
  }
  .siri-app-store-btn {
    padding: 6px 8px;
  }
  .siri-store-name {
    font-size: 11.5px;
  }
}
