/* LazerX styles — build 2026-05-30-v14 | eyebrow-fit + hero-78vh + insta-pulse */
:root {
  --bg-0: #02020a;
  --bg-1: #07021a;
  --laser-pink: #ff2e9a;
  --laser-magenta: #ff00cc;
  --laser-cyan: #00f0ff;
  --laser-blue: #4d9fff;
  --laser-violet: #b066ff;
  --laser-amber: #ffb800;
  --laser-green: #8cff1a;
  --ink: #eafff7;
  --ink-dim: rgba(234, 255, 247, 0.92);
  --grid: rgba(0, 240, 255, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-0);
  color: var(--ink);
  overflow-x: hidden;
  cursor: crosshair;
  line-height: 1.5;
}

/* ============ AMBIENT BACKGROUND ============ */
.cosmos {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 46, 154, 0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(176, 102, 255, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}

.grid-floor {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}

.grain {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

.scanline {
  position: fixed; left: 0; right: 0; height: 1px;
  z-index: 998; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--laser-cyan), transparent);
  box-shadow: 0 0 10px var(--laser-cyan);
  opacity: 0.25;
  animation: scan 14s linear infinite;
}
@keyframes scan {
  0% { top: -2%; opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.25; }
  100% { top: 102%; opacity: 0; }
}

/* ============ MOVING LASER BEAMS (hero only) ============ */
.laser-field {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}

.laser {
  position: absolute; height: 2px; border-radius: 2px;
  filter: blur(0.5px); transform-origin: left center; opacity: 0;
}
.laser::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 4px; filter: blur(8px); opacity: 0.8; background: inherit;
}
.laser.pink {
  background: linear-gradient(90deg, transparent 0%, var(--laser-pink) 30%, #fff 50%, var(--laser-pink) 70%, transparent 100%);
  box-shadow: 0 0 16px var(--laser-pink), 0 0 30px var(--laser-pink);
}
.laser.cyan {
  background: linear-gradient(90deg, transparent 0%, var(--laser-cyan) 30%, #fff 50%, var(--laser-cyan) 70%, transparent 100%);
  box-shadow: 0 0 16px var(--laser-cyan), 0 0 30px var(--laser-cyan);
}
.laser.magenta {
  background: linear-gradient(90deg, transparent 0%, var(--laser-magenta) 30%, #fff 50%, var(--laser-magenta) 70%, transparent 100%);
  box-shadow: 0 0 16px var(--laser-magenta), 0 0 30px var(--laser-magenta);
}
.laser.blue {
  background: linear-gradient(90deg, transparent 0%, var(--laser-blue) 30%, #fff 50%, var(--laser-blue) 70%, transparent 100%);
  box-shadow: 0 0 16px var(--laser-blue), 0 0 30px var(--laser-blue);
}
.laser.violet {
  background: linear-gradient(90deg, transparent 0%, var(--laser-violet) 30%, #fff 50%, var(--laser-violet) 70%, transparent 100%);
  box-shadow: 0 0 16px var(--laser-violet), 0 0 30px var(--laser-violet);
}

@keyframes shoot {
  0%   { width: 0; opacity: 0; }
  5%   { opacity: 1; }
  40%  { width: 140vw; opacity: 1; }
  100% { width: 140vw; opacity: 0; }
}

.laser:nth-child(1) { top: 18%; left: -10%; transform: rotate(8deg);   animation: shoot 3.6s ease-out 0s    infinite; }
.laser:nth-child(2) { top: 35%; left: -20%; transform: rotate(-12deg); animation: shoot 4.2s ease-out 1.0s  infinite; }
.laser:nth-child(3) { top: 55%; left: -10%; transform: rotate(15deg);  animation: shoot 3.8s ease-out 2.0s  infinite; }
.laser:nth-child(4) { top: 72%; left: -20%; transform: rotate(-7deg);  animation: shoot 4.5s ease-out 0.6s  infinite; }
.laser:nth-child(5) { top: 88%; left: -10%; transform: rotate(11deg);  animation: shoot 3.4s ease-out 2.6s  infinite; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 40px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(2,2,10,0.85) 0%, rgba(2,2,10,0.4) 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.brand-text {
  font-family: 'Audiowide', cursive;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.5);
  transition: text-shadow 0.4s;
}
.brand-x {
  color: var(--laser-pink);
  text-shadow: 0 0 16px var(--laser-pink), 0 0 28px rgba(255, 46, 154, 0.5);
}
.brand-arena {
  font-size: 0.5em;
  letter-spacing: 0.3em;
  color: var(--laser-cyan);
  align-self: center;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}
.brand:hover .brand-text {
  text-shadow: 0 0 20px var(--laser-cyan), 0 0 34px rgba(0, 240, 255, 0.5);
}

nav ul { list-style: none; display: flex; gap: 36px; }

nav a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
  color: var(--ink-dim); text-decoration: none;
  position: relative; padding: 6px 0; transition: color 0.3s;
}
nav a:hover { color: var(--laser-cyan); }
nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--laser-cyan); box-shadow: 0 0 8px var(--laser-cyan);
  transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

.book-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ink); background: transparent;
  border: 1px solid var(--laser-pink);
  padding: 10px 22px; text-decoration: none;
  position: relative; overflow: hidden; transition: all 0.3s;
  box-shadow: 0 0 12px rgba(255, 46, 154, 0.5), inset 0 0 12px rgba(255, 46, 154, 0.15);
}
.book-btn:hover {
  background: var(--laser-pink);
  box-shadow: 0 0 24px var(--laser-pink), 0 0 40px var(--laser-pink);
}

/* ============ HAMBURGER & MOBILE NAV ============ */
.nav-right {
  display: flex; align-items: center; gap: 14px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--laser-cyan);
  width: 42px; height: 42px;
  cursor: pointer; padding: 0;
  position: relative; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  transition: background 0.3s;
}
.nav-toggle:hover { background: rgba(0, 240, 255, 0.1); }
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--laser-cyan);
  margin: 4px auto;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 0 6px var(--laser-cyan);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(2, 2, 10, 0.6);
  backdrop-filter: blur(4px);
  z-index: 98; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============ TABLET: ≤ 1024px ============ */
@media (max-width: 1024px) {
  nav { padding: 14px 24px; }
  nav ul { gap: 22px; }
  nav a { font-size: 0.72rem; letter-spacing: 0.14em; }
  section { padding: 44px 24px; }
  .hero { padding: 80px 20px 56px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ MOBILE: ≤ 768px ============ */
@media (max-width: 768px) {
  nav { padding: 10px 14px; }

  /* Mobile nav menu becomes side panel */
  nav ul.nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px; height: 100vh;
    background: rgba(2, 2, 10, 0.97);
    backdrop-filter: blur(14px);
    border-left: 1px solid var(--laser-pink);
    box-shadow: -8px 0 50px rgba(255, 46, 154, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    z-index: 99;
  }
  nav ul.nav-menu.open { right: 0; }
  nav ul.nav-menu li {
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    width: 100%;
  }
  nav ul.nav-menu a {
    font-size: 0.95rem; letter-spacing: 0.22em;
    padding: 18px 0; display: block;
  }

  .nav-toggle { display: block; }

  .brand-text { font-size: 1.5rem; }

  .book-btn {
    font-size: 0.66rem; padding: 8px 14px; letter-spacing: 0.1em;
  }

  /* Hero */
  .hero { min-height: auto; padding: 100px 16px 56px; }
  .hero-logo { width: clamp(300px, 82vw, 400px); margin-bottom: 22px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); line-height: 1; }
  .hero p.tagline { font-size: 0.92rem; letter-spacing: 0.08em; margin-bottom: 36px; }
  .cta { font-size: 0.72rem; padding: 14px 26px; letter-spacing: 0.16em; }
  .cta-stack { gap: 12px; }

  /* Sections */
  section { padding: 30px 18px; }
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .section-eyebrow { font-size: 0.66rem; letter-spacing: 0.3em; }
  .section-eyebrow::before { width: 30px; }

  /* About */
  .stats { gap: 12px; padding-top: 28px; margin-top: 28px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.14em; }
  .about-visual { aspect-ratio: 1.1; }
  .about-logo { width: 65%; }

  /* Games */
  .games-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .game-card { padding: 30px 24px; }
  .game-icon { width: 120px; height: 120px; margin-bottom: 16px; }
  .game-card h3 { font-size: 1.3rem; }

  /* Combo offers */
  .combo-group-head h3 { font-size: 1.2rem; }
  .combo-addons { padding: 22px 18px; }
  .combo-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
  .gallery-item figcaption { font-size: 0.6rem; letter-spacing: 0.16em; bottom: 10px; left: 12px; }
  .gallery-note { font-size: 0.6rem; }

  /* Contact */
  .contact-grid { gap: 28px; margin-top: 40px; }
  .contact-card { padding: 26px 20px; }
  .contact-card h4 { font-size: 0.72rem; }
  .contact-row { padding: 12px 0; gap: 12px; }
  .contact-row .icon { width: 32px; height: 32px; }
  .contact-row .icon svg { width: 16px; height: 16px; }
  .contact-row .label { font-size: 0.6rem; }
  .contact-row .value { font-size: 0.92rem; word-break: break-word; }
  .map-tile { min-height: 360px; }
  .map-info { justify-content: center; text-align: center; }
  .map-info a.directions { width: 100%; justify-content: center; }

  /* Final CTA */
  .final-cta { padding: 44px 18px; margin: 14px auto; }
  .final-cta h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .final-cta p { font-size: 0.92rem; }

  /* Footer */
  footer { padding: 50px 18px 24px; }
  .footer-grid { gap: 24px; }
  .footer-grid h4 { font-size: 0.72rem; margin-bottom: 14px; }
  .footer-grid a, .footer-grid p { font-size: 0.88rem; }
  .footer-logo { height: 56px; }
  .copy {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.62rem;
    gap: 10px;
    letter-spacing: 0.14em;
  }

  /* Floating buttons */
  .float-stack { bottom: 70px; right: 16px; gap: 12px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 24px; height: 24px; }
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
}

/* ============ SMALL MOBILE: ≤ 480px ============ */
@media (max-width: 480px) {
  nav { padding: 8px 12px; }
  .nav-right { gap: 8px; }
  .nav-toggle { width: 38px; height: 38px; }
  .nav-toggle span { width: 16px; }
  .brand-text { font-size: 1.25rem; }
  .book-btn { font-size: 0.6rem; padding: 7px 11px; letter-spacing: 0.08em; }

  .hero h1 { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .hero p.tagline { font-size: 0.84rem; }
  .cta-stack {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 14px;
    align-items: stretch;
  }
  .cta {
    width: 100%;
    justify-content: center;
    /* Gentler angle on full-width mobile buttons so they line up cleanly */
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }
  .stats > div { text-align: center; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.56rem; letter-spacing: 0.12em; }

  section { padding: 22px 14px; }

  .float-stack { bottom: 60px; right: 14px; }
  .float-btn { width: 48px; height: 48px; }
}

/* ============ TOUCH DEVICES — disable hover-only flourishes ============ */
@media (hover: none) {
  body { cursor: auto; }
}

/* ============ HERO ============ */
.hero {
  min-height: 78vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 88px 20px 64px;
  position: relative; text-align: center;
  overflow: hidden;
}

.hero > *:not(.laser-field) { position: relative; z-index: 2; }

.hero-logo {
  width: clamp(260px, 36vw, 440px);
  margin-bottom: 28px;
  filter:
    drop-shadow(0 0 24px rgba(255, 46, 154, 0.55))
    drop-shadow(0 0 40px rgba(0, 240, 255, 0.35));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.4em;
  color: var(--laser-cyan); margin-bottom: 24px;
  position: relative; padding: 8px 24px;
  border: 1px solid var(--laser-cyan);
  text-shadow: 0 0 10px var(--laser-cyan);
}
.eyebrow::before, .eyebrow::after {
  content: '◆'; margin: 0 12px; color: var(--laser-pink);
}

.hero h1 {
  font-family: 'Audiowide', cursive;
  font-size: clamp(2.4rem, 7.5vw, 6rem);
  font-weight: 400; line-height: 0.95; letter-spacing: 0.04em;
  margin-bottom: 28px; position: relative;
}

.hero h1 .word {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, var(--laser-pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 46, 154, 0.6));
  animation: glitch 4s infinite steps(1);
}
.hero h1 .word.cyan {
  background: linear-gradient(180deg, #fff 0%, var(--laser-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.6));
}
.hero h1 .word.green {
  background: linear-gradient(180deg, #fff 0%, var(--laser-green) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(140, 255, 26, 0.55));
}

@keyframes glitch {
  0%, 92%, 100% { transform: translate(0); }
  93% { transform: translate(-2px, 1px); }
  94% { transform: translate(2px, -1px); }
  95% { transform: translate(-1px, 2px); }
  96% { transform: translate(1px, 0); }
}

.hero p.tagline {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.12em; color: var(--ink-dim);
  max-width: 660px; margin-bottom: 48px;
  text-transform: uppercase; font-weight: 400;
}

.cta-stack {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}

.cta {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em;
  text-decoration: none; padding: 18px 38px;
  position: relative; display: inline-flex;
  align-items: center; gap: 10px; transition: all 0.3s;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.cta-primary {
  background: var(--laser-pink); color: #fff;
  box-shadow: 0 0 24px var(--laser-pink), 0 0 50px rgba(255, 46, 154, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 24px var(--laser-pink), 0 0 50px rgba(255, 46, 154, 0.4); }
  50% { box-shadow: 0 0 36px var(--laser-pink), 0 0 80px rgba(255, 46, 154, 0.7); }
}
.cta-primary:hover { background: #fff; color: var(--laser-pink); }

.cta-secondary {
  background: transparent; color: var(--ink);
  border: 1px solid var(--laser-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3), inset 0 0 16px rgba(0, 240, 255, 0.1);
}
.cta-secondary:hover {
  background: var(--laser-cyan); color: var(--bg-0);
  box-shadow: 0 0 30px var(--laser-cyan);
}

/* ============ SECTION DEFAULTS ============ */
section {
  padding: 52px 24px;
  position: relative; max-width: 1280px; margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.4em;
  color: var(--laser-pink); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 0 10px var(--laser-pink);
}
.section-eyebrow::before {
  content: ''; width: 50px; height: 1px;
  background: var(--laser-pink); box-shadow: 0 0 8px var(--laser-pink);
}

.section-title {
  font-family: 'Audiowide', cursive;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05; letter-spacing: 0.02em;
  margin-bottom: 24px; max-width: 18ch;
}
.section-title .accent {
  color: var(--laser-cyan); text-shadow: 0 0 20px var(--laser-cyan);
}

/* ============ ABOUT ============ */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
}

.about-visual {
  position: relative; aspect-ratio: 1;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background:
    radial-gradient(circle at center, rgba(255, 46, 154, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}
.about-visual::after {
  content: ''; position: absolute; inset: 20px;
  border: 2px dashed var(--laser-pink); border-radius: 50%;
  animation: spin 20s linear infinite reverse; opacity: 0.5;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-logo {
  width: 70%; position: relative; z-index: 1;
  filter: drop-shadow(0 0 30px rgba(255, 46, 154, 0.5)) drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
  animation: floaty 4s ease-in-out infinite;
}

.about-corners::before, .about-corners::after,
.about-visual > .corner {
  content: ''; position: absolute;
  width: 30px; height: 30px;
  border: 2px solid var(--laser-cyan);
}
.about-corners { position: absolute; inset: 0; pointer-events: none; }
.about-corners::before { content: ''; top: 0; left: 0; border-right: none; border-bottom: none; }
.about-corners::after  { content: ''; bottom: 0; right: 0; border-left: none; border-top: none; }
.corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }

.about-text p {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--ink-dim); margin-bottom: 18px;
}

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.stat-num {
  font-family: 'Audiowide', cursive;
  font-size: 2.2rem; color: var(--laser-pink);
  text-shadow: 0 0 12px var(--laser-pink);
  display: block; line-height: 1;
}
.stat-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--ink-dim); margin-top: 8px;
}

/* ============ GAMES (4 game offerings) ============ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

/* ---- Combo offer card (sits under the games grid, full width) ---- */
.game-combo-card {
  margin-top: 24px;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  border: 1px solid rgba(255, 46, 154, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 46, 154, 0.15);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  align-items: center;
  gap: 32px;
  text-align: left;
}
.game-combo-card .gcc-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.66rem; letter-spacing: 0.28em;
  color: var(--laser-pink); text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 10px var(--laser-pink);
}
.game-combo-card .gcc-name {
  font-family: 'Audiowide', cursive;
  font-size: 1.35rem; letter-spacing: 0.04em;
  color: var(--ink); margin: 0 0 6px;
}
.game-combo-card .gcc-includes {
  color: var(--ink-dim); margin: 0;
  font-size: 0.95rem; line-height: 1.55;
}
.game-combo-card .gcc-price {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 24px;
  border-left: 1px solid rgba(0, 240, 255, 0.18);
  border-right: 1px solid rgba(0, 240, 255, 0.18);
}
.game-combo-card .gcc-price-row {
  display: flex; align-items: baseline; gap: 18px;
  justify-content: space-between; min-width: 180px;
}
.game-combo-card .gcc-price-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.18em;
  color: var(--laser-cyan); text-transform: uppercase;
}
.game-combo-card .gcc-price-row.weekend .gcc-price-label { color: var(--laser-pink); }
.game-combo-card .gcc-price-val {
  font-family: 'Audiowide', cursive;
  font-size: 1.4rem; color: var(--ink);
}
.game-combo-card .gcc-book {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--laser-pink);
  padding: 14px 22px; text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 46, 154, 0.4);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.game-combo-card .gcc-book:hover {
  background: #fff; color: var(--laser-pink);
  box-shadow: 0 0 22px var(--laser-pink), 0 0 36px rgba(255, 46, 154, 0.4);
}
/* Mobile: stack vertically */
@media (max-width: 768px) {
  .game-combo-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px;
    text-align: center;
  }
  .game-combo-card .gcc-price {
    border-left: none; border-right: none;
    border-top: 1px solid rgba(0, 240, 255, 0.18);
    border-bottom: 1px solid rgba(0, 240, 255, 0.18);
    padding: 14px 0;
  }
  .game-combo-card .gcc-price-row { min-width: 0; }
  .game-combo-card .gcc-book { justify-self: center; }
}

.game-card {
  position: relative; padding: 40px 32px;
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.game-card::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), transparent);
  box-shadow: 0 0 12px var(--laser-pink);
  transition: left 0.6s ease;
}
.game-card:hover {
  border-color: var(--laser-pink); transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(255, 46, 154, 0.25);
}
.game-card:hover::before { left: 100%; }

.game-icon {
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.game-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.game-card h3 {
  font-family: 'Audiowide', cursive;
  font-size: 1.45rem; letter-spacing: 0.05em;
  margin-bottom: 14px; color: var(--ink);
}

.game-card p {
  color: var(--ink-dim); margin-bottom: 24px;
  font-size: 0.98rem; line-height: 1.7;
}

.game-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em;
  color: var(--laser-cyan); text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 240, 255, 0.15);
}
.game-meta span::before { content: '◆ '; color: var(--laser-pink); }

.game-book-btn {
  margin-top: auto;          /* pushes button to bottom of the card */
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: var(--laser-pink);
  border: none;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 14px rgba(255, 46, 154, 0.4);
}
.game-book-btn:link,
.game-book-btn:visited { color: #fff; text-decoration: none; }
.game-book-btn:hover {
  background: #fff;
  color: var(--laser-pink);
  box-shadow: 0 0 22px var(--laser-pink), 0 0 36px rgba(255, 46, 154, 0.4);
}
/* Add breathing room above the button */
.game-card .game-meta { margin-bottom: 20px; }

/* ---- Center the Games section (heading block + card content) ---- */
#games { text-align: center; }
#games .section-eyebrow { justify-content: center; }
#games .section-title { max-width: none; margin-left: auto; margin-right: auto; }
#games > p { margin-left: auto; margin-right: auto; }
#games .game-icon { margin-left: auto; margin-right: auto; }
#games .game-meta { justify-content: center; }

/* ---- Per-game pricing table ---- */
.game-pricing {
  margin-bottom: 20px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  background: rgba(2, 2, 10, 0.5);
}
.game-pricing-head,
.game-pricing-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
}
.game-pricing-head {
  background: rgba(0, 240, 255, 0.08);
  border-bottom: 1px solid rgba(0, 240, 255, 0.18);
}
.game-pricing-head span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laser-cyan);
  padding: 9px 12px;
}
.game-pricing-row {
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}
.game-pricing-row:last-of-type { border-bottom: none; }
.gp-col-dur {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 12px;
}
.gp-col-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 12px;
}
.gp-col-price.gp-weekend { color: var(--laser-pink); }
.game-pricing-head .gp-col-price:last-child { color: var(--laser-pink); }

.game-addons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
  background: rgba(255, 46, 154, 0.04);
}
.game-addon {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* ============ COMBO OFFERS ============ */
.combo-group { margin-top: 44px; }

.combo-group-head {
  margin-bottom: 22px;
  border-left: 3px solid var(--laser-pink);
  padding-left: 16px;
}
.combo-group-head h3 {
  font-family: 'Audiowide', cursive;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.combo-group-head span {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink-dim);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
/* Single combo offer: center it at a sensible width instead of stretching full-width */
#combos .combo-grid {
  max-width: 460px;
  margin: 0 auto;
}
/* Center the heading block so it balances above the single centered card */
#combos { text-align: center; }
#combos .section-eyebrow { justify-content: center; }
#combos .section-title { max-width: none; margin-left: auto; margin-right: auto; }
#combos > p { margin-left: auto; margin-right: auto; }

.combo-card {
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
}
.combo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.combo-card:hover {
  border-color: var(--laser-pink);
  transform: translateY(-5px);
  box-shadow: 0 12px 34px rgba(255, 46, 154, 0.22);
}
.combo-card:hover::before { opacity: 1; }

.combo-name {
  font-family: 'Audiowide', cursive;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.combo-includes {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.55;
  margin-bottom: 18px;
}

.combo-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  margin-bottom: 0;
}
.combo-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 4px 0;
}
.combo-price-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laser-cyan);
}
.combo-price-row.weekend .combo-price-label { color: var(--laser-pink); }
.combo-price-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.combo-cta {
  margin-top: 36px;
  text-align: center;
}

/* Add-ons */
.combo-addons {
  margin-top: 48px;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.05), rgba(0, 240, 255, 0.05));
  border: 1px dashed rgba(0, 240, 255, 0.3);
}
.combo-addons-title {
  font-family: 'Audiowide', cursive;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.addon-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 2, 10, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 10px 16px;
}
.addon-name {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.addon-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--laser-cyan);
}

.combo-note {
  margin-top: 28px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.dot {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--laser-pink);
  box-shadow: 0 0 12px var(--laser-pink);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--laser-pink);
  box-shadow: 0 0 12px var(--laser-pink);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============ LASER TAG FEATURE ============ */
.laser-feature .section-eyebrow { color: var(--laser-pink); }

.laser-feature-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.laser-video-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 46, 154, 0.35);
  box-shadow: 0 0 30px rgba(255, 46, 154, 0.15);
  aspect-ratio: 16 / 10;
}
.laser-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.laser-video-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), var(--laser-cyan), var(--laser-pink), transparent);
  box-shadow: 0 0 12px var(--laser-pink);
  z-index: 2;
}
.laser-video-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255, 46, 154, 0.9);
  padding: 6px 12px;
  box-shadow: 0 0 12px rgba(255, 46, 154, 0.6);
}

.laser-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.laser-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: block;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
/* First photo spans both rows on the left */
.laser-photo.lp-tall { grid-row: span 2; }
.laser-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.laser-photo:hover {
  border-color: var(--laser-pink);
  box-shadow: 0 8px 24px rgba(255, 46, 154, 0.3);
}
.laser-photo:hover img { transform: scale(1.07); }

.laser-feature-cta {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 860px) {
  .laser-feature-grid { grid-template-columns: 1fr; }
  .laser-video-wrap { aspect-ratio: 16 / 9; }
  .laser-photo-grid { grid-template-rows: auto; }
}
@media (max-width: 500px) {
  .laser-photo-grid { grid-template-columns: 1fr 1fr; }
  .laser-photo.lp-tall { grid-row: span 2; }
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(0, 240, 255, 0.2);
  overflow: hidden;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1),
              border-color 0.4s, box-shadow 0.4s;
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.05), rgba(0, 240, 255, 0.03));
}

.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-video-tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(255, 46, 154, 0.9);
  padding: 4px 9px;
  box-shadow: 0 0 10px rgba(255, 46, 154, 0.6);
}

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 2, 10, 0.85) 100%);
  pointer-events: none;
  opacity: 0; transition: opacity 0.4s;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: #fff; text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover {
  border-color: var(--laser-pink);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255, 46, 154, 0.3);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-note {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  margin-top: 28px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.gallery-note::before {
  content: '◆';
  color: var(--laser-cyan);
}

/* Gallery responsive overrides (placed here so they win over earlier media queries) */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
  .gallery-item figcaption { font-size: 0.6rem; letter-spacing: 0.16em; bottom: 10px; left: 12px; opacity: 1; transform: none; }
  .gallery-item::after { opacity: 1; }
  .gallery-note { font-size: 0.6rem; }

  /* Eyebrow: fit on one line within the viewport (overrides base .eyebrow defined earlier) */
  .eyebrow { font-size: clamp(0.5rem, 2.6vw, 0.6rem); letter-spacing: 0.14em; padding: 7px 12px; white-space: nowrap; max-width: calc(100vw - 24px); }
  .eyebrow::before, .eyebrow::after { margin: 0 5px; }
}

/* ============ BOOKING FORM ============ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  margin-top: 60px;
  align-items: start;
}

.booking-intro p {
  color: var(--ink-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.booking-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.booking-checklist li {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 10px 0;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.booking-checklist li::before {
  content: '▸';
  color: var(--laser-pink);
  font-size: 1.1rem;
  text-shadow: 0 0 8px var(--laser-pink);
}

.booking-cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  position: relative;
  overflow: hidden;
  padding: 48px 36px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
}
.booking-cta-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), var(--laser-cyan), var(--laser-pink), transparent);
  box-shadow: 0 0 12px var(--laser-pink);
}

.booking-cta-inner {
  text-align: center;
  max-width: 380px;
}

.booking-cta-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--laser-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25), inset 0 0 18px rgba(0, 240, 255, 0.12);
}
.booking-cta-icon svg {
  width: 36px; height: 36px;
  color: var(--laser-cyan);
}

.booking-cta-inner h3 {
  font-family: 'Audiowide', cursive;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.booking-cta-inner > p {
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.booking-cta-btn {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--laser-pink);
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px rgba(255, 46, 154, 0.5), 0 0 32px rgba(255, 46, 154, 0.25);
}
.booking-cta-btn:hover {
  background: #fff;
  color: var(--laser-pink);
  box-shadow: 0 0 28px var(--laser-pink), 0 0 50px rgba(255, 46, 154, 0.5);
}

.booking-cta-note {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-top: 16px;
  text-transform: uppercase;
}

/* ---- Party / enquiry form panel ---- */
.enquiry-panel {
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
}
.enquiry-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-cyan), var(--laser-pink), var(--laser-cyan), transparent);
  box-shadow: 0 0 12px var(--laser-cyan);
}

.enquiry-title {
  font-family: 'Audiowide', cursive;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.enquiry-sub {
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.enquiry-form { display: flex; flex-direction: column; gap: 14px; }

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.enq-group { display: flex; flex-direction: column; }

.enq-group label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--laser-cyan);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.enq-group input,
.enq-group select,
.enq-group textarea {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.98rem;
  background: rgba(2, 2, 10, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--ink);
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
  font-weight: 500;
}
.enq-group textarea { resize: vertical; min-height: 88px; }
.enq-group input:focus,
.enq-group select:focus,
.enq-group textarea:focus {
  border-color: var(--laser-pink);
  box-shadow: 0 0 12px rgba(255, 46, 154, 0.35);
  background: rgba(7, 2, 26, 0.8);
}
.enq-group input::placeholder,
.enq-group textarea::placeholder { color: rgba(234, 255, 247, 0.35); }
.enq-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--laser-cyan) 50%),
    linear-gradient(135deg, var(--laser-cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.enq-group select option { background: var(--bg-0); color: var(--ink); }

.enq-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.enquiry-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Email button — pink, takes the larger share of the row */
.enquiry-btn-email {
  flex: 1 1 60%;
  background: var(--laser-pink);
  box-shadow: 0 0 16px rgba(255, 46, 154, 0.45);
}
.enquiry-btn-email:hover:not(:disabled) {
  background: #fff;
  color: var(--laser-pink);
  box-shadow: 0 0 24px rgba(255, 46, 154, 0.7);
}
.enquiry-btn-email:disabled {
  background: rgba(255, 46, 154, 0.3);
  cursor: wait;
  box-shadow: none;
}

/* WhatsApp button — green */
.enquiry-btn-wa {
  flex: 1 1 40%;
  background: #25d366;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.45);
}
.enquiry-btn-wa:hover {
  background: #fff;
  color: #25d366;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.7);
}
.enquiry-btn-wa svg {
  width: 17px; height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

.enquiry-btn .spinner {
  display: none;
  width: 13px; height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}
.enquiry-btn.loading .spinner { display: inline-block; }
.enquiry-btn.loading .btn-text { opacity: 0.6; }

/* Honeypot — visually hidden but not display:none (bots skip display:none) */
.enq-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.enquiry-status {
  display: none;
  padding: 11px 14px;
  margin-top: 4px;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.45;
}
.enquiry-status.show { display: block; }
.enquiry-status.success {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid #39ff14;
  color: #39ff14;
}
.enquiry-status.error {
  background: rgba(255, 46, 154, 0.1);
  border: 1px solid var(--laser-pink);
  color: var(--laser-pink);
}

.enquiry-note {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin-top: 2px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 900px) {
  .booking-wrap { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .booking-cta-panel { padding: 38px 22px; }
  .booking-cta-inner h3 { font-size: 1.3rem; }
  .booking-cta-btn { padding: 16px 32px; font-size: 0.82rem; }
  .enquiry-panel { padding: 26px 20px; }
  .enq-row { grid-template-columns: 1fr; gap: 14px; }
  .enq-actions { flex-direction: column; }
}


/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-card {
  padding: 32px 28px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: linear-gradient(180deg, rgba(22, 12, 46, 0.92) 0%, rgba(12, 6, 28, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.45);
  position: relative;
}

.contact-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em;
  color: var(--laser-pink); margin-bottom: 22px;
  text-transform: uppercase;
}

.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}
.contact-row:last-child { border-bottom: none; }

.contact-row .icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--laser-cyan);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
.contact-row .icon svg { width: 18px; height: 18px; stroke: var(--laser-cyan); fill: none; stroke-width: 1.6; }

.contact-row .label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--ink-dim); text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-row .value { font-size: 1rem; color: var(--ink); }
.contact-row .value a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px dotted rgba(0, 240, 255, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.contact-row .value a:hover { color: var(--laser-pink); border-bottom-color: var(--laser-pink); }

.map-tile {
  height: 100%;
  min-height: 380px;
  position: relative;
  border: 1px solid rgba(255, 46, 154, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(2, 2, 10, 0.6);
}

.map-embed {
  flex: 1;
  position: relative;
  min-height: 300px;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Subtle dark tint so the bright map blends with the neon theme */
  filter: invert(0) contrast(1.05);
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 46, 154, 0.3);
  background: linear-gradient(180deg, rgba(7, 2, 26, 0.95), rgba(2, 2, 10, 0.98));
  flex-wrap: wrap;
}
.map-info h5 {
  font-family: 'Audiowide', cursive;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.map-info .addr {
  font-size: 0.88rem;
  color: var(--ink-dim);
  max-width: 34ch;
}
.map-info a.directions {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.16em;
  color: var(--laser-cyan); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--laser-cyan);
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}
.map-info a.directions:hover {
  background: var(--laser-cyan); color: var(--bg-0);
  box-shadow: 0 0 18px var(--laser-cyan);
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center; padding: 56px 24px;
  position: relative; margin: 20px auto;
  max-width: 1100px;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}
/* The #book wrapper section already gets padding from the inner .final-cta,
   so trim the outer section padding to avoid doubled-up whitespace. */
section#book {
  padding-top: 24px;
  padding-bottom: 24px;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), transparent);
  box-shadow: 0 0 8px var(--laser-pink);
  animation: sweep 3s ease-in-out infinite;
}
.final-cta::before { top: -1px; left: 20%; }
.final-cta::after  { bottom: -1px; right: 20%; animation-delay: 1.5s; }
@keyframes sweep {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.final-cta h2 {
  font-family: 'Audiowide', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.final-cta h2 span { color: var(--laser-pink); text-shadow: 0 0 16px var(--laser-pink); }
.final-cta p { color: var(--ink-dim); margin-bottom: 36px; letter-spacing: 0.06em; }

/* ============ FOOTER ============ */
footer {
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(2, 2, 10, 0.6);
}

.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-grid h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em;
  color: var(--laser-cyan); margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block; color: var(--ink-dim);
  text-decoration: none; font-size: 0.92rem;
  padding: 4px 0; transition: color 0.3s;
}
.footer-grid a:hover { color: var(--laser-pink); }

.footer-grid p { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.6; }

.footer-logo { height: 70px; margin-bottom: 14px; filter: drop-shadow(0 0 14px rgba(255, 46, 154, 0.4)); }

.copy {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--ink-dim); flex-wrap: wrap; gap: 12px;
}
.copy-links { display: flex; align-items: center; gap: 10px; }
.copy-sep { color: rgba(0, 240, 255, 0.3); }
.copy .terms-link,
.copy .copy-credit {
  color: var(--laser-cyan);
  text-decoration: none;
  border-bottom: 1px dotted var(--laser-cyan);
  padding-bottom: 1px;
  cursor: pointer;
  transition: color 0.2s;
}
.copy .terms-link:hover,
.copy .copy-credit:hover { color: var(--laser-pink); border-bottom-color: var(--laser-pink); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 10, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: linear-gradient(180deg, rgba(10, 4, 30, 0.98) 0%, rgba(2, 2, 10, 0.99) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.6);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--laser-pink), var(--laser-cyan), var(--laser-pink), transparent);
  box-shadow: 0 0 12px var(--laser-pink);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  flex-shrink: 0;
}
.modal-head h3 {
  font-family: 'Audiowide', cursive;
  font-size: 1.3rem;
  color: var(--ink);
}
.modal-close {
  background: none;
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--ink);
  width: 36px; height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover {
  background: var(--laser-pink);
  border-color: var(--laser-pink);
  color: #fff;
}

.modal-body {
  padding: 24px 26px 28px;
  overflow-y: auto;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-dim);
  line-height: 1.7;
}
.modal-body p { margin-bottom: 14px; font-size: 1rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--laser-cyan);
  margin: 20px 0 10px;
  letter-spacing: 0.05em;
}
.modal-body ul, .modal-body ol { margin: 10px 0 14px 22px; }
.modal-body li { margin-bottom: 7px; font-size: 1rem; }
.modal-body a { color: var(--laser-cyan); }

@media (max-width: 600px) {
  .modal-head { padding: 18px 20px; }
  .modal-head h3 { font-size: 1.1rem; }
  .modal-body { padding: 20px; }
  .copy { justify-content: center; text-align: center; }
}

.particle {
  position: fixed;
  width: 3px; height: 3px;
  background: var(--laser-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--laser-cyan);
  z-index: -1; pointer-events: none; opacity: 0.6;
  animation: drift 12s linear infinite;
}
@keyframes drift {
  0% { transform: translateY(110vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* Floating WhatsApp + Call buttons (stacked) */
.float-stack {
  position: fixed; bottom: 80px; right: 24px;
  display: flex; flex-direction: column; gap: 14px;
  z-index: 50;
}

.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-decoration: none; color: #fff;
  transition: transform 0.3s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1) rotate(-8deg); }
.float-btn svg { width: 28px; height: 28px; }

.float-whatsapp {
  background: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.7), 0 0 36px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.7), 0 0 36px rgba(37, 211, 102, 0.35); }
  50%      { box-shadow: 0 0 30px rgba(37, 211, 102, 1),   0 0 60px rgba(37, 211, 102, 0.55); }
}
/* Subtle ripple ring */
.float-whatsapp::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid #25D366;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.float-whatsapp svg { fill: #fff; }

.float-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 0 18px rgba(214, 36, 159, 0.55), 0 0 32px rgba(253, 89, 73, 0.35);
  animation: instaPulse 2.4s ease-in-out infinite;
}
@keyframes instaPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(214, 36, 159, 0.6),  0 0 32px rgba(253, 89, 73, 0.35); }
  50%      { box-shadow: 0 0 30px rgba(214, 36, 159, 1),    0 0 60px rgba(253, 89, 73, 0.55); }
}
/* Subtle ripple ring */
.float-instagram::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid #d6249f;
  animation: ripple 2s ease-out infinite;
}
.float-instagram svg { stroke: #fff; fill: none; }