/* ============================================================
   FLATOUT 4 VR: TOTAL INSANITY — Placeholder Page Styles
   ============================================================ */

:root {
  --fo-black: #0a0a0a;
  --fo-yellow: #f7a600;
}

@font-face {
  font-family: 'Multicolore Pro';
  src: url('../assets/fonts/Multicolore_Pro.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

.fo-page {
  background-color: var(--fo-black);
}

.fo-page .site-header,
.fo-page .site-header.scrolled {
  background: var(--fo-black);
}

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

.fo-page .btn-merch {
  background: var(--fo-yellow);
  color: #060f16;
}

.fo-page .btn-merch:hover {
  background: #dd9200;
}

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

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

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

.fo-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 fo-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.fo-logo {
  width: min(460px, 70vw);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  animation: fo-logo-float 4s ease-in-out infinite;
}

.fo-status-img {
  width: min(420px, 55vw);
  height: auto;
}

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

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

.fo-buy-btn:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45)) brightness(1.08);
}

.fo-buy-btn img {
  height: 72px;
  width: auto;
}

/* ---- TRAILER PLACEHOLDER ---- */
.fo-trailer {
  position: relative;
  margin-top: -8vw;
  padding: 24px 24px 72px;
  display: flex;
  justify-content: center;
}

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

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

@media (max-width: 640px) {
  .fo-buy-btn img {
    height: 52px;
  }
  .fo-logo {
    width: min(320px, 75vw);
  }
}

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

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

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

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

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