/* ==========================================================================
   Global Health Exhibition 2026 — High-Conversion VIP Pass Popup
   ========================================================================== */

.ghe-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 15, 13, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-sizing: border-box;
}

.ghe-popup-backdrop * {
  box-sizing: border-box;
}

.ghe-popup-backdrop.ghe-popup-active {
  opacity: 1;
  visibility: visible;
}

.ghe-popup-card {
  background: linear-gradient(145deg, #0B2420 0%, #071916 100%);
  border: 1.5px solid rgba(39, 209, 170, 0.35);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  color: #ffffff;
  padding: 32px 28px 26px;
  position: relative;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.85), 0 0 35px rgba(39, 209, 170, 0.18);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ghe-popup-backdrop.ghe-popup-active .ghe-popup-card {
  transform: translateY(0) scale(1);
}

.ghe-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.ghe-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.08);
}

.ghe-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 209, 170, 0.12);
  border: 1px solid rgba(39, 209, 170, 0.3);
  color: #27D1AA;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ghe-popup-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27D1AA;
  box-shadow: 0 0 8px #27D1AA;
}

.ghe-popup-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.ghe-popup-subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.ghe-urgency-box {
  background: rgba(6, 21, 19, 0.85);
  border: 1px solid rgba(39, 209, 170, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ghe-urgency-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
}

.ghe-urgency-left svg {
  color: #27D1AA;
  shrink: 0;
}

.ghe-urgency-badge {
  background: rgba(39, 209, 170, 0.2);
  color: #27D1AA;
  border: 1px solid rgba(39, 209, 170, 0.35);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.ghe-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghe-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.4;
}

.ghe-perk-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(39, 209, 170, 0.15);
  border: 1px solid rgba(39, 209, 170, 0.35);
  color: #27D1AA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ghe-perk-icon svg {
  width: 11px;
  height: 11px;
}

.ghe-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #27D1AA 0%, #2ECDB2 100%);
  color: #071916;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px -4px rgba(39, 209, 170, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.ghe-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(39, 209, 170, 0.45);
  filter: brightness(1.06);
  color: #071916;
}

.ghe-popup-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ghe-popup-footer svg {
  width: 12px;
  height: 12px;
  color: #27D1AA;
}

@media (max-width: 480px) {
  .ghe-popup-card {
    padding: 24px 20px 20px;
  }
  .ghe-popup-title {
    font-size: 20px;
  }
}
