/* house-party.css — first-visit video intro overlay (see house-party.js). */

.hpp-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hpp-overlay[hidden] { display: none; }

.hpp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.92);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.hpp-stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
}

.hpp-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.hpp-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hpp-close {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.hpp-close:hover { background: rgba(255, 255, 255, 0.18); }

body.hpp-open { overflow: hidden; }

@media (max-width: 640px) {
  .hpp-close { top: -40px; }
}
