.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.container {
  position: relative;
  max-width: 42rem; /* Tailwind's max-w-2xl */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: linear-gradient(to left, #0f172a, #020617); /* midnight to navy */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.closeButton {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: #0f172a;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.closeButton:hover {
  background-color: #4b5563;
}

.closeIcon {
  width: 1.5rem;
  height: 1.5rem;
}

.headerImage {
  width: 100%;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  object-fit: cover;
}

.content {
  padding: 1.25rem;
}

.title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.description {
  margin-bottom: 0.75rem;
  font-weight: 400;
  color: #a3a3a3;
}

.footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.link:hover {
  opacity: 0.8;
}

.linkIcon {
  width: 1rem;
  height: 1rem;
}