/* ============================================================
   OUT OF SIGHT VR — Placeholder Page Styles
   ============================================================ */

:root {
  --oos-navy: #070b44;
}

.oos-page {
  background-color: var(--oos-navy);
}

.oos-page .site-header,
.oos-page .site-header.scrolled {
  background: var(--oos-navy);
}

.oos-page .site-footer {
  background: var(--bg-darkest);
}

.oos-page .btn-merch {
  background: #c0ccff;
}

.oos-page .btn-merch:hover {
  background: #a8b8ff;
}

/* ---- HERO ---- */
.oos-hero {
  position: relative;
  background: var(--oos-navy);
}

.oos-hero-bg {
  width: 100%;
  line-height: 0;
}

.oos-hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.oos-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 28px;
  padding: 24px;
  text-align: center;
}

@keyframes oos-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.oos-logo {
  width: min(396px, 49.5vw);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  animation: oos-logo-float 5s ease-in-out infinite;
}

.oos-status {
  font-family: 'Chelsea Market', 'Quatro', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9cdf5;
}

.oos-buy-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.oos-buy-btn {
  position: relative;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.oos-buy-btn:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.oos-buy-btn img {
  height: 46px;
  width: auto;
  display: block;
}

.oos-buy-btn-hover {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.oos-buy-btn:hover .oos-buy-btn-hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .oos-buy-btn img {
    height: 36px;
  }
}

/* ---- TRAILER PLACEHOLDER ---- */
.oos-trailer {
  padding: 16px 24px 72px;
  display: flex;
  justify-content: center;
}

.oos-trailer-box {
  position: relative;
  width: 100%;
  max-width: 1030px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #c9c9c9;
}

.oos-trailer-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- SOCIAL ---- */
.oos-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px 64px;
}

.oos-social-label {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.oos-social-icons {
  display: flex;
  gap: 22px;
}

.oos-social-icons a {
  color: #ffffff;
  font-size: 1.6rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.oos-social-icons a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
