.splash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.splash-overlay.show {
  display: flex;
}

.splash-box {
  position: relative;
  background: #fff;
  max-width: 720px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: splashZoom .35s ease;
}

.splash-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.splash-box h2 {
  margin: 24px 20px 8px;
  font-size: 30px;
  font-weight: 700;
}

.splash-box p {
  margin: 0 20px 24px;
  font-size: 16px;
  color: #555;
}

.splash-btn {
  display: inline-block;
  margin-bottom: 28px;
  padding: 12px 28px;
  background: #0b5cab;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.splash-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

@keyframes splashZoom {
  from {
    transform: scale(.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .splash-img {
    height: 220px;
  }

  .splash-box h2 {
    font-size: 24px;
  }
}