/* ============================================================
   POSTAL 2 REDUX — 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 {
  --p2r-red:  #c8111b;
  --p2r-dark: #0d0402;
  --p2r-text: #ffffff;
}

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

/* ---- NAV ---- */
.postal-redux-page .site-header {
  background: #0d0402;
}

.postal-redux-page .site-header.scrolled {
  background: #0d0402;
}

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

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

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

.p2r-hero-bg {
  position: relative;
  width: 100%;
  line-height: 0;
}

.p2r-hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 460px;
  object-fit: cover;
}

.p2r-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,4,2,0.15) 0%,
    rgba(13,4,2,0.45) 60%,
    rgba(13,4,2,1) 100%
  );
}

.p2r-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: 18px;
  padding: 0 24px 80px;
  text-align: center;
}

@keyframes p2r-logo-float {
  0%, 100% { transform: translateY(0);    filter: drop-shadow(0 4px 28px rgba(0,0,0,0.85)); }
  50%       { transform: translateY(-9px); filter: drop-shadow(0 14px 36px rgba(200,17,27,0.45)); }
}

.p2r-logo {
  width: min(520px, 78vw);
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.85));
  animation: p2r-logo-float 4.5s ease-in-out infinite;
}

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

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

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

.p2r-buy-btn:hover {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(200,17,27,0.4)) brightness(1.08);
}

.p2r-buy-btn img {
  height: 62px;
  width: auto;
}

/* ---- TRAILER ---- */
.p2r-trailer {
  background: var(--p2r-dark);
  padding: 48px 0 56px;
}

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

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

.p2r-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.p2r-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;
}

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

/* ---- A WEEK IN PARADISE ---- */
.p2r-paradise {
  background: var(--p2r-dark);
  padding: 72px 0 80px;
  overflow: hidden;
}

.p2r-paradise-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.p2r-character {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.9));
}

.p2r-paradise-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.p2r-section-title-img {
  width: 100%;
  max-width: 560px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

.p2r-desc {
  font-family: 'Special Elite', system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  letter-spacing: 0.01em;
}

/* ---- SOCIAL BAR ---- */
.p2r-social-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}

.p2r-social-label {
  font-family: 'Special Elite', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.p2r-social-icons {
  display: flex;
  gap: 18px;
}

.p2r-social-icons a {
  color: #ffffff;
  font-size: 1.45rem;
  transition: color 0.2s, transform 0.2s;
}

.p2r-social-icons a:hover {
  color: var(--p2r-red);
  transform: translateY(-3px);
}

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

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

.p2r-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(--p2r-text);
}

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

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

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

.p2r-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;
}

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

/* ---- FOOTER ---- */
.postal-redux-page .site-footer {
  background: #060f16;
}

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

  .p2r-paradise-left {
    width: 320px;
  }

  .p2r-paradise-right {
    align-items: center;
    text-align: center;
  }

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

  .p2r-buy-btn img {
    height: 52px;
  }

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

@media (max-width: 480px) {
  .p2r-buy-btn img {
    height: 46px;
    width: auto;
    max-width: 280px;
  }
}
