/* ============================================
   MASKS & MACHETES - VR Page Styles
   ============================================ */

/* --- VR Features Section --- */
.vr-features-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.vr-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vr-feature-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(17,17,17,0.6), rgba(10,10,10,0.8));
  border: 1px solid var(--border-stone);
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.vr-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vr-feature-card:hover::before { opacity: 1; }

.vr-feature-card:hover {
  border-color: rgba(196,30,30,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px var(--shadow-blood);
  transform: translateY(-5px);
}

.vr-feature-icon {
  color: var(--crimson);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.vr-feature-card:hover .vr-feature-icon {
  color: var(--crimson-glow);
  filter: drop-shadow(0 0 12px var(--shadow-red));
  transform: scale(1.12);
}

.vr-feature-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.vr-feature-card:hover h3 {
  color: var(--gold-bright);
}

.vr-feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vr-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vr-arena-section,
  .vr-lounge-section,
  .vr-select-section {
    padding: 2.5rem 1.5rem;
  }
  .vr-devices-section {
    padding: 2.5rem 1.5rem;
  }
  .vr-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* --- VR Arena / Lounge / Select Sections --- */
.vr-arena-section,
.vr-lounge-section,
.vr-select-section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* --- Soundtrack Callout --- */
.vr-soundtrack-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.8rem 2.2rem;
  background: linear-gradient(135deg, rgba(212, 168, 50, 0.06), rgba(139, 0, 0, 0.06));
  border: 1px solid rgba(212, 168, 50, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  transition: all 0.4s ease;
}

.vr-soundtrack-callout:hover {
  border-color: rgba(212, 168, 50, 0.35);
  box-shadow: 0 0 30px rgba(212, 168, 50, 0.08), 0 10px 40px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.vr-soundtrack-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 50, 0.1);
  color: var(--gold);
  transition: all 0.4s ease;
}

.vr-soundtrack-callout:hover .vr-soundtrack-icon {
  background: rgba(212, 168, 50, 0.18);
  box-shadow: 0 0 20px rgba(212, 168, 50, 0.2);
  transform: scale(1.08);
}

.vr-soundtrack-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vr-soundtrack-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
  .vr-soundtrack-callout {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 1rem;
    margin-top: 2rem;
  }
  .vr-soundtrack-icon {
    width: 48px;
    height: 48px;
  }
  .vr-soundtrack-text h3 {
    font-size: 0.95rem;
  }
  .vr-soundtrack-text p {
    font-size: 0.85rem;
  }
  .vr-arena-section,
  .vr-lounge-section,
  .vr-select-section {
    padding: 2rem 1rem;
  }
  .vr-feature-card {
    padding: 1.5rem 1.2rem;
  }
  .vr-feature-card h3 {
    font-size: 1rem;
  }
  .vr-feature-card p {
    font-size: 0.85rem;
  }
  .vr-features-section {
    padding: 1rem 0;
  }
}

/* --- Compatible Devices Section --- */
.vr-devices-section {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.vr-devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.vr-device-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-stone);
  border-radius: 50px;
  transition: all 0.4s ease;
  color: var(--text-secondary);
}

.vr-device-pill svg {
  color: var(--crimson);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.vr-device-pill span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.vr-device-pill:hover {
  border-color: var(--crimson);
  background: rgba(196, 30, 30, 0.06);
  box-shadow: 0 0 20px rgba(196, 30, 30, 0.1);
  transform: translateY(-2px);
}

.vr-device-pill:hover svg {
  color: var(--crimson-glow);
  filter: drop-shadow(0 0 6px var(--shadow-red));
}

@media (max-width: 600px) {
  .vr-devices-section {
    padding: 2rem 1rem;
  }
  .vr-devices-grid {
    gap: 0.6rem;
  }
  .vr-device-pill {
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }
  .vr-device-pill span {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
  .vr-device-pill svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 400px) {
  .vr-device-pill {
    padding: 0.5rem 0.8rem;
  }
  .vr-device-pill span {
    font-size: 0.65rem;
  }
  .vr-feature-card {
    padding: 1.2rem 1rem;
  }
  .vr-arena-section,
  .vr-lounge-section,
  .vr-select-section {
    padding: 1.5rem 0.8rem;
  }
  .vr-soundtrack-callout {
    padding: 1rem;
  }
}
