/* ══════════════════════════════════════════════
   VR Gaming — Las Vegas
   Main Stylesheet
   ══════════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('/fonts/Outfit-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/SpaceMono-Regular-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/SpaceMono-Bold-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DESIGN TOKENS ── */
:root {
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00e5;
  --neon-yellow: #ffe600;
  --bg-deep: #0a0a0f;
  --bg-card: #12121c;
  --bg-card-hover: #1a1a2e;
  --text-primary: #eeeef0;
  --text-muted: #8888a0;
  --border-subtle: rgba(255,255,255,0.06);
  --glass: rgba(18,18,28,0.85);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 14px 24px;
  min-height: 44px;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* ── PAGE WRAPPER ── */
.page-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  padding: 2px;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links a[aria-current="page"] { color: var(--neon-cyan); }

/* ── HAMBURGER TOGGLE ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              opacity 0.2s ease,
              background 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--neon-cyan);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--neon-cyan);
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background:
    linear-gradient(to bottom, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.8) 60%, rgba(10,10,15,0.95) 100%),
    url('/img/hero-bg.webp') center top / cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,240,255,0.08);
  border: 1px solid rgba(0,240,255,0.15);
  color: var(--neon-cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.hero-logo {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  object-fit: cover;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
  animation: fadeInDown 0.8s ease-out;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 48px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-cyan);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 44px;
}
.filter-btn:hover { border-color: rgba(0,240,255,0.3); color: var(--text-primary); }
.filter-btn.active {
  background: rgba(0,240,255,0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ── VENUE CARDS ── */
.venues-grid {
  display: grid;
  gap: 20px;
}
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 30px;
  transition: all 0.35s ease;
  cursor: default;
  animation: fadeInUp 0.6s ease-out both;
}
.venue-card:hover {
  background: linear-gradient(135deg, rgba(0,240,255,0.03), rgba(255,0,229,0.03)), var(--bg-card);
  border-color: rgba(0,240,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,240,255,0.04);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.venue-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.venue-name a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
  min-height: 44px;
  transition: color 0.2s;
}
.venue-name a:hover { color: var(--neon-cyan); }
.venue-location-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--neon-magenta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,230,0,0.08);
  border: 1px solid rgba(255,230,0,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.rating-badge .star { color: var(--neon-yellow); font-size: 0.85rem; }
.rating-badge .num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--neon-yellow);
}
.rating-badge .count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.venue-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.meta-tag svg { width: 13px; height: 13px; opacity: 0.6; }

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.venue-address {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neon-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
  min-height: 44px;
  padding: 8px 0;
}
.card-cta:hover { gap: 10px; }
.card-cta svg { width: 14px; height: 14px; }

/* ── CARD PHOTOS ── */
.card-photo {
  display: block;
  width: calc(100% + 60px);
  margin: -28px -30px 20px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.card-collage {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 100px 100px;
  gap: 3px;
  width: calc(100% + 60px);
  margin: -28px -30px 20px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.card-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-collage img:first-child {
  grid-row: span 2;
}

/* ── CARD ACTIONS ── */
.card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-cta-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.25);
  color: var(--neon-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  min-height: 44px;
  transition: background 0.2s, border-color 0.2s;
}
.card-cta-book:hover {
  background: rgba(0,240,255,0.18);
  border-color: var(--neon-cyan);
}
.card-cta-book svg { width: 14px; height: 14px; }

/* ── REVIEW HIGHLIGHTS ── */
.review-highlight {
  background: rgba(255,255,255,0.025);
  border-left: 2px solid var(--neon-cyan);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 14px 0 18px;
  font-size: 0.84rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── EXPERIENCE TYPE BADGES ── */
.exp-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.exp-type.premium {
  background: rgba(0,240,255,0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0,240,255,0.2);
}
.exp-type.free-roam {
  background: rgba(255,0,229,0.08);
  color: var(--neon-magenta);
  border: 1px solid rgba(255,0,229,0.2);
}
.exp-type.rides {
  background: rgba(255,230,0,0.08);
  color: var(--neon-yellow);
  border: 1px solid rgba(255,230,0,0.2);
}
.exp-type.arcade {
  background: rgba(100,255,100,0.08);
  color: #66ff88;
  border: 1px solid rgba(100,255,100,0.2);
}
.exp-type.immersive {
  background: rgba(180,100,255,0.1);
  color: #c080ff;
  border: 1px solid rgba(180,100,255,0.2);
}

/* ── ABOUT SECTION ── */
.about-section {
  margin-top: 56px;
  padding: 36px 0;
}
.about-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.about-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 700px;
}
.about-link {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  padding: 14px 4px;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 60px;
}
footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
footer a { color: var(--neon-cyan); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-note {
  font-size: 0.75rem;
  color: #808098;
  margin-top: 8px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { transform: translateY(-12px); }
  to { transform: translateY(0); }
}
@keyframes fadeInUp {
  from { transform: translateY(20px); }
  to { transform: translateY(0); }
}

.venue-card:nth-child(1) { animation-delay: 0.1s; }
.venue-card:nth-child(2) { animation-delay: 0.2s; }
.venue-card:nth-child(3) { animation-delay: 0.3s; }
.venue-card:nth-child(4) { animation-delay: 0.35s; }
.venue-card:nth-child(5) { animation-delay: 0.4s; }
.venue-card:nth-child(6) { animation-delay: 0.45s; }
.venue-card:nth-child(7) { animation-delay: 0.5s; }
.venue-card:nth-child(8) { animation-delay: 0.55s; }
.venue-card:nth-child(9) { animation-delay: 0.6s; }
.venue-card:nth-child(10) { animation-delay: 0.65s; }

/* ── VENUE DETAIL PAGE ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--neon-cyan); }
.breadcrumb .separator { opacity: 0.4; }

.venue-detail {
  padding: 40px 0 20px;
}
.venue-detail-name {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.venue-detail-location {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon-magenta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.venue-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,230,0,0.08);
  border: 1px solid rgba(255,230,0,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.venue-detail-rating .star { color: var(--neon-yellow); font-size: 1rem; }
.venue-detail-rating .num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neon-yellow);
}
.venue-detail-rating .count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
}
.info-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.info-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.venue-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 700px;
}

.venue-reviews { margin-bottom: 36px; }
.venue-reviews-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.venue-cta-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 44px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 44px;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(0,240,255,0.3); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 0;
  min-height: 44px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--neon-cyan); }
.back-link svg { width: 14px; height: 14px; }

/* ── VENUE GALLERY ── */
.venue-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 180px 180px;
  grid-auto-rows: 150px;
  gap: 6px;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.venue-gallery img:first-child {
  grid-row: span 2;
}

/* ── KNOW BEFORE YOU GO ── */
.know-before-you-go {
  margin-bottom: 36px;
}
.know-before-you-go h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tip {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
}
.tip-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.tip-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ── REVIEW LINK ── */
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neon-cyan);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  transition: opacity 0.2s;
}
.review-link:hover { opacity: 0.8; }

/* ── COMPARISON TABLE ── */
.comparison {
  margin-top: 48px;
  margin-bottom: 16px;
  overflow: hidden;
}
.comparison h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  max-width: 100%;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table thead {
  background: rgba(0,240,255,0.06);
  border-bottom: 1px solid rgba(0,240,255,0.15);
}
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table td {
  padding: 12px 16px;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
}
.comparison-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}
.comparison-table tbody tr:hover {
  background: rgba(0,240,255,0.03);
}
.comparison-table a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.comparison-table a:hover { color: var(--neon-cyan); }
.comparison-table .star {
  color: var(--neon-yellow);
  font-size: 0.85rem;
}

/* ── MAPS ── */
.venue-map {
  margin-top: 48px;
  margin-bottom: 16px;
}
.venue-map h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.venue-map-container {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.detail-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 24px;
}
.gm-style .gm-style-iw-c {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 10px !important;
  padding: 0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}
.gm-style .gm-style-iw-d {
  overflow: auto !important;
  padding: 14px 18px !important;
}
.gm-style .gm-style-iw-tc::after {
  background: var(--bg-card) !important;
}
.gm-style .gm-ui-hover-effect {
  filter: invert(1) !important;
}
.map-iw-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.map-iw-rating {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.map-iw-rating .star {
  color: var(--neon-yellow);
}
.map-iw-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-decoration: none;
}
.map-iw-link:hover { opacity: 0.8; }

/* ── GUIDE PAGE ── */
.guide-content {
  padding: 40px 0 20px;
  max-width: 720px;
  overflow: hidden;
}
.guide-content h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.guide-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}
.guide-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-content ol,
.guide-content ul {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}
.guide-content a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  padding: 10px 2px;
}

/* ── GUIDE: TABLE OF CONTENTS ── */
.guide-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.guide-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.guide-toc ol {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}
.guide-toc li {
  margin-bottom: 6px;
}
.guide-toc a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 4px 0;
  display: inline-block;
  min-height: 44px;
  line-height: 2.2;
}
.guide-toc a:hover { text-decoration: underline; }

/* ── GUIDE: QUICK-PICK ── */
.guide-quick-pick {
  margin-bottom: 40px;
}
.guide-quick-pick h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.quick-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.quick-pick-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.quick-pick-card:hover {
  border-color: rgba(0,240,255,0.3);
  box-shadow: 0 0 16px rgba(0,240,255,0.06);
}
.quick-pick-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quick-pick-venue {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}
.quick-pick-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.quick-pick-detail .star {
  color: var(--neon-yellow);
}

/* ── GUIDE: RECOMMENDATION CARDS ── */
.guide-pick {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
}
.guide-pick:last-of-type {
  border-bottom: none;
}
.guide-pick-img {
  width: 280px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.guide-pick-content {
  flex: 1;
  min-width: 0;
}
.guide-pick-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.guide-pick-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.guide-pick-rating {
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.guide-pick-rating .star {
  color: var(--neon-yellow);
}
.guide-pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.guide-pick-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 4px 12px;
}
.guide-pick p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.guide-pick-best-for {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.guide-pick-best-for strong {
  font-style: normal;
  color: var(--neon-cyan);
}
.guide-pick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neon-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  min-height: 44px;
}
.guide-pick-link:hover { opacity: 0.8; }

/* ── GUIDE: FAQ ── */
.guide-faq {
  margin-top: 40px;
  margin-bottom: 32px;
}
.guide-faq h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--neon-cyan);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 0 16px;
}
.faq-item .faq-answer a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero { padding: 50px 0 40px; }
  .stats-bar { gap: 24px; }
  .stat-num { font-size: 1.3rem; }
  .logo-text { display: none; }
  .card-top { flex-direction: column; gap: 10px; }
  .venue-card { padding: 22px 20px; }
  .card-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .venue-cta-section { flex-direction: column; }
  .venue-cta-section a { text-align: center; justify-content: center; }

  /* Mobile card photos */
  .card-photo {
    width: calc(100% + 40px);
    margin: -22px -20px 16px;
    height: 160px;
  }
  .card-collage {
    width: calc(100% + 40px);
    margin: -22px -20px 16px;
    grid-template-rows: 80px 80px;
  }

  /* Mobile venue gallery — horizontal scroll */
  .venue-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    border-radius: 12px;
  }
  .venue-gallery img {
    flex: 0 0 80%;
    height: 200px;
    scroll-snap-align: start;
    border-radius: 12px;
  }
  .venue-gallery img:first-child {
    min-height: auto;
  }

  /* Mobile card actions */
  .card-actions { flex-direction: column; align-items: flex-start; }

  /* Mobile tips grid */
  .tips-grid { grid-template-columns: 1fr; }

  /* Mobile guide page */
  .guide-pick { flex-direction: column; }
  .guide-pick-img { width: 100%; height: 180px; }
  .quick-pick-grid { grid-template-columns: 1fr; }

  /* Mobile comparison table */
  .comparison-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--bg-deep);
    z-index: 1;
  }

  /* Mobile maps */
  .venue-map-container { height: 300px; }
  .detail-map { height: 220px; }

  /* Mobile nav */
  nav { position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 100;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1),
                padding 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .nav-links.open {
    max-height: 300px;
    padding: 8px 24px 16px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.03);
  }
  .nav-links li {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.open li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    min-height: 44px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links li:last-child a { border-bottom: none; }
}

/* ── 404 ERROR PAGE ── */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 48px 24px;
}
.error-code {
  font-family: 'Space Mono', monospace;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.error-page h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.error-message {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-actions .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.error-actions .cta-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
}
