/* ========== TOP GUN BAR — STYLES ========== */
:root {
  --bg: #000000;
  --bg-soft: #0a0a0f;
  --bg-panel: #111118;
  --neon-cyan: #00e5ff;
  --neon-red: #ff2a3c;
  --text: #f5f7fa;
  --text-dim: #a8b0bd;
  --border: rgba(0, 229, 255, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Black Ops One', 'Impact', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
}

a { color: var(--neon-cyan); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--neon-red); }

img { max-width: 100%; display: block; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.3rem;
  color: var(--neon-cyan);
  letter-spacing: 3px;
  text-shadow: 0 0 1px rgba(0, 229, 255, 0.6);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at center, rgba(0,229,255,0.08) 0%, transparent 60%),
    #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero-logo {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.45))
          drop-shadow(0 0 50px rgba(255, 42, 60, 0.18));
  animation: neonPulse 3s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.45))
            drop-shadow(0 0 50px rgba(255, 42, 60, 0.18));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.7))
            drop-shadow(0 0 70px rgba(255, 42, 60, 0.3));
  }
}
.venue-showcase {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 35px;
  padding: 6px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,229,255,0.05), rgba(255,42,60,0.05));
  box-shadow:
    0 0 25px rgba(0, 229, 255, 0.35),
    0 0 60px rgba(255, 42, 60, 0.18),
    inset 0 0 20px rgba(0, 229, 255, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.venue-showcase:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 40px rgba(0, 229, 255, 0.55),
    0 0 90px rgba(255, 42, 60, 0.3),
    inset 0 0 25px rgba(0, 229, 255, 0.12);
}
.venue-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.trolley-showcase {
  margin-top: 0;
  border-color: rgba(255, 42, 60, 0.4);
  background: linear-gradient(180deg, rgba(255,42,60,0.05), rgba(0,229,255,0.05));
  box-shadow:
    0 0 25px rgba(255, 42, 60, 0.35),
    0 0 60px rgba(0, 229, 255, 0.18),
    inset 0 0 20px rgba(255, 42, 60, 0.08);
}
.trolley-showcase:hover {
  box-shadow:
    0 0 40px rgba(255, 42, 60, 0.55),
    0 0 90px rgba(0, 229, 255, 0.3),
    inset 0 0 25px rgba(255, 42, 60, 0.12);
}
.trolley-showcase .venue-image {
  background: #fff;
}
/* ===== Motorcycle flyby animation ===== */
.motorcycle-flyby {
  position: fixed;
  top: 50vh;
  left: 100%;
  width: 420px;
  max-width: 50vw;
  /* aspect-ratio matches motorcycle.png (1536:1024 = 3:2) */
  aspect-ratio: 3 / 2;
  height: auto;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 10px 30px rgba(0, 229, 255, 0.4))
          drop-shadow(0 0 50px rgba(255, 42, 60, 0.3));
  will-change: transform, opacity;
}
.motorcycle-bike {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.motorcycle-arm-mask {
  /* Cropped patch covering ONLY the rider's left arm on the handlebars.
     Source bbox in 1536x1024 bike: x=455-902, y=271-437 (447x166)
     -> left:29.622%, top:26.465%, width:29.102%, height:16.211% of wrapper.
     Hidden by default; fades in during the fist pump so the rider doesn't
     appear to have two arms simultaneously. */
  position: absolute;
  left: 29.622%;
  top: 26.465%;
  width: 29.102%;
  height: 16.211%;
  object-fit: fill;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-in;
  will-change: opacity;
}
.motorcycle-flyby.pumping .motorcycle-arm-mask {
  opacity: 1;
  transition: opacity 150ms ease-out;
}
.motorcycle-fist-arm {
  /* The arm sprite is a vertical strip (383x1003, aspect ~0.382).
     The shoulder anchor in the sprite is at the BOTTOM, x≈46% across the
     sprite width. With translate(-50%, 0) centering the sprite horizontally
     on `left`, the shoulder lands ~4% of sprite-width left of `left`.

     Rider's actual SHOULDER (in 1536x1024 bike img):
       x ≈ 870 / 1536 = 56.6%  (where leather jacket meets upper arm)
       y ≈ 285 / 1024 = 27.8% from top
     So the arm's BOTTOM-CENTER anchors at left:58%, top:27.8% of wrapper
     (slight nudge right to account for the sprite's off-center anchor).

     Arm height = 40% of wrapper height so the shoulder-to-fist sprite
     renders at appropriate scale (the new sprite is taller than the old one).
     Arm width = arm-height * (383/1003) (preserve aspect).
  */
  position: absolute;
  height: 40%;
  aspect-ratio: 383 / 1003; /* preserve new sprite aspect */
  bottom: 72.2%;            /* its bottom edge sits at 27.8% from top (shoulder y) */
  left: 58%;                /* shoulder x, nudged for off-center sprite anchor */
  transform: translate(-50%, 0) scaleY(0); /* hidden initially, anchored at bottom */
  transform-origin: bottom center;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 250ms ease-out;
  will-change: transform, opacity;
}
.motorcycle-flyby.pumping .motorcycle-fist-arm {
  transform: translate(-50%, 0) scaleY(1);
  opacity: 1;
  transition:
    transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), /* slight overshoot for snap */
    opacity 200ms ease-in;
}
.motorcycle-flyby.driving {
  animation: motorcycleFlyby 2s linear forwards;
}
@keyframes motorcycleFlyby {
  0% {
    left: 100%;
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: translateX(calc(-100vw - 420px));
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .motorcycle-flyby {
    width: 260px;
  }
  @keyframes motorcycleFlyby {
    0% {
      left: 100%;
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      left: 100%;
      transform: translateX(calc(-100vw - 260px));
      opacity: 1;
    }
  }
}
.hero-history {
  max-width: 800px;
  margin: 18px auto 10px;
  text-align: center;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.5;
  padding: 0 20px;
}
.hero-history .quote-line {
  color: var(--neon-cyan);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 0 0 1px rgba(0, 229, 255, 0.6);
}
.hero-history .music-note {
  display: inline-block;
  font-style: normal;
  margin-left: 4px;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
  animation: noteFloat 3s ease-in-out infinite;
}
@keyframes noteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.trolley-caption {
  text-align: center;
  padding: 22px 24px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(255,42,60,0.05));
  border-top: 1px solid rgba(255, 42, 60, 0.25);
  margin-top: 6px;
}
.trolley-badge {
  display: inline-block;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--neon-red);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.trolley-headline {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 0 0 1px rgba(0, 229, 255, 0.6);
  text-align: center;
}
.trolley-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 2.75rem;
  letter-spacing: 3px;
  color: var(--neon-red);
  text-transform: uppercase;
  margin: 4px 0 16px;
  line-height: 1.05;
  text-align: center;
  text-shadow:
    0 0 6px rgba(255, 42, 60, 0.85),
    0 0 16px rgba(255, 42, 60, 0.55),
    0 0 32px rgba(255, 42, 60, 0.35);
}
.trolley-headline .free-word {
  color: var(--neon-red);
  text-shadow: 0 0 1px rgba(255, 42, 60, 0.7);
}
.trolley-subline {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.collage-showcase {
  border-color: rgba(255, 191, 0, 0.35);
  background: linear-gradient(180deg, rgba(255,191,0,0.05), rgba(0,229,255,0.05));
  box-shadow:
    0 0 25px rgba(255, 191, 0, 0.25),
    0 0 60px rgba(0, 229, 255, 0.18),
    inset 0 0 20px rgba(255, 191, 0, 0.06);
}
.collage-showcase:hover {
  box-shadow:
    0 0 40px rgba(255, 191, 0, 0.45),
    0 0 90px rgba(0, 229, 255, 0.3),
    inset 0 0 25px rgba(255, 191, 0, 0.1);
}
.maverick-feature {
  width: 100%;
  max-width: 900px;
  margin: 35px auto 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,42,60,0.06), rgba(0,229,255,0.06));
  box-shadow:
    0 0 25px rgba(0, 229, 255, 0.3),
    0 0 60px rgba(255, 42, 60, 0.15),
    inset 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.maverick-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 40px rgba(0, 229, 255, 0.5),
    0 0 90px rgba(255, 42, 60, 0.25),
    inset 0 0 25px rgba(0, 0, 0, 0.4);
}
.maverick-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.maverick-image {
  width: 100%;
  height: auto;
  max-width: 380px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3))
          drop-shadow(0 0 40px rgba(255, 42, 60, 0.2));
}
.maverick-text {
  text-align: left;
  padding: 10px 0;
}
.maverick-eyebrow {
  display: inline-block;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--neon-red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.maverick-headline {
  font-family: 'Black Ops One', sans-serif;
  font-size: 2.4rem;
  color: var(--neon-cyan);
  letter-spacing: 3px;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 0 1px rgba(0, 229, 255, 0.6);
}
.maverick-body {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.maverick-body .callsign {
  color: var(--neon-red);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
}
.hero-tagline {
  font-size: 1.4rem;
  color: var(--text-dim);
  margin-bottom: 35px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Black Ops One', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid var(--neon-cyan);
  background: transparent;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: all 0.3s;
  text-shadow: none;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25), inset 0 0 12px rgba(0, 229, 255, 0.08);
}
.btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 25px var(--neon-cyan);
  text-shadow: none;
}
.btn-red {
  border-color: var(--neon-red);
  color: var(--neon-red);
  text-shadow: none;
  box-shadow: 0 0 12px rgba(255,42,60,0.25), inset 0 0 12px rgba(255,42,60,0.08);
}
.btn-red:hover {
  background: var(--neon-red);
  color: #fff;
  box-shadow: 0 0 25px var(--neon-red);
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: var(--neon-cyan);
  text-shadow: 0 0 1px rgba(0, 229, 255, 0.6);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.feature-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.25);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  color: var(--neon-cyan);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.feature-card p {
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* ========== HOURS / CONTACT ========== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.info-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 36px;
}
.info-block h3 {
  color: var(--neon-red);
  text-shadow: 0 0 1px rgba(255, 42, 109, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 1.05rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text); font-weight: 600; }
.hours-list .time { color: var(--neon-cyan); }
.contact-item {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.contact-item .label {
  display: block;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ========== FOOTER ========== */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
  text-align: center;
}
.footer-logo {
  max-width: 280px;
  margin: 0 auto 20px;
  opacity: 0.85;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
}
.footer-social a {
  font-size: 1.4rem;
  color: var(--text-dim);
}
.footer-social a:hover { color: var(--neon-cyan); }
.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hero-tagline { font-size: 1rem; letter-spacing: 2px; }
  .section-title { font-size: 1.9rem; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 18px; }
  .venue-showcase { margin: 20px auto 25px; max-width: 100%; }
  .hero-history { font-size: 1rem; letter-spacing: 0.5px; padding: 0 14px; margin: 14px auto 8px; }
  .trolley-caption { padding: 16px 14px 12px; }
  .trolley-title { font-size: 1.85rem; letter-spacing: 2px; }
  .trolley-headline { font-size: 1.1rem; letter-spacing: 1px; }
  .trolley-subline { font-size: 0.95rem; letter-spacing: 2px; }
  .trolley-badge { font-size: 0.75rem; letter-spacing: 3px; }
  .maverick-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    margin: 25px auto;
  }
  .maverick-text { text-align: center; }
  .maverick-headline { font-size: 1.9rem; }
  .maverick-body { font-size: 1rem; }
  .maverick-image { max-width: 280px; }
}

/* ---------- Collage interactive expand-to-fullscreen ---------- */
.collage-showcase {
  cursor: zoom-in;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.collage-showcase:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 191, 0, 0.85),
    0 0 40px rgba(255, 191, 0, 0.45),
    0 0 90px rgba(0, 229, 255, 0.3);
}
.collage-expand-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--neon-cyan, #00e5ff);
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
  text-shadow: 0 0 4px rgba(0, 229, 255, 0.6);
  white-space: nowrap;
}
.collage-showcase:hover .collage-expand-hint,
.collage-showcase:focus-visible .collage-expand-hint {
  opacity: 1;
  transform: translateY(0);
}
/* Always show the hint subtly on touch devices (no hover) */
@media (hover: none) {
  .collage-expand-hint {
    opacity: 0.85;
    transform: translateY(0);
  }
}

/* Full-screen lightbox overlay */
.collage-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 320ms ease,
    visibility 0s linear 320ms;
  -webkit-tap-highlight-color: transparent;
}
.collage-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 320ms ease,
    visibility 0s linear 0s;
}
.collage-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow:
    0 0 35px rgba(255, 191, 0, 0.35),
    0 0 90px rgba(0, 229, 255, 0.25);
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
  user-select: none;
  -webkit-user-drag: none;
}
.collage-lightbox.is-open .collage-lightbox-image {
  transform: scale(1);
  opacity: 1;
}
.collage-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-family: 'Black Ops One', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
  z-index: 1;
}
.collage-lightbox-close:hover,
.collage-lightbox-close:focus-visible {
  background: rgba(255, 42, 60, 0.85);
  border-color: #fff;
  transform: scale(1.08);
  outline: none;
}
.collage-lightbox-hint {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  white-space: nowrap;
}

/* Lock body scroll while lightbox is open (toggled via JS class on <body>) */
body.collage-lightbox-open {
  overflow: hidden;
  /* prevent layout shift from scrollbar disappearing on desktop */
  padding-right: var(--scrollbar-comp, 0px);
}

@media (max-width: 768px) {
  .collage-lightbox { padding: 2vh 2vw; }
  .collage-lightbox-close {
    width: 42px; height: 42px;
    font-size: 24px;
    top: 12px; right: 12px;
  }
  .collage-lightbox-hint {
    font-size: 0.7rem;
    letter-spacing: 2px;
    bottom: 14px;
  }
  .collage-expand-hint {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 5px 8px;
    bottom: 10px; right: 10px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .collage-lightbox,
  .collage-lightbox-image,
  .collage-expand-hint,
  .collage-lightbox-close {
    transition: opacity 120ms linear, visibility 0s linear !important;
    transform: none !important;
  }
}
