/* ══════════════════════════════════════════════
   VR Gaming — Los Angeles
   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: #00d4ff;
  --neon-magenta: #ff8c38;
  --neon-yellow: #ffb800;
  --bg-deep: #0a0e1a;
  --bg-card: #111827;
  --bg-card-hover: #1e293b;
  --text-primary: #f0f0f5;
  --text-muted: #8892a8;
  --border-subtle: rgba(255,255,255,0.07);
  --glass: rgba(17,24,39,0.88);
}

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

html {
  scroll-padding-top: 80px;
}

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

/* ── 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;
  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,14,26,0.55) 0%, rgba(10,14,26,0.8) 60%, rgba(10,14,26,0.95) 100%),
    url('/img/VRGaming-LosAngles-BKG.png') 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,212,255,0.08);
  border: 1px solid rgba(0,212,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;
  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,212,255,0.3); color: var(--text-primary); }
.filter-btn.active {
  background: rgba(0,212,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,212,255,0.03), rgba(255,140,56,0.03)), var(--bg-card);
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,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-flex;
  align-items: center;
  padding: 12px 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,184,0,0.08);
  border: 1px solid rgba(255,184,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: 190px 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,212,255,0.1);
  border: 1px solid rgba(0,212,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,212,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,212,255,0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0,212,255,0.2);
}
.exp-type.free-roam {
  background: rgba(255,140,56,0.08);
  color: var(--neon-magenta);
  border: 1px solid rgba(255,140,56,0.2);
}
.exp-type.rides {
  background: rgba(255,184,0,0.08);
  color: var(--neon-yellow);
  border: 1px solid rgba(255,184,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);
}
.exp-type.entertainment {
  background: rgba(255,200,50,0.08);
  color: #ffc832;
  border: 1px solid rgba(255,200,50,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;
}
.support-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.support-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--neon-cyan), #00b8e6);
  color: var(--bg-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.btn-support svg { width: 18px; height: 18px; }
.btn-support:hover { opacity: 0.9; transform: scale(1.02); }
.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;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 14px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--neon-cyan); }

/* ── 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-card:nth-child(11) { animation-delay: 0.7s; }
.venue-card:nth-child(12) { animation-delay: 0.75s; }
.venue-card:nth-child(13) { animation-delay: 0.8s; }
.venue-card:nth-child(14) { animation-delay: 0.85s; }
.venue-card:nth-child(15) { animation-delay: 0.9s; }
.venue-card:nth-child(16) { animation-delay: 0.95s; }
.venue-card:nth-child(17) { animation-delay: 1.0s; }
.venue-card:nth-child(18) { animation-delay: 1.05s; }
.venue-card:nth-child(19) { animation-delay: 1.1s; }
.venue-card:nth-child(20) { animation-delay: 1.15s; }

/* ── 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,184,0,0.08);
  border: 1px solid rgba(255,184,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,212,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,212,255,0.06);
  border-bottom: 1px solid rgba(0,212,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,212,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: 0 !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-img {
  display: block;
  width: 260px;
  height: 90px;
  object-fit: cover;
  border-radius: 9px 9px 0 0;
}
.map-iw-body {
  padding: 12px 16px 14px;
}
.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; }

/* ── CONTROLS BAR (Sort + Near Me + Help Me Choose) ── */
.controls-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.sort-select-wrapper {
  position: relative;
}
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 36px 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.25s;
}
.sort-select:hover { border-color: rgba(0,212,255,0.3); }
.sort-select:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }
.sort-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}
.sort-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.near-me-btn, .help-choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  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;
  min-height: 44px;
  transition: all 0.25s;
}
.near-me-btn { margin-left: auto; }
.near-me-btn svg, .help-choose-btn svg { width: 16px; height: 16px; }
.near-me-btn:hover, .help-choose-btn:hover { border-color: rgba(0,212,255,0.3); color: var(--text-primary); }
.near-me-btn.active {
  background: rgba(0,212,255,0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.near-me-btn.loading { pointer-events: none; opacity: 0.7; }
.near-me-btn.loading svg { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── DISTANCE BADGE ── */
.distance-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  color: var(--neon-cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
  animation: fadeInUp 0.3s ease-out;
}

/* ── COMPARE TOGGLE ── */
.venue-card { position: relative; }
.compare-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10,14,26,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.25s;
}
.compare-toggle svg { width: 14px; height: 14px; }
.compare-toggle .compare-icon-checked { display: none; }
.compare-toggle:hover { border-color: rgba(0,212,255,0.3); color: var(--text-primary); }
.compare-toggle[aria-pressed="true"] {
  background: rgba(0,212,255,0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.compare-toggle[aria-pressed="true"] .compare-icon-unchecked { display: none; }
.compare-toggle[aria-pressed="true"] .compare-icon-checked { display: block; }
.venue-card.compare-selected { border-color: rgba(0,212,255,0.3); box-shadow: 0 0 20px rgba(0,212,255,0.06); }

/* ── COMPARE BAR ── */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,212,255,0.15);
  padding: 14px 24px;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.compare-bar[hidden] { display: none; }
.compare-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.compare-bar-venues { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.compare-pill-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
}
.compare-pill-remove svg { width: 12px; height: 12px; }
.compare-pill-remove:hover { color: var(--neon-cyan); }
.compare-bar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.compare-bar-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.compare-bar-count.shake { animation: headShake 0.5s ease-in-out; }
@keyframes headShake {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-4px); }
  30%, 60%, 90% { transform: translateX(4px); }
}
.compare-bar-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: opacity 0.2s;
}
.compare-bar-go:disabled { opacity: 0.4; cursor: not-allowed; }
.compare-bar-go:not(:disabled):hover { opacity: 0.9; }
.compare-bar-go svg { width: 14px; height: 14px; }
.compare-bar-clear {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.compare-bar-clear svg { width: 14px; height: 14px; }
.compare-bar-clear:hover { border-color: rgba(255,255,255,0.2); color: var(--text-primary); }

/* ── COMPARE MODAL ── */
.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.compare-modal[hidden] { display: none; }
.compare-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.compare-modal-content {
  position: relative;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: fadeInUp 0.3s ease-out;
}
.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: var(--bg-deep);
  z-index: 1;
  border-radius: 16px 16px 0 0;
}
.compare-modal-header h2 { font-size: 1.2rem; font-weight: 700; }
.compare-modal-close {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.compare-modal-close svg { width: 16px; height: 16px; }
.compare-modal-close:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.compare-modal-body { padding: 0 0 8px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(0,212,255,0.04);
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table thead th a { color: var(--neon-cyan); text-decoration: none; }
.compare-table thead th a:hover { text-decoration: underline; }
.compare-table tbody th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border-subtle);
  white-space: nowrap;
}
.compare-table tbody td {
  padding: 12px 16px;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
}
.compare-table .star { color: var(--neon-yellow); }
.compare-review-count { font-size: 0.78rem; color: var(--text-muted); }

/* ── ROULETTE MODAL ── */
.roulette-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.roulette-modal[hidden] { display: none; }
.roulette-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.roulette-content {
  position: relative;
  background: var(--bg-deep);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.3s ease-out;
  box-shadow: 0 0 60px rgba(0,212,255,0.08);
}
.roulette-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.roulette-close svg { width: 16px; height: 16px; }
.roulette-close:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.roulette-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roulette-wheel-container {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto 24px;
}
.roulette-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 24px solid var(--neon-cyan);
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.6));
}
#roulette-canvas {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,212,255,0.15), inset 0 0 30px rgba(0,0,0,0.3);
  transition: transform 4s cubic-bezier(0.15, 0.85, 0.35, 1);
}
.roulette-spin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 14px 48px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.roulette-spin-btn:hover { opacity: 0.9; transform: scale(1.02); }
.roulette-spin-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.roulette-result {
  margin-top: 24px;
  padding: 20px;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  animation: fadeInUp 0.4s ease-out;
}
.roulette-result[hidden] { display: none; }
.roulette-result-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.roulette-result-rating {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.roulette-result-rating .star { color: var(--neon-yellow); }
.roulette-result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.roulette-result-link:hover { opacity: 0.8; }
.roulette-result-link svg { width: 14px; height: 14px; }

/* ── NEAR ME TOAST ── */
.near-me-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid rgba(255,100,100,0.3);
  color: var(--text-primary);
  font-size: 0.88rem;
  padding: 14px 24px;
  border-radius: 12px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: 90vw;
  text-align: center;
}
.near-me-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .venue-card, .distance-badge, .compare-bar, .compare-modal-content, .roulette-content, .roulette-result { animation: none !important; }
  #roulette-canvas { transition: none !important; }
  .near-me-btn.loading svg { animation: none; }
}

/* ── PROMO CARDS ── */
.promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  padding: 32px 0 0;
}
.promo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.promo-card:hover {
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 20px rgba(0,212,255,0.06);
  transform: translateY(-2px);
}
.promo-card--vegas:hover {
  border-color: rgba(255,184,0,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 20px rgba(255,184,0,0.08);
}
.promo-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}
.promo-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.promo-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.promo-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.promo-card-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}
.promo-card:hover .promo-card-arrow {
  color: var(--neon-cyan);
  transform: translateX(3px);
}
.promo-card--vegas:hover .promo-card-arrow {
  color: var(--neon-yellow);
}
@media (max-width: 700px) {
  .promo-row { grid-template-columns: 1fr; }
}

/* ── 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:not(.btn-primary):not(.btn-secondary) {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 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,212,255,0.3);
  box-shadow: 0 0 16px rgba(0,212,255,0.06);
}
.quick-pick-label {
  font-size: 0.75rem;
  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 { font-size: 0.95rem; }
  .logo-sub { font-size: 0.75rem; }
  .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: 400px;
    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.open li:nth-child(4) { transition-delay: 0.2s; }
  .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; }

  /* Mobile controls bar */
  .controls-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .sort-control { width: 100%; }
  .sort-select { width: 100%; font-size: 16px; }
  .near-me-btn { margin-left: 0; justify-content: center; }
  .help-choose-btn { justify-content: center; }

  /* Mobile compare toggle */
  .compare-toggle { top: 8px; right: 8px; }
  .compare-toggle-text { display: none; }

  /* Mobile compare bar */
  .compare-bar { padding: 12px 16px; }
  .compare-bar-inner { flex-direction: column; gap: 10px; }
  .compare-bar-venues { justify-content: center; }
  .compare-bar-actions { justify-content: center; width: 100%; }

  /* Mobile compare modal */
  .compare-modal { padding: 12px; }
  .compare-modal-content { max-height: 90vh; border-radius: 12px; }
  .compare-modal-header { padding: 18px 20px 12px; border-radius: 12px 12px 0 0; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td { padding: 10px 12px; }

  /* Mobile roulette */
  .roulette-content { padding: 32px 20px; }
  .roulette-wheel-container { width: 280px; height: 280px; }
  #roulette-canvas { width: 280px; height: 280px; }
}

/* ── 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);
}

/* ── RELATED VENUES ── */
.related-venues { margin: 36px 0; }
.related-venues h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.related-venues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.related-venue-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.related-venue-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
.related-venue-info { padding: 12px 14px; }
.related-venue-name { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.related-venue-meta { font-size: 0.82rem; color: var(--text-muted); }
.related-venue-meta .star { color: var(--neon-yellow); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s;
  z-index: 50;
}
.back-to-top.visible { display: flex; opacity: 1; transform: translateY(0); }
.back-to-top:hover { border-color: var(--neon-cyan); box-shadow: 0 0 12px rgba(0,212,255,0.15); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-primary);
  font-size: 2rem; cursor: pointer;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: var(--text-primary);
  font-size: 1.6rem; width: 44px; height: 44px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,212,255,0.15); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--text-muted); font-family: 'Space Mono', monospace;
}

/* ── STICKY NAV ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-deep); transition: box-shadow 0.3s;
  margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%); padding-right: calc(50vw - 50%);
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); border-bottom: 1px solid var(--border-subtle); }

/* ── VENUE FAQ ── */
.venue-faq { margin: 36px 0; }
.venue-faq h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }

/* ── BLOG LISTING ── */
.blog-listing { padding: 40px 0 20px; max-width: 720px; }
.blog-listing h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 8px; }
.blog-listing-intro { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.blog-grid { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 12px;
  padding: 24px; transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover { border-color: var(--neon-cyan); box-shadow: 0 0 16px rgba(0,212,255,0.08); }
.blog-card-body { display: flex; flex-direction: column; gap: 8px; }
.blog-card-tag {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--neon-cyan); font-weight: 700;
}
.blog-card h2 { font-size: 1.15rem; font-weight: 700; line-height: 1.4; margin: 0; }
.blog-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); }

/* ── VENUES DIRECTORY ── */
.blog-listing.venues-directory { max-width: 960px; }
.venues-directory .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.county-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: -0.01em;
}
.county-heading:first-of-type { margin-top: 0; }
@media (max-width: 640px) {
  .venues-directory .blog-grid { grid-template-columns: 1fr; }
}

/* ── BLOG ARTICLE ── */
.blog-article { padding-bottom: 20px; }
.blog-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; }
.blog-cta-section { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.blog-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
.blog-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
  background: var(--bg-card); border-radius: 8px; overflow: hidden;
}
.blog-table th, .blog-table td {
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-subtle);
}
.blog-table th { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.blog-table td { color: var(--text-primary); }
.blog-table a { color: var(--neon-cyan); text-decoration: underline; text-underline-offset: 2px; }

/* ── BLOG HERO IMAGE ── */
.blog-hero-img {
  display: block; width: 100%; max-width: 720px; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; margin-bottom: 28px;
}

/* ── BLOG CARD IMAGE ── */
.blog-card-img {
  display: block; width: calc(100% + 48px); height: 180px; object-fit: cover;
  margin: -24px -24px 16px -24px; border-radius: 11px 11px 0 0;
}

/* ── RESPONSIVE: RELATED VENUES ── */
@media (max-width: 700px) {
  .related-venues-grid { grid-template-columns: 1fr; gap: 12px; }
  .related-venue-card { display: flex; flex-direction: row; }
  .related-venue-card img { width: 100px; height: 80px; flex-shrink: 0; }
  .related-venue-info { display: flex; flex-direction: column; justify-content: center; }
  .blog-hero-img { border-radius: 8px; margin-bottom: 20px; }
  .blog-card-img { height: 140px; }
}
