/* ===== Total VR — shared styles ===== */

:root {
  --bg: #0b0a08;
  --bg-alt: #171210;
  --panel: #211613;
  --border: #3a2a24;
  --text: #f5efe9;
  --text-dim: #b3a8a2;
  --cyan: #ef3d32;
  --cyan-dim: #b32e2a;
  --accent-2: #ffaa5f;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fjalla One', 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .02em;
  text-transform: uppercase;
}

p { margin: 0 0 1em; color: var(--text-dim); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Fjalla One', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-block { width: 100%; }

/* ===== Header ===== */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 8, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo img { height: 26px; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-family: 'Fjalla One', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--text); }
nav.main-nav a.active { color: var(--cyan); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-right .btn { padding-top: 9px; padding-bottom: 9px; }
.nav-phone { font-size: .85rem; color: var(--text-dim); }
.nav-phone strong { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 24px; height: 2px; background: var(--text); display: block; }

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 20%;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: block;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.77vh; /* 100vh * 16/9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,10,8,.25) 0%, rgba(11,10,8,.4) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,10,8,.65) 0%, rgba(11,10,8,.1) 60%);
}

.hero-content { position: relative; z-index: 3; max-width: 640px; padding-top: 64px; padding-bottom: 64px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
}
.hero h1 span { color: var(--cyan); }

.hero .lead { font-size: 1.1rem; color: #d9c9c2; max-width: 480px; }

.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ===== Stats band (below hero) ===== */

.stats-band {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.2rem;
  color: #fff;
}
.stat span { font-size: .85rem; color: var(--text-dim); }

/* ===== Info strip ===== */

.info-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.info-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-dim);
}
.info-item .ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(236,63,58,.12);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.info-item strong { color: var(--text); display: block; font-size: .92rem; }

/* ===== Sections ===== */

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.alt { background: var(--bg-alt); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: #fff; }

.heading-accent {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--cyan);
  margin: 0;
}

/* ===== Feature grid ===== */

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
}
.card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(236,63,58,.12);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.05rem; color: #fff; }
.card p { font-size: .92rem; margin-bottom: 0; }

/* de-boxed feature list (lighter than .card) */
.feature-row { row-gap: 36px; }
.feature { text-align: center; }
.feature .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(236,63,58,.12);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.feature h3 { font-size: 1.02rem; color: #fff; }
.feature p { font-size: .9rem; margin-bottom: 0; }

/* ===== Split / media blocks ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: 18px; border: 1px solid var(--border); }
.split.reverse .media { order: 2; }

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Games grid teaser ===== */

.games-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-thumb:hover img { transform: scale(1.06); }
.game-thumb span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 10px 8px;
  font-size: .72rem;
  font-family: 'Fjalla One', sans-serif;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  color: #fff;
}

/* full games page grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.game-card .thumb { aspect-ratio: 16/7.5; overflow: hidden; }
.game-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card .body { padding: 16px 18px 20px; }
.game-card h3 { font-size: .98rem; margin-bottom: 6px; color: #fff; }
.game-card p { font-size: .85rem; }
.games-grid-flat { grid-template-columns: repeat(3, 1fr); }
.games-grid-flat .game-card .body { padding: 22px 24px; }
.games-grid-flat .game-card p { font-size: .88rem; }

.game-tags {
  margin: 10px 0 0;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* ===== Games filter toolbar ===== */

.games-toolbar { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.game-search {
  width: 100%;
  max-width: 360px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
}
.game-search::placeholder { color: var(--text-dim); }
.game-search:focus { outline: none; border-color: var(--cyan); }

.games-filter { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-chip {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: .78rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.filter-chip:hover { border-color: var(--cyan); color: #fff; }
.filter-chip.active { background: var(--cyan); border-color: var(--cyan); color: #fff; }

.games-count { font-size: .82rem; color: var(--text-dim); margin: -12px 0 24px; }

.games-empty { display: none; text-align: center; padding: 60px 0; color: var(--text-dim); }
.games-empty.show { display: block; }
.game-meta { list-style: none; margin: 12px 0 0; padding: 0; }
.game-meta li {
  font-size: .78rem;
  color: var(--cyan);
  margin-bottom: 4px;
}

.tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'Fjalla One', sans-serif;
  color: var(--cyan);
  background: rgba(236,63,58,.1);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 0;
}

.genre-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.genre-pills span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .85rem;
  color: var(--text-dim);
  font-family: 'Fjalla One', sans-serif;
}

/* ===== Horizontal slider (testimonials, photo galleries) ===== */

.slider-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 16px;
  flex: 1;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.photo-card {
  flex: 0 0 auto;
  height: 340px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.photo-card img { height: 100%; width: auto; display: block; }

.game-teaser-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.game-teaser-card img { width: 100%; height: 135px; object-fit: cover; display: block; }
.game-teaser-card .body { padding: 14px 16px 18px; }
.game-teaser-card h3 { font-size: .92rem; margin-bottom: 6px; color: #fff; }
.game-teaser-card p { font-size: .8rem; margin: 0; color: var(--text-dim); }

.slider-nav {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, color .15s ease;
}
.slider-nav:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== Review carousel (single card, autoplay, draggable) ===== */

.review-carousel { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.review-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track.dragging { scroll-behavior: auto; cursor: grabbing; }

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 44px;
  text-align: center;
}
.review-stars { color: var(--cyan); font-size: 1.3rem; letter-spacing: .12em; margin-bottom: 16px; }
.review-card p { color: var(--text); font-style: italic; max-width: 600px; margin: 0 auto 14px; }
.review-author { margin-top: 18px; }
.review-author a { font-family: 'Fjalla One', sans-serif; color: #fff; font-size: .95rem; }
.review-author a:hover { color: var(--cyan); }
.review-author span { display: block; font-size: .78rem; color: var(--text-dim); margin-top: 4px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.carousel-dots button.active { background: var(--cyan); transform: scale(1.3); }

/* ===== Pricing table ===== */

.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 30px;
}
.price-card.highlight { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }
.price-card h3 { color: #fff; font-size: 1.15rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-of-type { border-bottom: none; }
.price-row .dur { color: var(--text-dim); font-size: .92rem; }
.price-row .amt { font-family: 'Fjalla One', sans-serif; font-size: 1.3rem; color: #fff; }
.price-note {
  margin-top: 18px;
  font-size: .82rem;
  color: var(--cyan);
}
.included-list { list-style: none; margin: 18px 0 0; padding: 0; }
.included-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-dim);
  margin-bottom: 10px;
}
.included-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ===== Steps ===== */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step .num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.4rem;
  color: rgba(236,63,58,.35);
  margin-bottom: 6px;
}
.step h3 { font-size: 1rem; color: #fff; }
.step p { font-size: .88rem; }

/* ===== FAQ accordion ===== */

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q .plus { color: var(--cyan); font-size: 1.3rem; transition: transform .2s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a p { padding-bottom: 20px; margin: 0; font-size: .93rem; }

/* ===== Logos strip ===== */

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
.logos-strip img {
  height: 34px;
  filter: grayscale(1) brightness(2) opacity(.6);
  transition: filter .2s ease;
}
.logos-strip img:hover { filter: grayscale(0) brightness(1) opacity(1); }

/* ===== CTA band ===== */

.cta-band {
  background: linear-gradient(120deg, #341310, #0b0a08 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: #fff; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ===== Footer ===== */

footer.site-footer { padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-grid h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid a { color: var(--text-dim); }
.footer-grid a:hover { color: var(--cyan); }
.footer-logo img { height: 24px; margin-bottom: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.social-row a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== Party page hero variant ===== */

.page-hero {
  padding: 160px 0 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: #fff; max-width: 700px; }
.page-hero p.lead { max-width: 560px; font-size: 1.05rem; }

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .games-strip { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .media { order: 0; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .burger { display: flex; }
  .nav-phone { display: none; }
  .grid-4, .grid-3, .games-grid, .games-strip { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .logos-strip { justify-content: center; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 48px; padding-bottom: 48px; }
  .stats-band { padding: 32px 0; }
  .stats-grid { gap: 32px 40px; }
  .stat strong { font-size: 1.8rem; }
  .slider-nav { display: none; }
  .slider-wrap { padding: 0 24px; }
  .game-teaser-card { flex-basis: 70vw; }
  .photo-card { height: 220px; }
  .review-card { padding: 28px 22px; }
}

/* mobile nav open state */
body.nav-open nav.main-nav {
  display: flex;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px;
  gap: 8px;
  z-index: 99;
}
body.nav-open nav.main-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
