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

:root {
  --yellow: #F5E642;
  --pink: #FF6EB4;
  --teal: #2ECFA8;
  --blue: #5B9BF5;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #161616;
  --border: #1E1E1E;
  --text: #F0EDE8;
  --muted: #666666;
  --muted2: #444444;
  --radius: 6px;
  --font-display: 'Archivo Black', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  height: 56px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  color: var(--muted);
  flex: 1;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bar-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted2);
  flex-shrink: 0;
}
.status-dot.open { background: var(--teal); box-shadow: 0 0 6px var(--teal); animation: pulse 2s infinite; }
.status-dot.closed { background: var(--pink); }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.btn-nav {
  font-size: 13px;
  font-weight: 600;
  background: var(--yellow);
  color: #0A0A0A;
  border: none;
  border-radius: var(--radius);
  padding: 7px 16px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-nav:hover { background: #ffe200; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  /* Fixed so it appears below the sticky nav even when page is scrolled */
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 2rem;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-link:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 2rem 60px;
  border-bottom: 1px solid var(--border);
}

.hero-bg-word {
  position: absolute;
  top: -20px;
  left: -8px;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 900;
  color: #111;
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.c-yellow { color: var(--yellow); }
.c-pink   { color: var(--pink); }
.c-teal   { color: var(--teal); }
.c-blue   { color: var(--blue); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 11px 22px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #ffe200; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 22px;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 22px;
  cursor: pointer;
}
.btn-ghost:hover { border-color: #444; }

.hero-live {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.live-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}
#occupancy-card { min-width: 0; }
.live-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
}
.live-value { font-size: 14px; font-weight: 500; }
.live-value.is-open { color: var(--teal); }
.live-value.is-closed { color: var(--muted); }

.now-playing { display: flex; align-items: center; gap: 10px; }
.np-idle { font-size: 13px; color: var(--muted); }
.np-offline { font-size: 13px; color: #ff4444; font-weight: 600; }
.np-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.np-track { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-artist { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-next { font-size: 11px; color: var(--muted2); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-art { width: 40px; height: 40px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 2rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2rem;
}
.trust-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
}
.trust-platform {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .trust-item { padding: 0 1rem; }
  .trust-platform { font-size: 11px; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--yellow);
  padding: 9px 0;
  overflow: hidden;
  border-top: 1px solid #222200;
  border-bottom: 1px solid #222200;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 40px;
  padding-right: 40px;
  animation: marquee 22s linear infinite;
  font-size: 12px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-inner .dot { color: var(--pink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ── SECTIONS ── */
.section {
  padding: 52px 2rem;
  border-bottom: 1px solid var(--border);
}
.section-dark { background: var(--bg2); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.0;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.section-head .section-sub { margin-bottom: 0; }

/* ── BADGES ── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.badge-y { background: var(--yellow); color: #0A0A0A; }
.badge-p { background: var(--pink);   color: #0A0A0A; }
.badge-t { background: var(--teal);   color: #0A0A0A; }
.badge-b { background: var(--blue);   color: #0A0A0A; }
.badge-g { background: #333; color: var(--muted); }
.badge-r { background: #FF3333; color: #fff; }

.tap-legend { display: flex; gap: 6px; align-items: flex-start; flex-wrap: wrap; padding-top: 4px; }

/* ── TAP GRID ── */
.tap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.tap-card {
  background: var(--bg2);
  transition: background 0.15s;
}
.tap-card:hover { background: var(--bg3); }

.tap-card-inner {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  align-items: flex-start;
}

.tap-label {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: transparent;
  filter: url(#remove-white-bg);
}

.tap-body { flex: 1; min-width: 0; }

.tap-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 6px;
}
.tap-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--muted2);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}
.tap-badges { display: flex; gap: 4px; flex-wrap: wrap; }

.tap-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.tap-brewery { font-size: 12px; color: var(--muted); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tap-style {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  margin-bottom: 8px;
}
.tap-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.tap-abv, .tap-ibu {
  font-size: 12px;
  color: var(--muted);
}
.tap-abv { color: var(--yellow); font-weight: 600; }

/* ── OCCUPANCY ── */
.occ-calm      { color: var(--teal); }
.occ-busy      { color: var(--yellow); }
.occ-very-busy { color: var(--pink); }
.occ-full      { color: #FF4444; }

.tap-card-coming-soon { background: var(--bg3); }
.tap-card-coming-soon .tap-num { color: var(--muted2); }
.tap-card-coming-soon .tap-name { color: var(--muted); font-style: italic; font-size: 14px; }
.tap-coming-soon-hint { color: var(--muted2) !important; font-size: 12px; }

.tap-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.untappd-logo {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.tap-stars {
  width: 60px;
  height: 8px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.tap-stars-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 4px;
}
.tap-rating-num { font-size: 12px; font-weight: 600; color: var(--yellow); }
.tap-rating-count { font-size: 11px; color: var(--muted2); }

.tap-flavours {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tap-flavour {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 6px;
  letter-spacing: 0.04em;
}

.tap-price {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  margin-top: 4px;
}

/* ── SHOP GRID ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
/* Compact showcase (homepage beer shop) */
.shop-grid.shop-grid-compact { grid-template-columns: repeat(6, 1fr); }
.shop-grid-compact .shop-card:nth-child(n+7) { display: none; }
.shop-grid-compact .shop-body { padding: 10px; }
.shop-grid-compact .shop-name { font-size: 12px; }
.shop-grid-compact .shop-img-beer { padding: 6px; }
@media (max-width: 900px) {
  .shop-grid.shop-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .shop-grid-compact .shop-card:nth-child(n+3) { display: none; }
}
@media (max-width: 500px) {
  .shop-grid.shop-grid-compact { grid-template-columns: repeat(3, 1fr); }
  .shop-grid-compact .shop-card:nth-child(n+4) { display: none; }
}

.shop-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.shop-img-wrap { display: block; }
.shop-img-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.shop-img-beer {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}
.shop-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg3);
}
.shop-body { padding: 14px; }
.shop-name { font-size: 13px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.shop-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.stock-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 6px;
}
.stock-low { background: rgba(255,160,0,0.15); color: #ffa000; }
.stock-out { background: rgba(255,70,70,0.12); color: #ff5252; }
.shop-buy-disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.shop-price { font-size: 15px; font-weight: 700; color: var(--yellow); }
.shop-buy {
  font-size: 12px;
  font-weight: 600;
  background: var(--yellow);
  color: #0A0A0A;
  border: none;
  border-radius: 4px;
  padding: 5px 12px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.shop-buy:hover { background: #ffe200; }
.section-cta { margin-top: 1.5rem; }

/* ── FACEBOOK EMBED ── */
.fb-events-wrap {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 200px;
}

/* ── BEER SHOP PAGE ── */
.beer-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5rem 0;
}
.beer-filter-btn {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: border-color 0.15s, color 0.15s;
}
.beer-filter-btn:hover,
.beer-filter-btn.active { border-color: var(--teal); color: var(--teal); }
.beer-filter-row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 0;
}
.filter-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-right: 2px;
}
.beer-filter-btn2 {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  padding: 4px 12px;
  cursor: pointer;
  white-space: nowrap;
}
.beer-filter-btn2:hover { color: var(--text); border-color: var(--text); }
.beer-filter-btn2.active { border-color: var(--yellow); color: var(--yellow); }
.beer-count { font-size: 13px; color: var(--muted2); margin: 1rem 0; }

/* ── MERCH EMBED ── */
.embed-placeholder {
  background: var(--bg3);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
}
.embed-placeholder-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.embed-placeholder-sub { font-size: 13px; line-height: 1.6; }
.embed-placeholder code { background: #222; padding: 2px 5px; border-radius: 3px; font-size: 12px; }

/* ── EVENTS ── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.event-row {
  background: var(--bg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: background 0.15s;
}
.event-row:hover { background: var(--bg3); }
.event-row a { display: contents; color: inherit; }

.event-date { text-align: center; line-height: 1.1; }
.event-date .day { display: block; font-size: 26px; font-weight: 800; }
.event-date .month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

.event-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.event-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

.event-action {
  font-size: 12px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.event-action:hover { background: rgba(46,207,168,0.1); }

/* ── VISIT ── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.visit-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.visit-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  margin-bottom: 12px;
}

.hours-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.hours-table td { padding: 4px 0; color: var(--muted); }
.hours-table td:first-child { color: var(--text); width: 50%; }

address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.visit-link { font-size: 13px; color: var(--teal); }
.visit-link:hover { text-decoration: underline; }

.visit-list {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.visit-list li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

.map-placeholder {
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 1rem;
}
.map-placeholder code { background: #222; padding: 2px 5px; border-radius: 3px; font-size: 12px; }
.map-embed iframe { width: 100%; height: 300px; border: none; border-radius: 8px; margin-top: 0; }

/* ── SKELETONS ── */
.tap-skeleton {
  background: var(--bg2);
  min-height: 100px;
  border-radius: 0;
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ── COMMUNITY PILLARS ── */
.pillars-section { background: var(--bg2); }
.pillars-intro { margin-bottom: 2.5rem; }
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
}
.about-pillar-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.about-pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pillar-num { font-size: 13px; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 10px; }

/* ── PHOTO GRID ── */
.photo-grid-section { background: var(--bg); padding: 0; }
.photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.photo-grid-4-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 540px) {
  .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px;
  gap: 3px;
}
.photo-slot { overflow: hidden; position: relative; }
.photo-slot img, .photo-slot video, img.photo-slot {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-slot-large { }
.photo-slot-portrait { }
.photo-slot-square { }

.photo-slot-placeholder {
  background: var(--bg2);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: default;
}
.photo-slot-label { font-size: 12px; color: var(--muted2); font-weight: 500; }
.photo-slot-hint { font-size: 11px; color: var(--muted2); opacity: 0.5; font-family: monospace; }

/* Hero media */
.hero-media-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video, .hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.25;
}
/* Faint badge watermark, right side, behind hero content */
.hero-badge-bg {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  height: 125%;
  width: auto;
  max-width: 48%;
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 760px) {
  .hero-badge-bg { max-width: 90%; height: auto; width: 90%; opacity: 0.045; right: -15%; top: 38%; }
}

/* ── NEON QUOTE ── */
.neon-quote-bar {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 2rem;
  text-align: center;
}
.neon-text {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(46, 207, 168, 0.5), 0 0 40px rgba(46, 207, 168, 0.2);
  font-style: italic;
}

/* ── ARCADE ── */
.arcade-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.console-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
}
.console-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.console-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--teal);
  color: #0A0A0A;
  border-radius: 3px;
  padding: 3px 7px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}
.console-name { font-size: 13px; color: var(--muted); }
.arcade-photo-slot {
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
}

/* ── ARCADE PILLS ── */
.arcade-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}
.arcade-pill {
  font-size: 12px;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 5px 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.arcade-pill-game {
  color: var(--muted);
  border-color: var(--border);
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}
.arcade-console-btn {
  background: transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.arcade-console-btn:not(.active) {
  color: var(--muted);
  border-color: var(--border);
}
.arcade-console-btn.active {
  border-color: var(--teal);
}
.arcade-pill-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0 0.25rem;
}

/* ── JUKEBOX ── */
.jukebox-section { background: var(--bg2); }
.jukebox-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
}
.jukebox-now-playing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.jukebox-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: block;
}
.jukebox-art-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.jukebox-offline {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid rgba(255,60,60,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ff4444;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.jukebox-offline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,60,60,0.08) 0%, transparent 70%);
}
.jukebox-offline-icon {
  font-size: 52px;
  opacity: 0.5;
  line-height: 1;
}
.jukebox-track-info { display: flex; flex-direction: column; gap: 4px; }
.jukebox-track-name { font-size: 17px; font-weight: 700; line-height: 1.3; }
.jukebox-artist     { font-size: 14px; color: var(--muted); }
.jukebox-up-next    { font-size: 12px; color: var(--muted2); margin-top: 6px; }

.jukebox-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}
.vibe-tag {
  font-size: 13px;
  font-weight: 600;
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 7px 16px;
}

/* ── SNACKS ── */
.snacks-section { }
.snack-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1.5rem;
}
.snack-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
.snack-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.snack-card-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.snack-flavour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.snack-flavour-tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 9px;
}
.snack-items {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.snack-food-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── INSTAGRAM GRID ── */
.insta-section { }
.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.insta-slot {
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.insta-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insta-slot.photo-slot-placeholder {
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ── FOOTER ── */
.footer {
  padding: 24px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.footer-logo { font-size: 16px; font-weight: 800; color: var(--yellow); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted2); }

/* ── ARCADE GAMES ── */
.arcade-games {
  font-size: 14px;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── MAP SPLIT ── */
.map-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
}
.map-split iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  display: block;
}
.map-split-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ── CONSOLE SHOWCASE ── */
.console-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 1.25rem;
}
.console-showcase-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--console-color, var(--teal));
  border-radius: 8px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.console-showcase-maker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--console-color, var(--teal));
  text-transform: uppercase;
}
.console-showcase-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.console-games-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── NAV ACTIVE ── */
.nav-active { color: var(--text) !important; }

/* ── ABOUT PHOTO ROWS ── */
.about-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-photo-placeholder {
  height: 180px;
  border-radius: 8px;
}
.about-years-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-photo-tall {
  height: 240px;
  border-radius: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 1.25rem; }
  .hero { padding: 48px 1.25rem 40px; }
  .section { padding: 40px 1.25rem; }
  .event-row { grid-template-columns: 48px 1fr; }
  .event-action { display: none; }
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head { flex-direction: column; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr; grid-template-rows: 240px 240px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 160px 160px; }
  .arcade-layout { grid-template-columns: 1fr; }
  .arcade-photo-slot { height: 220px; }
  .jukebox-layout { grid-template-columns: 1fr; }
  .jukebox-now-playing { max-width: 100%; align-items: center; }
  .jukebox-art, .jukebox-art-placeholder, .jukebox-offline { width: 100%; max-width: 320px; aspect-ratio: 1; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .snack-cards { grid-template-columns: 1fr; }
  .console-showcase { grid-template-columns: repeat(3, 1fr); }
  .map-split { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-section .insta-slot:nth-child(n+4) { display: none; }
  .neon-text { font-size: 24px; letter-spacing: 0.06em; }
}

/* ── BASKET NAV BUTTON ── */
.basket-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.basket-btn svg { flex-shrink: 0; }
.basket-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #0A0A0A;
  border-radius: 100px;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  padding: 0 4px;
}
.basket-count.hidden { display: none; }

/* ── PRODUCT MODAL ── */
#shop-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#shop-modal.open { display: flex; }
.modal-inner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 740px;
  width: 100%;
  height: min(90vh, 680px);
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}
.modal-img {
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  background: var(--bg3);
  height: 100%;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-img-placeholder { width: 100%; height: 100%; background: var(--bg3); }
.modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg2);
  overflow-y: auto;
}
.modal-close-btn {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-bottom: -4px;
}
.modal-close-btn:hover { color: var(--text); }
.modal-title { font-size: 20px; font-weight: 700; line-height: 1.3; }
.modal-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.modal-price { font-size: 22px; font-weight: 700; color: var(--yellow); }
.modal-variations { display: flex; flex-direction: column; gap: 10px; }
.variation-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0; }
.variation-row { display: flex; flex-wrap: wrap; gap: 8px; }
.variation-pill {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
}
.variation-pill.active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,200,180,0.08);
}
.modal-add-btn {
  margin-top: auto;
  background: var(--yellow);
  color: #0A0A0A;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  width: 100%;
}
.modal-add-btn:hover { background: #ffe200; }
@media (max-width: 640px) {
  .modal-inner { grid-template-columns: 1fr; height: 95vh; }
  .modal-img { border-radius: 12px 12px 0 0; height: 220px; flex-shrink: 0; }
  .modal-body { padding: 20px; }
}

/* ── BASKET DRAWER ── */
#basket-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: rgba(0,0,0,0.6);
}
#basket-overlay.open { display: block; }
#basket-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  z-index: 9002;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
}
#basket-drawer.open { right: 0; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 700;
}
.drawer-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  padding: 0;
}
.drawer-close:hover { color: var(--text); }
#basket-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.basket-empty { color: var(--muted); font-size: 14px; padding: 8px 0; }
.basket-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.basket-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.basket-item-img-ph {
  background: var(--bg3);
  width: 60px;
  height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
}
.basket-item-info { flex: 1; min-width: 0; }
.basket-item-name { font-size: 13px; font-weight: 600; line-height: 1.4; }
.basket-item-variant { font-size: 12px; color: var(--muted); margin-top: 2px; }
.basket-item-price { font-size: 13px; font-weight: 700; color: var(--yellow); margin-top: 4px; }
.basket-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.qty-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.qty-btn:hover { border-color: var(--teal); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 18px; text-align: center; }
.drawer-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.drawer-total-amount { color: var(--yellow); }
#basket-checkout-btn {
  width: 100%;
  background: var(--yellow);
  color: #0A0A0A;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
}
#basket-checkout-btn:hover:not(:disabled) { background: #ffe200; }
#basket-checkout-btn:disabled { opacity: 0.5; cursor: default; }
.no-scroll { overflow: hidden; }

/* ── AGE GATE ── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-inner {
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.age-gate-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 2rem;
}
.age-gate-logo span { color: var(--pink); }
.age-gate-icon { font-size: 42px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.25rem; line-height: 1; color: var(--yellow); }
.age-gate-inner h2 {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.age-gate-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.age-gate-btns { display: flex; flex-direction: column; gap: 10px; }
.age-gate-btns button:first-child {
  background: var(--yellow);
  color: #0A0A0A;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.age-gate-btns button:first-child:hover { background: #ffe200; }
.age-gate-btns button:last-child {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
}
.age-gate-back {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}

/* ── NAV CAPS CHIP ── */
.nav-caps-chip {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(245, 230, 66, 0.1);
  border: 1px solid rgba(245, 230, 66, 0.25);
  border-radius: var(--radius);
  padding: 6px 12px;
  white-space: nowrap;
}

/* ── T&C DROPDOWN ── */
.tc-details { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.tc-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: var(--bg2);
  color: var(--text);
}
.tc-summary::-webkit-details-marker { display: none; }
.tc-summary:hover { background: var(--bg3); }
.tc-arrow { font-size: 14px; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.tc-details[open] .tc-arrow { transform: rotate(180deg); }
.tc-details .tc-list {
  padding: 4px 20px 20px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

/* ── MERCH EDITORIAL GRID (homepage) ── */
/* 4-column grid: item 1 is 2×2 (big square), items 2–5 fill 2×2 on the right as 4 small squares */
.merch-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.merch-editorial-card {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg3);
}
.merch-editorial-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.merch-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.merch-editorial-card:hover img { transform: scale(1.04); }
.merch-editorial-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.merch-editorial-card:hover .card-overlay { opacity: 1; }
.merch-editorial-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.2s ease;
}
.merch-editorial-card:hover .card-info { opacity: 1; transform: translateY(0); }
.merch-editorial-card .card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}
.merch-editorial-card .card-price { font-size: 13px; font-weight: 700; color: var(--yellow); }
.merch-editorial-placeholder { background: var(--bg3); width: 100%; height: 100%; }
@media (max-width: 640px) {
  .merch-editorial { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .merch-editorial-card:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .merch-editorial-card .card-overlay,
  .merch-editorial-card .card-info { opacity: 1; transform: translateY(0); }
}

/* ── PLAY (merged arcade + jukebox) ── */
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.75rem;
}
.skeech-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.skeech-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.section-dark .play-card { background: var(--bg3); }
.play-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.play-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
/* Full-size art inside the play card */
.play-card .jukebox-now-playing {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.play-card .jukebox-art,
.play-card .jukebox-art-placeholder,
.play-card .jukebox-offline {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 10px;
  box-shadow: none;
  flex-shrink: 0;
}
.play-card .jukebox-art { object-fit: cover; }
.play-card .jukebox-offline { font-size: 12px; }
.play-card .jukebox-offline-icon { font-size: 32px; }
.play-card .jukebox-track-info { min-width: 0; }

/* ── SKEETCH (double section) ── */
.skeetch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.skeetch-media { display: flex; align-items: center; justify-content: center; }
.skeetch-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 760px) {
  .skeetch-layout { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 860px) {
  .play-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .play-grid { grid-template-columns: 1fr; }
}
