/* ============================================
   MERIDIAN 17 — AAA Gaming Club Design System
   ============================================ */

:root {
  --bg-deep: #050508;
  --bg-card: #0c0c14;
  --bg-elevated: #12121c;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 255, 200, 0.2);

  --cyan: #00ffc8;
  --cyan-dim: #00c9a0;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --blue: #3b82f6;
  --orange: #f97316;
  --ps-blue: #0070d1;

  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #55556a;

  --gradient-main: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
  --gradient-ps: linear-gradient(135deg, #0070d1, #00a8e8);
  --gradient-vr: linear-gradient(135deg, #8b5cf6, #ec4899);
  --gradient-9d: linear-gradient(135deg, #f97316, #ef4444);

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 60px rgba(0, 255, 200, 0.15);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) var(--bg-deep);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 255, 200, 0.3);
  color: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

img[data-photo] {
  width: 100%;
  min-height: 140px;
  background: var(--bg-elevated);
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Effects ---- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* Scanlines & Aurora */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 200, 0.015) 2px,
    rgba(0, 255, 200, 0.015) 4px
  );
  animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 255, 200, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(236, 72, 153, 0.06), transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.logo-country {
  font-size: 0.65rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--gradient-main);
  color: #000;
  box-shadow: 0 4px 30px rgba(0, 255, 200, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 255, 200, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 200, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 200, 0.4);
}

.btn-outline:hover {
  background: rgba(0, 255, 200, 0.1);
  border-color: var(--cyan);
}

.btn-sm { padding: 10px 20px; font-size: 0.7rem; }
.btn-full { width: 100%; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.logo-icon {
  color: var(--cyan);
  font-size: 1.4rem;
  animation: logoSpin 8s linear infinite;
}

@keyframes logoSpin {
  0%, 90% { transform: rotate(0deg); }
  95% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.logo-text .accent { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-links .btn-vr-demo-nav {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-rings {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 1;
}

.ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 255, 200, 0.1);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { inset: 40px; animation-delay: 0.5s; border-color: rgba(139, 92, 246, 0.15); }
.ring-3 { inset: 80px; animation-delay: 1s; border-color: rgba(236, 72, 153, 0.1); }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* 3D VR Headset */
.hero-3d-scene {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
  perspective: 1200px;
}

.vr-headset-3d {
  position: relative;
  width: 280px;
  height: 280px;
}

.vr-orbit {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: vrOrbit 20s linear infinite;
}

@keyframes vrOrbit {
  0% { transform: rotateY(0deg) rotateX(10deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}

.vr-model {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 120px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: vrFloat 4s ease-in-out infinite;
}

@keyframes vrFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.vr-face {
  position: absolute;
  backface-visibility: visible;
  border: 1px solid rgba(0, 255, 200, 0.3);
}

.vr-shell { transform-style: preserve-3d; }

.vr-front {
  width: 200px;
  height: 120px;
  background: linear-gradient(145deg, #22223a 0%, #0d0d18 40%, #1a1030 100%);
  border-radius: 45px 45px 35px 35px;
  transform: translateZ(45px);
  box-shadow: inset 0 0 40px rgba(139, 92, 246, 0.15), 0 0 60px rgba(0, 255, 200, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.vr-visor {
  position: absolute;
  inset: 8px 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  border: 1px solid rgba(0, 255, 200, 0.1);
  pointer-events: none;
}

.vr-led-bar {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  border-radius: 2px;
  animation: ledPulse 2s ease-in-out infinite;
}

@keyframes ledPulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px var(--cyan); }
  50% { opacity: 1; box-shadow: 0 0 20px var(--purple); }
}

.vr-lens-inner {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.6) 0%, transparent 70%);
  animation: lensPulse 2s ease-in-out infinite;
}

.vr-hologram-ring {
  position: absolute;
  inset: -30px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: holoSpin 8s linear infinite;
}

.vr-hologram-ring-2 {
  inset: -50px;
  border-color: rgba(0, 255, 200, 0.15);
  animation-direction: reverse;
  animation-duration: 12s;
}

@keyframes holoSpin {
  0% { transform: rotateX(70deg) rotateZ(0deg); }
  100% { transform: rotateX(70deg) rotateZ(360deg); }
}

.vr-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--purple);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.vr-glow-2 {
  background: radial-gradient(circle, rgba(0, 255, 200, 0.2) 0%, transparent 70%) !important;
  animation-delay: 1s;
}

/* Sketchfab VR Model */
.sketchfab-vr {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 60px rgba(139, 92, 246, 0.25),
    0 0 120px rgba(0, 255, 200, 0.08);
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.sketchfab-vr iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sketchfab-hero {
  max-width: 440px;
}

.sketchfab-arena {
  max-width: 360px;
}

.vr-glow-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(0, 255, 200, 0.15);
  border-radius: 28px;
  pointer-events: none;
  animation: holoBorder 3s ease-in-out infinite;
}

.sketchfab-vr .vr-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 16px;
  background: rgba(5, 5, 8, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 100px;
  pointer-events: none;
}

.footer-attrib {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-attrib a { color: var(--text-muted); }

/* VR Demo Button */
.btn-vr-demo {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 40%, #06b6d4 100%);
  background-size: 200% 200%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.45),
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  cursor: pointer;
  animation: vrDemoGradient 4s ease infinite, vrDemoGlow 2.5s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-vr-demo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(0, 255, 200, 0.4));
  z-index: -1;
  opacity: 0.5;
  filter: blur(12px);
  animation: vrDemoRing 2.5s ease-in-out infinite;
}

.btn-vr-demo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 50px rgba(139, 92, 246, 0.7),
    0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-vr-demo svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.btn-vr-demo-lg {
  padding: 18px 32px;
  font-size: 0.85rem;
  border-radius: 16px;
  gap: 14px;
}

.btn-vr-demo-lg .vr-demo-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  line-height: 1.2;
}

.btn-vr-demo-lg .vr-demo-btn-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.btn-vr-demo-lg .vr-demo-btn-copy small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.btn-vr-demo-nav {
  padding: 8px 14px !important;
  font-size: 0.6rem !important;
  margin-top: 0 !important;
  border-radius: 100px;
}

.btn-vr-demo-outline {
  background: rgba(10, 10, 18, 0.75);
  background-size: auto;
  animation: vrDemoGlow 2.5s ease-in-out infinite;
  border-color: rgba(139, 92, 246, 0.6);
  color: #e9d5ff;
}

.btn-vr-demo-outline::after { opacity: 0.35; }

@keyframes vrDemoGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes vrDemoGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(139, 92, 246, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 48px rgba(139, 92, 246, 0.75), 0 0 24px rgba(0, 255, 200, 0.25); }
}

@keyframes vrDemoRing {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.04); }
}

/* VR Demo — плавающая кнопка */
.vr-demo-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 0.7rem;
  animation: vrDemoGradient 4s ease infinite, vrDemoGlow 2.5s ease-in-out infinite;
}

.vr-demo-float svg { width: 22px; height: 22px; }

/* VR Demo — баннер-полоса */
.vr-demo-strip {
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.12) 0%, rgba(0, 255, 200, 0.08) 50%, rgba(139, 92, 246, 0.12) 100%),
    var(--bg-deep);
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
}

.vr-demo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.vr-demo-strip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin: 8px 0 6px;
}

.vr-demo-strip-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
}

.vr-demo-strip-compact {
  padding: 28px 0;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.vr-demo-strip-compact .vr-demo-strip-inner {
  padding: 0 28px;
  justify-content: center;
  text-align: center;
}

.vr-demo-strip-compact .vr-demo-strip-text p { margin: 0 auto; }

.zone-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.zone-btns .btn { width: 100%; margin-top: 0 !important; }

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.booking-actions .btn { flex: 1; min-width: 200px; }

.vr-label-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 8px 18px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
  animation: vrDemoGlow 2.5s ease-in-out infinite;
  transition: var(--transition);
}

.vr-label-btn:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.05);
}

.sketchfab-vr .vr-label { display: none; }

.price-card .btn-vr-demo {
  width: 100%;
  margin-top: 12px;
}

.footer-vr-demo {
  display: inline-flex;
  margin-top: 0 !important;
}

.marquee .marquee-vr-demo {
  color: var(--purple);
  cursor: pointer;
  transition: color 0.2s;
}

.marquee .marquee-vr-demo:hover { color: var(--cyan); }

/* VR Demo Modal */
.vr-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.vr-demo-modal.open {
  opacity: 1;
  visibility: visible;
}

.vr-demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.vr-demo-panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.3);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vr-demo-modal.open .vr-demo-panel {
  transform: scale(1) translateY(0);
}

.vr-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
}

.vr-demo-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 8px 0 6px;
}

.vr-demo-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vr-demo-close {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-deep);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.vr-demo-close:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.vr-demo-viewer {
  position: relative;
  flex: 1;
  min-height: 55vh;
  background: #000;
}

.vr-demo-viewer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vr-demo-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-deep);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.4s;
}

.vr-demo-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.vr-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vr-demo-footer a { color: var(--purple); }

.vr-demo-close-mobile {
  display: none;
}

/* Mobile: pełny ekran, tylko iframe + zamknij */
.vr-demo-modal.is-mobile {
  padding: 0;
  align-items: stretch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.vr-demo-modal.is-mobile .vr-demo-backdrop {
  background: #000;
  backdrop-filter: none;
}

.vr-demo-modal.is-mobile .vr-demo-panel {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  height: 100dvh;
  height: -webkit-fill-available;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  background: #000;
  -webkit-overflow-scrolling: touch;
}

.vr-demo-modal.is-mobile .vr-demo-header,
.vr-demo-modal.is-mobile .vr-demo-footer {
  display: none;
}

.vr-demo-modal.is-mobile .vr-demo-viewer {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.vr-demo-modal.is-mobile .vr-demo-close-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: max(12px, env(safe-area-inset-right, 12px));
  z-index: 10005;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.vr-demo-modal.is-mobile .vr-demo-viewer iframe {
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.btn-vr-demo,
.vr-demo-open,
.vr-label-btn,
.vr-demo-close-mobile {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

@media (max-width: 768px) {
  .vr-demo-viewer { min-height: 45vh; }
  .vr-demo-header, .vr-demo-footer { padding-left: 16px; padding-right: 16px; }
  .hero-actions .btn-vr-demo { width: 100%; }
  .vr-demo-float { padding: 14px; border-radius: 50%; }
  .vr-demo-float span { display: none; }
  .vr-demo-strip-inner { justify-content: center; text-align: center; }
  .booking-actions { flex-direction: column; }
  .booking-actions .btn { width: 100%; }

  /* Mniej obciążenia GPU — gogle 3D tylko na desktop */
  .hero-3d-scene .sketchfab-hero,
  .vr-showcase-3d .sketchfab-arena {
    display: none;
  }
}

.vr-headset-hero { width: 320px; height: 320px; }
.vr-headset-large { width: 360px; height: 360px; }
.vr-headset-large .vr-front { width: 260px; height: 150px; transform: translateZ(55px); }
.vr-headset-large .vr-lens { width: 65px; height: 65px; }
.vr-orbit-slow { animation-duration: 25s; }

.gradient-text-vr {
  background: linear-gradient(135deg, #a78bfa, #ec4899, #00ffc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vr-back {
  width: 200px;
  height: 120px;
  background: linear-gradient(145deg, #12121c, #0a0a12);
  border-radius: 40px;
  transform: rotateY(180deg) translateZ(40px);
}

.vr-top {
  width: 200px;
  height: 80px;
  background: linear-gradient(180deg, #1e1e30, #141420);
  transform: rotateX(90deg) translateZ(40px);
  border-radius: 20px 20px 0 0;
}

.vr-bottom {
  width: 200px;
  height: 80px;
  background: #0a0a12;
  transform: rotateX(-90deg) translateZ(80px);
  border-radius: 0 0 20px 20px;
}

.vr-left {
  width: 80px;
  height: 120px;
  background: linear-gradient(90deg, #141420, #1a1a2e);
  transform: rotateY(-90deg) translateZ(100px);
  border-radius: 20px 0 0 20px;
}

.vr-right {
  width: 80px;
  height: 120px;
  background: linear-gradient(-90deg, #141420, #1a1a2e);
  transform: rotateY(90deg) translateZ(100px);
  border-radius: 0 20px 20px 0;
}

.vr-lens {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.4) 0%, rgba(139, 92, 246, 0.3) 40%, #0a0a12 70%);
  border: 2px solid rgba(0, 255, 200, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.4), inset 0 0 15px rgba(0, 255, 200, 0.2);
  animation: lensPulse 2s ease-in-out infinite;
}

.vr-lens-r { animation-delay: 0.5s; }

@keyframes lensPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 200, 0.4), inset 0 0 15px rgba(0, 255, 200, 0.2); }
  50% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.6), inset 0 0 25px rgba(0, 255, 200, 0.4); }
}

.vr-bridge {
  position: absolute;
  top: 35px;
  width: 20px;
  height: 8px;
  background: rgba(0, 255, 200, 0.3);
  border-radius: 4px;
}

.vr-sensor {
  position: absolute;
  top: 15px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.5s ease-in-out infinite;
}

.vr-strap {
  position: absolute;
  width: 30px;
  height: 100px;
  background: linear-gradient(180deg, #2a2a3a, #1a1a28);
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  transform: translateY(-50%);
}

.vr-strap-l { left: -25px; border-radius: 15px 0 0 15px; transform: translateY(-50%) rotateY(-30deg); }
.vr-strap-r { right: -25px; border-radius: 0 15px 15px 0; transform: translateY(-50%) rotateY(30deg); }

.vr-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.vr-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  animation: particleOrbit 6s linear infinite;
}

.vr-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.vr-particles span:nth-child(2) { top: 80%; left: 10%; animation-delay: 1s; background: var(--purple); }
.vr-particles span:nth-child(3) { top: 30%; right: 5%; animation-delay: 2s; }
.vr-particles span:nth-child(4) { bottom: 20%; right: 25%; animation-delay: 0.5s; background: var(--pink); }
.vr-particles span:nth-child(5) { top: 50%; left: 0; animation-delay: 1.5s; }
.vr-particles span:nth-child(6) { bottom: 10%; left: 50%; animation-delay: 2.5s; background: var(--purple); }

@keyframes particleOrbit {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(20px, -30px) scale(1.5); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
}

/* Floating 3D Objects */
.floating-objects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.float-obj {
  position: absolute;
  transform-style: preserve-3d;
}

.ps-controller {
  top: 20%;
  left: 8%;
  width: 80px;
  height: 50px;
  animation: floatDrift 6s ease-in-out infinite;
}

.ctrl-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a3a, #1a1a28);
  border-radius: 25px 25px 15px 15px;
  border: 1px solid rgba(0, 112, 209, 0.4);
  box-shadow: 0 0 20px rgba(0, 112, 209, 0.2);
  transform: rotateY(-20deg) rotateX(10deg);
  animation: ctrlSpin 12s linear infinite;
}

.ctrl-stick-l, .ctrl-stick-r {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 50%;
  border: 2px solid #0070d1;
  top: 12px;
}

.ctrl-stick-l { left: 12px; }
.ctrl-stick-r { right: 12px; }

@keyframes ctrlSpin {
  0% { transform: rotateY(-20deg) rotateX(10deg) rotateZ(0deg); }
  100% { transform: rotateY(-20deg) rotateX(10deg) rotateZ(360deg); }
}

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.hex-chip {
  bottom: 25%;
  left: 12%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(0, 255, 200, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatDrift 5s ease-in-out infinite reverse;
}

.hex-chip span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--cyan);
}

.orb {
  border-radius: 50%;
  filter: blur(1px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 12px;
  height: 12px;
  top: 30%;
  right: 25%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.orb-2 {
  width: 8px;
  height: 8px;
  bottom: 35%;
  right: 15%;
  background: var(--purple);
  box-shadow: 0 0 15px var(--purple);
  animation-delay: 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  33% { transform: translate(-15px, 20px); opacity: 1; }
  66% { transform: translate(10px, -10px); opacity: 0.8; }
}

.hero-line-sm {
  font-size: 0.55em !important;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 8px;
}

.glitch-wrap .gradient-text {
  position: relative;
}

.glitch-wrap .gradient-text::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: glitch 4s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { opacity: 0; transform: translate(0); }
  92% { opacity: 0.8; transform: translate(-3px, 2px); }
  94% { opacity: 0; transform: translate(3px, -2px); }
  96% { opacity: 0.6; transform: translate(-2px, -1px); }
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 200, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 200, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  padding: 120px 24px 80px;
  grid-column: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.5); }
  50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 8px rgba(0, 255, 200, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero-3d-scene {
  grid-column: 2;
  grid-row: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(12, 12, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.stat {
  padding: 0 28px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- Sections ---- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Zones ---- */
.zones {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.zone-card {
  position: relative;
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.zone-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.zone-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.7) saturate(1.2);
}

.zone-card:hover .zone-img img {
  transform: scale(1.1);
  filter: brightness(0.85) saturate(1.3);
}

.zone-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-elevated) 100%);
}

.zone-card .zone-content {
  padding: 28px 32px 32px;
  flex: 1;
}

.zone-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
}

.zone-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.zone-card:hover .zone-bg { opacity: 1; }

.zone-pc .zone-bg { background: radial-gradient(circle at 30% 30%, rgba(0, 255, 200, 0.08), transparent 60%); }
.zone-ps .zone-bg { background: radial-gradient(circle at 30% 30%, rgba(0, 112, 209, 0.1), transparent 60%); }
.zone-vr .zone-bg { background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.1), transparent 60%); }
.zone-9d .zone-bg { background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.1), transparent 60%); }

.zone-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s;
}

.zone-card:hover .zone-glow { opacity: 0.4; }

.zone-pc .zone-glow { background: var(--cyan); }
.zone-ps .zone-glow { background: var(--ps-blue); }
.zone-vr .zone-glow { background: var(--purple); }
.zone-9d .zone-glow { background: var(--orange); }

.zone-content { position: relative; z-index: 1; }

.zone-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.zone-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.zone-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.zone-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.zone-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.zone-ps .zone-features li::before { color: #00a8e8; }
.zone-vr .zone-features li::before { color: var(--purple); }
.zone-9d .zone-features li::before { color: var(--orange); }

.zone-price {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  padding: 8px 16px;
  background: rgba(0, 255, 200, 0.08);
  border-radius: 8px;
}

.zone-ps .zone-price { color: #00a8e8; background: rgba(0, 168, 232, 0.1); }
.zone-vr .zone-price { color: var(--purple); background: rgba(139, 92, 246, 0.1); }
.zone-9d .zone-price { color: var(--orange); background: rgba(249, 115, 22, 0.1); }

/* ---- Mini Bar ---- */
.minibar {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}

.minibar-bg-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.minibar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.minibar-3d-card {
  position: relative;
  perspective: 1000px;
}

.minibar-img-stack {
  position: relative;
  transform: rotateY(-8deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.minibar-3d-card:hover .minibar-img-stack {
  transform: rotateY(0deg) rotateX(0deg);
}

.minibar-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.minibar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-img {
  position: relative;
  aspect-ratio: 4/3;
}

.img-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 200, 0.05) 50%, transparent 100%);
  animation: imgScan 3s linear infinite;
  pointer-events: none;
}

@keyframes imgScan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.sub-img {
  position: absolute;
  width: 140px;
  height: 100px;
  z-index: 2;
  animation: subFloat 4s ease-in-out infinite;
}

.sub-1 {
  bottom: -20px;
  right: -20px;
  border-color: rgba(0, 255, 200, 0.3);
}

.sub-2 {
  top: -15px;
  left: -15px;
  animation-delay: 1s;
  border-color: rgba(249, 115, 22, 0.3);
}

@keyframes subFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.holo-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
  animation: holoBorder 3s ease-in-out infinite;
}

@keyframes holoBorder {
  0%, 100% { border-color: rgba(0, 255, 200, 0.2); box-shadow: 0 0 20px rgba(0, 255, 200, 0.1); }
  50% { border-color: rgba(139, 92, 246, 0.4); box-shadow: 0 0 40px rgba(139, 92, 246, 0.2); }
}

.minibar-content .section-title { text-align: left; }

.minibar-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.minibar-list {
  margin-bottom: 36px;
}

.minibar-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.minibar-list li:last-child { border-bottom: none; }

.mb-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.minibar-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.minibar-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Marquee ---- */
.marquee-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.marquee {
  padding: 16px 0;
}

.marquee-rev .marquee-track {
  animation: marqueeRev 30s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marqueeRev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee-track .dot { color: var(--cyan); font-size: 0.6rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 200, 0.2);
}

.price-card.featured {
  border-color: rgba(0, 255, 200, 0.4);
  background: linear-gradient(180deg, rgba(0, 255, 200, 0.06) 0%, var(--bg-elevated) 40%);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-main);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.price-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 32px;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--cyan);
}

.price-amount .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  margin-bottom: 32px;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-features li:last-child { border-bottom: none; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  filter: brightness(0.75) saturate(1.1);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9) saturate(1.3);
}

.gallery-item.gi-1 { grid-column: span 2; grid-row: span 2; }
.gallery-item.gi-2 { grid-column: span 1; }
.gallery-item.gi-3 { grid-column: span 1; }
.gallery-item.gi-4 { grid-column: span 1; }
.gallery-item.gi-5 { grid-column: span 1; }
.gallery-item.gi-6 { grid-column: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Booking ---- */
.booking {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 100%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.08), transparent 70%);
  pointer-events: none;
}

.booking-info .section-header,
.booking-info .section-title { text-align: left; }

.booking-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 500;
  transition: gap 0.3s;
}

.contact-link:hover { gap: 16px; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(0, 255, 200, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

/* ---- Contacts ---- */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 40px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(0, 255, 200, 0.2);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p { color: var(--text-muted); }

.map-wrap {
  margin-top: 48px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) invert(0.92) contrast(1.1);
}

.map-overlay-corner {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(5, 5, 8, 0.85);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.map-overlay-corner::before {
  content: '📍 Warszawa, Polska';
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--cyan);
  color: #000;
  transform: translateY(-2px);
}

/* ---- Footer ---- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan); }

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.footer-copy a { color: var(--cyan); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.toast-text { font-size: 0.9rem; }

/* ---- Animations ---- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="zoom-in"] { transform: scale(0.9); }

[data-animate].visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { text-align: center; grid-column: 1; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-3d-scene { min-height: 350px; order: -1; grid-column: 1; }
  .hero-rings { right: 50%; }
  .floating-objects { display: none; }
  .minibar-layout { grid-template-columns: 1fr; }
  .minibar-content .section-title { text-align: center; }
  .minibar-content { text-align: center; }
  .minibar-list li { text-align: left; }

  .zones-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.gi-1,
  .gallery-item.gi-6 { grid-column: span 2; }
  .gallery-item { min-height: 180px; }
  .booking-wrapper { grid-template-columns: 1fr; padding: 40px; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat { padding: 0; }

  section { padding: 70px 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .zone-card { padding: 28px; }
  .booking-wrapper { padding: 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-1,
  .gallery-item.gi-6 { grid-column: span 1; }
  .hero-3d-scene { min-height: 280px; }
  .vr-headset-3d { transform: scale(0.8); }
  .sub-img { width: 100px; height: 70px; }
}

/* ---- WhatsApp ---- */
.btn-wa, .btn-wa-big {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4) !important;
}

.btn-wa:hover, .btn-wa-big:hover {
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6) !important;
  transform: translateY(-2px);
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 14px;
  margin-top: 24px;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.8); }
}

.btn-sm { padding: 10px 18px; font-size: 0.65rem; margin-top: 16px; }

.zone-vr-featured {
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.zone-badge-vr {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.zone-content .btn { width: 100%; margin-top: 16px; }

/* ---- VR Showcase ---- */
.vr-showcase {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.vr-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 255, 200, 0.08) 0%, transparent 50%),
    var(--bg-card);
}

.section-tag-vr { color: var(--purple); }

.vr-demo-header-cta { margin-top: 24px; }

.vr-showcase-header {
  text-align: center;
}

.vr-showcase-header .vr-demo-header-cta {
  margin-left: auto;
  margin-right: auto;
}

.vr-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.vr-showcase-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.vr-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.vr-spec {
  padding: 16px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  text-align: center;
  min-width: 120px;
}

.vr-spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--purple);
  margin-bottom: 4px;
}

.vr-spec span { font-size: 0.8rem; color: var(--text-muted); }

.vr-glow-purple { background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%) !important; }

.vr-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}

.vr-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

button.vr-photo {
  padding: 0;
  margin: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

button.vr-photo.vp-main:hover {
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 0 36px rgba(139, 92, 246, 0.35);
}

button.vr-photo.vp-main span {
  color: #e9d5ff;
  background: linear-gradient(to top, rgba(88, 28, 135, 0.95), transparent);
}

.vr-photo.vp-main {
  grid-row: span 2;
  grid-column: span 1;
}

.vr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.8) saturate(1.2);
}

.vr-photo:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.3); }

.vr-photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.vr-games {
  text-align: center;
  padding: 40px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
}

.vr-games-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.vr-games h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.vr-games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.vr-games-tags span {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.vr-games-tags span:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ---- Bar Menu ---- */
.bar-menu {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 100%);
  padding: 100px 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 14px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover { border-color: rgba(0, 255, 200, 0.3); color: var(--text); }

.menu-tab.active {
  background: rgba(0, 255, 200, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.15);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: menuFade 0.4s ease; }

@keyframes menuFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-item:hover {
  border-color: rgba(0, 255, 200, 0.2);
  transform: translateX(4px);
}

.menu-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-item p { font-size: 0.85rem; color: var(--text-muted); }

.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
  white-space: nowrap;
}

.menu-free { color: var(--purple); font-size: 0.85rem; }

.menu-bar-photo {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21/9;
}

.menu-bar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.menu-bar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.menu-bar-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.menu-bar-overlay p { color: var(--text-muted); }

/* ---- Gallery filters ---- */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gf {
  padding: 10px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.gf:hover, .gf.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 255, 200, 0.08);
}

.gallery-extended {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.gallery-extended .gi-1 { grid-column: span 2; grid-row: span 2; min-height: 320px; }
.gallery-extended .gallery-item { min-height: 160px; }
.gallery-item.hidden { display: none; }

/* ---- Booking WhatsApp ---- */
.booking-wa {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding: 60px !important;
}

.booking-wa-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon-big {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.1));
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  color: #25d366;
  animation: waIconPulse 2s ease-in-out infinite;
}

.wa-icon-big svg { width: 60px; height: 60px; }

@keyframes waIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.contact-wa {
  color: #25d366 !important;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---- Photo Showcases ---- */
.photo-showcase { padding: 0 0 100px; }
.photo-showcase.pc-hall { background: var(--bg-deep); }
.photo-showcase.bar-lounge { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%); }

.showcase-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 60px;
}

.showcase-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.2);
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, rgba(5,5,8,0.3) 50%, transparent 100%);
}

.showcase-hero-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 12px 0;
}

.showcase-hero-overlay p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
}

.showcase-hero-bar img { filter: brightness(0.5) saturate(1.3); }

.rig-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.rig-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  transition: var(--transition);
}

.rig-spec:hover {
  border-color: rgba(0, 255, 200, 0.3);
  transform: translateY(-4px);
}

.rig-icon { font-size: 1.5rem; }

.rig-spec strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--cyan);
}

.rig-spec span { font-size: 0.75rem; color: var(--text-muted); }

.mosaic-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.mosaic-title-vr { color: var(--text); }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-bottom: 40px;
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  filter: brightness(0.8) saturate(1.15);
}

.mosaic-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.3);
}

.mosaic-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.mosaic-item:hover span { opacity: 1; }

.mosaic-item.mi-wide { grid-column: span 2; }
.mosaic-item.mi-tall { grid-row: span 2; }

.mosaic-vr .mosaic-item { border-color: rgba(139, 92, 246, 0.2); }
.mosaic-vr .mosaic-item span { color: #c4b5fd; }
.mosaic-bar .mosaic-item { border-color: rgba(249, 115, 22, 0.15); }
.mosaic-bar .mosaic-item span { color: #fdba74; }

.showcase-cta { text-align: center; margin-top: 20px; }

.vr-photo-grid-big {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 140px);
}

.vr-photo-grid-big .vp-main { grid-row: span 2; grid-column: span 2; }

.menu-photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.menu-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

.menu-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s;
}

.menu-photo-card:hover img { transform: scale(1.1); }

.menu-photo-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  color: var(--cyan);
}

/* Mega Gallery */
.gallery-mega {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}

.gallery-mega .gi-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-mega .gallery-item { min-height: 0; }

@media (max-width: 1024px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .mosaic-item.mi-wide { grid-column: span 2; }
  .vr-photo-grid-big { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .vr-photo-grid-big .vp-main { grid-column: span 2; grid-row: span 1; min-height: 220px; }
  .menu-photos-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-mega { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-mega .gi-hero { grid-column: span 2; grid-row: span 1; min-height: 280px; }

  .vr-showcase-layout { grid-template-columns: 1fr; }
  .vr-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-photo.vp-main { grid-row: span 1; grid-column: span 2; min-height: 200px; }
  .menu-grid { grid-template-columns: 1fr; }
  .booking-wa { grid-template-columns: 1fr !important; text-align: center; }
  .booking-wa-visual { margin-bottom: 24px; }
}

@media (max-width: 768px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .vr-demo-float { bottom: 96px; left: 20px; }
  .vr-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .vr-photo.vp-main { grid-column: span 1; }
  .gallery-extended { grid-template-columns: 1fr; }
  .gallery-extended .gi-1 { grid-column: span 1; grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
