/* ============================================================
   POSTAL 2 VR — Game Page Styles
   ============================================================ */

@font-face {
  font-family: 'Special Elite';
  src: url('../assets/fonts/SpecialElite-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --p2vr-red:    #c8111b;
  --p2vr-dark:   #180502;
  --p2vr-text:   #ffffff;
}

.postal-page {
  background-color: var(--p2vr-dark);
  color: var(--p2vr-text);
}

/* ---- HERO ---- */
.p2vr-hero {
  position: relative;
  padding-top: var(--nav-h);
}

/* Image sets the section height — no cropping */
.p2vr-hero-bg {
  position: relative;
  width: 100%;
  line-height: 0;
}

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

.p2vr-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,5,2,0.15) 0%, rgba(24,5,2,0.4) 70%, rgba(24,5,2,1) 100%);
}

/* Content centred over the image */
.p2vr-hero-content {
  position: absolute;
  inset: 0;
  top: var(--nav-h);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 24px 80px;
  text-align: center;
}

@keyframes p2vr-logo-float {
  0%, 100% { transform: translateY(0);   filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7)); }
  50%       { transform: translateY(-8px); filter: drop-shadow(0 12px 32px rgba(180,10,10,0.35)); }
}

.p2vr-logo {
  width: min(504px, 86vw);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
  animation: p2vr-logo-float 4s ease-in-out infinite;
}

.p2vr-status {
  font-family: 'Special Elite', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--p2vr-text);
}

.p2vr-buy-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

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

.p2vr-buy-btn:hover {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 6px 10px rgba(200,17,27,0.2)) brightness(1.1);
}

.p2vr-buy-btn img {
  height: 68px;
  width: auto;
}

/* ---- TRAILER ---- */
.p2vr-trailer {
  background: var(--p2vr-dark);
  padding: 36px 0;
}

.p2vr-trailer-inner {
  display: flex;
  justify-content: center;
}

.p2vr-video-wrap {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  background: #d0d0d0;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}


.p2vr-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p2vr-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p2vr-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.p2vr-play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7));
  transition: transform 0.2s, filter 0.2s;
}

.p2vr-play-btn:hover svg {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 24px rgba(200,17,27,0.5));
}

/* ---- STEP INTO PARADISE ---- */
.p2vr-paradise {
  background: var(--p2vr-dark);
  padding-top: 64px;
  overflow: hidden;
}

.p2vr-paradise-inner {
  position: relative;
}

.p2vr-paradise-top {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}

.p2vr-paradise-left {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.p2vr-character {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.8));
}

.p2vr-paradise-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.p2vr-sip-title {
  width: 100%;
  max-width: 780px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.p2vr-desc {
  font-family: 'Special Elite', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  text-align: center;
  letter-spacing: 0.01em;
}

.p2vr-paradise-sign {
  position: relative;
  width: min(1014px, 98vw);
  margin: -20px auto 0;
  aspect-ratio: 744 / 430;
  background: url('../assets/images/postal2vr/paradise-sign.png') center / contain no-repeat;
}

/* ---- SOCIAL BAR ---- */
.p2vr-social-bar {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
}

.p2vr-social-label {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.p2vr-social-icons {
  display: flex;
  gap: 20px;
}

.p2vr-social-icons a {
  color: #ffffff;
  font-size: 1.6rem;
  transition: color 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}

.p2vr-social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ---- NEWSLETTER ---- */
.p2vr-newsletter {
  background: var(--p2vr-dark);
  padding: 0 0 80px;
}

.p2vr-newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.p2vr-newsletter-title {
  font-family: 'Special Elite', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p2vr-text);
}

.p2vr-newsletter-form {
  width: 100%;
  max-width: 560px;
}

.p2vr-form-row {
  position: relative;
  display: flex;
}

.p2vr-form-bg {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

.p2vr-form-row input[type="email"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 76%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  color: #fff;
  font-family: 'Special Elite', system-ui, sans-serif;
  font-size: 0.95rem;
  caret-color: #fff;
}

.p2vr-subscribe-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 24%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ---- FOOTER (override for this page) ---- */
.postal-page .site-header {
  background: #180502;
}

.postal-page .site-header.scrolled {
  background: #180502;
}

.postal-page .btn-merch {
  background: #ca0203;
  color: #ffffff;
}

.postal-page .btn-merch:hover {
  background: #a80202;
}

.postal-page .site-footer {
  background: #060f16;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .p2vr-paradise-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .p2vr-paradise-left {
    width: 200px;
  }

  .p2vr-paradise-right {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }

  .p2vr-desc {
    text-align: center;
  }

  .p2vr-paradise-sign {
    justify-content: center;
  }

  .p2vr-buy-btn img {
    height: 55px;
  }

  .postal-page .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .p2vr-buy-btns {
    flex-direction: column;
    align-items: center;
  }

  .p2vr-buy-btn img {
    height: 46px;
    width: auto;
    max-width: 280px;
  }
}
