/* Site-wide announcement popup – minimal, matches existing dark theme */
.amadeus-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.amadeus-popup {
  position: relative;
  max-width: min(520px, 92vw);
  max-height: 90vh;
  overflow: auto;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  color: #f7f7ff;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.amadeus-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.amadeus-popup__close:hover,
.amadeus-popup__close:focus {
  background: rgba(255, 255, 255, 0.14);
}

.amadeus-popup__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  background: #15151f;
}

.amadeus-popup__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.amadeus-popup__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.amadeus-popup__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #c7c8d9;
  white-space: pre-wrap;
}

.amadeus-popup__text:last-child {
  margin-bottom: 0;
}

.amadeus-popup__link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #4cf2ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.amadeus-popup__link:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .amadeus-popup-backdrop {
    padding: 0.75rem;
  }

  .amadeus-popup__body {
    padding: 1rem 1.25rem 1.25rem;
  }
}
