/* ============================================================
   seasonal-hoshi.css — popup styles
   ============================================================ */

.seasonal-hoshi-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 14, 44, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.seasonal-hoshi-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.seasonal-hoshi-card {
  position: relative;
  background: rgba(14, 22, 60, 0.96);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.seasonal-hoshi-overlay.open .seasonal-hoshi-card {
  transform: scale(1);
}

.seasonal-hoshi-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(250, 246, 239, 0.8);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 150ms ease, color 150ms ease;
}
.seasonal-hoshi-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #faf6ef;
}

.seasonal-hoshi-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.seasonal-hoshi-image img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

.seasonal-hoshi-text {
  padding: 16px 24px 20px;
  text-align: center;
}
.seasonal-hoshi-text p {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  color: #faf6ef;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 14px;
}

.seasonal-hoshi-cta {
  font-family: 'Nunito', sans-serif;
  background: rgba(245, 166, 35, 0.14);
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 22px;
  color: #f5a623;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 26px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 150ms ease;
}
.seasonal-hoshi-cta:hover {
  background: rgba(245, 166, 35, 0.22);
}
