/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg);
  border-bottom: var(--border-panel);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--hot);
  border: var(--border-panel);
  box-shadow: var(--shadow-sm);
  font-family: "Luckiest Guy", sans-serif;
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  flex-shrink: 0;
}

/* Logo with uploaded image — removes hot background, keeps border/shadow */
.logo-mark--img {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.logo-mark--img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

/* Direct logo image — no frame, no shadow, no rotation */
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name {
  font-family: "Bangers", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}

.logo-sub {
  font-family: "Permanent Marker", cursive;
  font-size: 14px;
  color: var(--yellow);
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 1;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.nav-links li a {
  font-family: "Bangers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links li a:hover {
  color: var(--hot);
}

/* ── Buttons ── */
.nav-cta,
.btn-hot,
.btn-yellow,
.form-submit {
  font-family: "Bangers", sans-serif;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

/* No border-radius — rule from style guide */

.nav-cta {
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
}

.nav-cta:hover {
  background: var(--yellow);
  color: var(--bg);
}

.btn-hot {
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm);
  font-size: 18px;
}

.btn-hot:hover {
  background: var(--yellow);
  color: var(--bg);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--bg);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm);
  font-size: 18px;
}

.btn-yellow:hover {
  background: var(--teal);
  color: var(--bg);
}

.form-submit {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 22px;
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm-hot);
  padding: 14px 32px;
  letter-spacing: 0.05em;
  width: 100%;
}

.form-submit:hover {
  background: var(--yellow);
  color: var(--bg);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  padding: 8px 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 20, 0.7);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg);
  border-left: var(--border-panel);
  box-shadow: -6px 0 0 var(--hot);
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 32px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li a,
.mobile-nav-links a {
  font-family: "Bangers", sans-serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  border-bottom: 2px solid var(--bg2);
  padding: 12px 0;
}

.mobile-nav-links li a:hover,
.mobile-nav-links a:hover {
  color: var(--hot);
}

/* ════════════════════════════════════════
   PANELS / CARDS
   ════════════════════════════════════════ */

/* Base panel */
.panel {
  border: var(--border-panel);
  box-shadow: var(--shadow-panel);
  padding: 28px;
  position: relative;
}

/* Color variants */
.panel.hot,
.event-panel.hot,
.offer-card.hot,
.info-panel.hot { background: var(--hot); color: var(--ink); }

.panel.teal,
.event-panel.teal,
.offer-card.teal,
.info-panel.teal { background: var(--teal); color: var(--bg); }

.panel.yellow,
.event-panel.yellow,
.offer-card.yellow,
.info-panel.yellow { background: var(--yellow); color: var(--bg); }

.panel.purple,
.event-panel.purple,
.offer-card.purple,
.info-panel.purple { background: var(--purple); color: var(--ink); }

.panel.dark,
.event-panel.dark { background: var(--bg2); color: var(--ink); }

/* ── Event card ── */
.event-panel {
  border: var(--border-panel);
  box-shadow: var(--shadow-panel);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.event-date {
  font-family: "Bangers", sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  opacity: 0.85;
}

.event-name {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.event-desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0.9;
}

.event-tag {
  display: inline-block;
  font-family: "Bangers", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.25);
  color: var(--yellow);
  padding: 3px 10px;
}

.event-recurring-badge {
  display: block;
  margin-top: 10px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* ── Offer / menu card ── */
.offer-card {
  border: var(--border-panel);
  box-shadow: var(--shadow-panel);
  padding: 28px;
  position: relative;
}

.offer-icon {
  font-family: "Bangers", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.offer-name {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 36px;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.offer-list {
  list-style: none;
}

.offer-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 2px dashed currentColor;
  font-size: 14px;
  opacity: 0.9;
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-price {
  font-family: "Bangers", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* ── Info panels (prenota/contatti) ── */
.info-panel {
  border: var(--border-panel);
  box-shadow: var(--shadow-panel);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.info-label {
  font-family: "Bangers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ════════════════════════════════════════
   TAPE ELEMENT
   ════════════════════════════════════════ */
.tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: rgba(255, 210, 63, 0.55);
  border: 1px dashed rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 3;
}

/* ════════════════════════════════════════
   SPEECH BUBBLE
   ════════════════════════════════════════ */
.bubble {
  background: var(--bg2);
  color: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 28px; /* exception to the no-radius rule — dialog bubbles only */
  padding: 12px 20px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  display: inline-block;
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 24px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid var(--bg2);
  filter: drop-shadow(0 3px 0 var(--ink));
}

/* ════════════════════════════════════════
   BURST / STARBURST WRAPPER
   ════════════════════════════════════════ */
.burst {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burst svg {
  overflow: visible;
}

.burst-text {
  position: absolute;
  font-family: "Luckiest Guy", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 3px solid var(--hot);
  padding: 60px 0 0;
  position: relative;
  z-index: var(--z-content);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-family: "Bangers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--inkDim);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--yellow);
  opacity: 1;
}

.footer-col p {
  font-size: 14px;
  color: var(--inkDim);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-item {
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bg);
  transition: transform 0.15s ease;
}

.footer-social-item:hover {
  transform: translate(-2px, -2px);
}

.footer-social-item svg {
  display: block;
}

.footer-social-item.ig  { background: var(--hot); color: var(--ink); }
.footer-social-item.fb  { background: var(--teal); color: var(--bg); }
.footer-social-item.tw  { background: var(--yellow); color: var(--bg); }
.footer-social-item.yt  { background: var(--purple); color: var(--ink); }
.footer-social-item.wa  { background: #25d366; color: var(--bg); }

.footer-capit {
  margin-top: 12px;
  padding: 14px 18px;
  border: 2px solid var(--yellow);
  background: rgba(255, 210, 63, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

.footer-capit-icon { font-size: 18px; flex-shrink: 0; }

.footer-bottom {
  border-top: 2px solid var(--bg2);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  color: var(--inkDim);
}

.footer-slogan {
  font-family: "Bangers", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  color: var(--hot);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--yellow);
}

/* ════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════ */
.cta-strip {
  background: var(--ink);
  border-top: var(--border-panel);
  border-bottom: var(--border-panel);
  padding: 28px 0;
  box-shadow: inset 0 -6px 0 var(--hot);
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip-title {
  font-family: "Bangers", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--bg);
}

.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   COMBO STRIP
   ════════════════════════════════════════ */
.combo-strip {
  background: var(--ink);
  border: var(--border-panel);
  box-shadow: var(--shadow-hot);
  padding: 32px 40px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.combo-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 36px;
  color: var(--hot);
  text-shadow: 3px 3px 0 var(--bg);
  line-height: 1;
}

.combo-desc {
  color: var(--bg);
  font-size: 15px;
  margin-top: 8px;
}

.game-included-banner {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg2);
  border-left: 8px solid var(--yellow);
  box-shadow: 8px 8px 0 var(--hot);
}

.game-included-banner--menu {
  margin-top: 4px;
}

.game-included-banner--menu-note,
.game-included-banner--home {
  margin-bottom: 36px;
}

.game-included-kicker {
  font-family: "Bangers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.game-included-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--bg);
  margin: 0 0 14px;
}

.game-included-text {
  max-width: 680px;
  color: var(--inkDim);
  font-size: 17px;
  line-height: 1.65;
}

.menu-challenge {
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 30px 34px;
  background: var(--yellow);
  color: var(--bg);
  border: var(--border-panel);
  box-shadow: 8px 8px 0 var(--hot);
  position: relative;
  overflow: hidden;
}

.menu-challenge--after-menu {
  margin-top: 36px;
}

.menu-challenge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(12, 10, 20, 0.28);
  pointer-events: none;
}

.menu-challenge-kicker {
  font-family: "Bangers", sans-serif;
  font-size: 17px;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.menu-challenge-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  color: var(--bg);
  text-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 14px;
}

.menu-challenge-text,
.menu-challenge-rule {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.menu-challenge-rule {
  margin-top: 8px;
  font-weight: 800;
}

/* ════════════════════════════════════════
   CABINET CARD (Arcade)
   ════════════════════════════════════════ */
.cabinet-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  border: var(--border-panel);
  background: var(--bg2);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cabinet-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 30% 0 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 20, 0) 0%,
    rgba(12, 10, 20, 0.45) 38%,
    rgba(12, 10, 20, 0.96) 100%
  );
  pointer-events: none;
}

.cabinet-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.cabinet-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  max-height: none;
  transition: transform 0.25s ease;
}

.cabinet-card:hover img {
  transform: scale(1.035);
}

.cabinet-info {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 72px 20px 18px;
}

.cabinet-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--ink);
  text-shadow: 2px 2px 0 var(--bg), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.cabinet-year {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: var(--teal);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

.machine-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
}

/* ════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════ */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  font-family: "Bangers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: var(--border-panel);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.pagination a:hover {
  background: var(--hot);
  color: var(--ink);
}

.pagination .current {
  background: var(--hot);
  color: var(--ink);
}

/* ════════════════════════════════════════
   LIGHTBOX (Arcade)
   ════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 20, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border: var(--border-panel);
  box-shadow: var(--shadow-hot);
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-data {
  display: none;
}

.lightbox-inner--detail {
  width: min(1120px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  background: var(--bg2);
  border: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 8px 8px 0 var(--hot);
  overflow: hidden;
}

.lightbox-media {
  min-width: 0;
  min-height: 360px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner--detail .lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
}

.lightbox-detail {
  min-width: 0;
  padding: 34px 32px;
  overflow-y: auto;
}

.lightbox-meta {
  font-family: "Bangers", sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.lightbox-title {
  font-family: "Luckiest Guy", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--bg);
  margin-bottom: 22px;
}

.lightbox-content {
  color: var(--inkDim);
  font-size: 16px;
  line-height: 1.7;
}

.lightbox-content > * {
  margin-bottom: 14px;
}

.lightbox-content > *:last-child {
  margin-bottom: 0;
}

.lightbox-content strong {
  color: var(--ink);
}

.lightbox-content a {
  color: var(--hot);
  text-decoration: underline;
}

.lightbox-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
}

.lightbox-content ul,
.lightbox-content ol {
  padding-left: 20px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--hot);
  border: var(--border-panel);
  box-shadow: var(--shadow-sm);
  font-family: "Luckiest Guy", sans-serif;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lightbox-inner--detail .lightbox-close {
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 0;
  box-shadow: 4px 4px 0 var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  z-index: 5;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: var(--border-panel);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Luckiest Guy", sans-serif;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.1s ease, box-shadow 0.1s ease;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--hot);
  box-shadow: 4px 4px 0 var(--bg);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--inkDim);
  background: rgba(12, 10, 20, 0.85);
  padding: 4px 14px;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-prev,
  .lightbox-next { transition: none; }
}

/* ════════════════════════════════════════
   RICH TEXT (shared WYSIWYG content blocks)
   ════════════════════════════════════════ */
.locale-richtext {
  color: var(--inkDim);
  font-size: 16px;
  line-height: 1.75;
}

.locale-richtext > p { margin-bottom: 16px; }
.locale-richtext > p:last-child { margin-bottom: 0; }
.locale-richtext strong { color: var(--bg); }
.locale-richtext a { color: var(--hot); text-decoration: underline; }
.locale-richtext ul,
.locale-richtext ol { margin: 0 0 16px 20px; }
.locale-richtext li { margin-bottom: 6px; }

/* Centered, slightly larger lead variant */
.locale-intro-rich {
  max-width: 760px;
  font-size: 17px;
}
