/* ============================================================
   LFG SHOWS — Design System
   Inspired by: Resident Advisor's darkness, Dice's cards,
   Songkick's structure, a real show bulletin board's energy.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* --- Tokens --- */
:root {
  --bg:           #0a0a0a;
  --surface:      #131313;
  --surface-2:    #1c1c1c;
  --surface-3:    #242424;
  --border:       #282828;
  --border-light: #333;
  --accent:       #e8372c;
  --accent-dark:  #b82b22;
  --accent-glow:  rgba(232,55,44,.18);
  --gold:         #f0c040;
  --gold-dim:     rgba(240,192,64,.15);
  --text:         #f0f0f0;
  --text-muted:   #888;
  --text-dim:     #4a4a4a;
  --tag-bg:       rgba(255,255,255,.06);
  --tag-text:     #aaa;
  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    18px;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --sidebar-w:    260px;
  --header-h:     60px;
  --nav-h:        60px;
  --shadow:       0 2px 20px rgba(0,0,0,.6);
  --shadow-card:  0 1px 3px rgba(0,0,0,.5);
  --ease:         cubic-bezier(.4,0,.2,1);
}

/* --- Color duotone overlays for images ---
   Applied as a ::after pseudo-element on the card image wrapper,
   using mix-blend-mode: color for a screenprinted/duotone look.
   Each show gets a deterministic color class from its ID % 6.
   --- */
.img-wrap { position: relative; display: block; flex-shrink: 0; }
.img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: .22;
  mix-blend-mode: color;
  pointer-events: none;
  transition: opacity .3s;
}
.img-wrap:hover::after { opacity: .1; }
.cf-0::after  { background: #e8372c; }   /* red */
.cf-1::after  { background: #f0c040; }   /* gold */
.cf-2::after  { background: #3c9cf0; }   /* blue */
.cf-3::after  { background: #e040c0; }   /* magenta */
.cf-4::after  { background: #40e0a0; }   /* teal */
.cf-5::after  { background: #c040f0; }   /* violet */

/* --- Show placeholder gradient (imageless shows) --- */
.img-placeholder {
  display: grid;
  place-items: center;
  background-size: 200% 200%;
  animation: grad-shift 8s ease infinite;
}
.cp-0 { background: linear-gradient(135deg, #1a0505 0%, #3d0e0e 100%); }
.cp-1 { background: linear-gradient(135deg, #1a1500 0%, #3d3000 100%); }
.cp-2 { background: linear-gradient(135deg, #001530 0%, #003060 100%); }
.cp-3 { background: linear-gradient(135deg, #2a0030 0%, #5a0060 100%); }
.cp-4 { background: linear-gradient(135deg, #001a15 0%, #003530 100%); }
.cp-5 { background: linear-gradient(135deg, #1a0020 0%, #3a0050 100%); }
@keyframes grad-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* --- Grain/noise texture overlay --- */
.noise-overlay {
  position: relative;
}
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: .04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* --- Card hover lift + glow --- */
.show-card:hover { background: var(--surface); }
.show-card { will-change: transform; }

/* --- Featured card enhancements --- */
.featured-card { transition: transform .3s var(--ease); }
.featured-card:hover { transform: scale(1.01); z-index: 1; }
.featured-card__title {
  text-shadow: 0 1px 12px rgba(0,0,0,.9);
  transition: letter-spacing .25s var(--ease);
}
.featured-card:hover .featured-card__title { letter-spacing: .02em; }
.featured-card__content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height .3s var(--ease);
}
.featured-card:hover .featured-card__content::before { height: 100%; }
.featured-card__content { position: relative; }

/* --- Stagger animation for show lists --- */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.show-card {
  animation: slideIn .3s var(--ease) both;
}
.show-card:nth-child(1)  { animation-delay: .03s; }
.show-card:nth-child(2)  { animation-delay: .06s; }
.show-card:nth-child(3)  { animation-delay: .09s; }
.show-card:nth-child(4)  { animation-delay: .12s; }
.show-card:nth-child(5)  { animation-delay: .15s; }
.show-card:nth-child(n+6){ animation-delay: .18s; }

/* --- Logo mark pulse --- */
.site-logo__mark {
  transition: transform .2s var(--ease), box-shadow .2s;
}
.site-logo__mark:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

/* --- Venue card hover --- */
.venue-card:hover .venue-card__letter {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}
.venue-card__letter { transition: all .15s var(--ease); }

/* --- City card hover glow --- */
.city-card {
  transition: all .2s var(--ease);
}
.city-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,55,44,.15);
}
.city-card__name { transition: color .15s; }
.city-card:hover .city-card__name { color: var(--accent); }

/* --- Accent underline on section titles --- */
.section-title {
  position: relative;
  display: inline-block;
}

/* --- Featured grid gap accent lines --- */
.featured-grid { position: relative; }

/* --- "Tonight" badge pulse --- */
.date-group__tag.tonight {
  animation: pulse-gold 2s ease infinite;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,192,64,0); }
  50%      { box-shadow: 0 0 0 4px rgba(240,192,64,.15); }
}

/* --- Accent bar on sidebar active item --- */
.sidebar-nav__item.active {
  background: var(--surface-2);
  color: var(--text);
}
.sidebar-nav__item.active::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* --- Ticket button shimmer --- */
.show-card__ticket {
  position: relative;
  overflow: hidden;
}
.show-card__ticket::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-15deg);
  transition: left .4s var(--ease);
}
.show-card__ticket:hover::after { left: 150%; }

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
}
.site-logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  color: var(--text);
  white-space: nowrap;
}
.site-logo__name span { color: var(--accent); }

.header-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.header-search__input {
  width: 100%;
  height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0 16px 0 40px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s var(--ease);
}
.header-search__input::placeholder { color: var(--text-muted); }
.header-search__input:focus { border-color: var(--accent); }
.header-search__icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-nav__link {
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s, background .15s;
}
.header-nav__link:hover,
.header-nav__link.active { color: var(--text); background: var(--surface-2); }

.header-cta {
  padding: 7px 16px;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background .15s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); }

/* ===========================================
   LAYOUT
   =========================================== */
.app-layout {
  display: flex;
  min-height: calc(100vh - var(--header-h));
}

/* --- Sidebar --- */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  border-right: 1px solid var(--border);
  padding: 20px 0;
}
.sidebar-section {
  padding: 0 16px 20px;
}
.sidebar-section + .sidebar-section {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.sidebar-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s, background .15s;
  user-select: none;
}
.sidebar-nav__item:hover { color: var(--text); background: var(--surface-2); }
.sidebar-nav__item.active { color: var(--text); background: var(--surface-2); }
.sidebar-nav__item.active::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.sidebar-nav__item { position: relative; }
.sidebar-nav__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-dim);
  background: var(--surface-3);
  padding: 1px 7px;
  border-radius: 20px;
}

/* Quick date filters */
.quick-filters {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quick-filter {
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s, background .15s;
}
.quick-filter:hover { color: var(--text); background: var(--surface-2); }
.quick-filter.active { color: var(--gold); background: var(--gold-dim); }

/* --- Main content --- */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 0 0 80px;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(.4);
  transform: scale(1.05);
  transition: opacity .6s var(--ease);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.2) 0%,
    rgba(10,10,10,.0) 30%,
    rgba(10,10,10,.85) 100%
  );
}
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.hero__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.5px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
  margin-bottom: 8px;
}
.hero__venue {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.hero__ticket {
  flex-shrink: 0;
  padding: 12px 22px;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.hero__ticket:hover { background: var(--accent-dark); transform: translateY(-1px); }

.hero__dots {
  position: absolute;
  bottom: 0;
  left: 28px;
  display: flex;
  gap: 6px;
  padding-bottom: 12px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero__dot.active { background: #fff; transform: scale(1.3); }

/* ===========================================
   CITY PILLS (tablet/mobile horizontal scroll — hidden on desktop where sidebar shows cities)
   =========================================== */
.city-scroll {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.city-scroll::-webkit-scrollbar { display: none; }
.city-pill {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.city-pill:hover { border-color: var(--border-light); color: var(--text); }
.city-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===========================================
   DATE GROUP HEADERS
   =========================================== */
.date-group {
  padding: 0 20px;
  /* date-group__header spans outside the show-list grid */
}
.date-group + .date-group { margin-top: 8px; }
.date-group__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1px;
}
.date-group__day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -.3px;
  line-height: 1;
}
.date-group__day.today   { color: var(--gold); }
.date-group__day.tomorrow { color: var(--accent); }
.date-group__count {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: auto;
}
.date-group__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.date-group__tag.tonight {
  background: var(--gold-dim);
  color: var(--gold);
}
.date-group__tag.tomorrow {
  background: var(--accent-glow);
  color: var(--accent);
}

/* ===========================================
   SHOW CARDS
   =========================================== */
/* ===========================================
   SHOW LIST — poster grid (desktop) / row list (mobile)
   =========================================== */

/* Desktop: 3-column poster grid */
.show-list {
  display: flex;
  flex-wrap: wrap;
}

.show-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 33.333%;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.show-card:nth-child(3n) { border-right: none; }
.show-card:hover { background: var(--surface); }
.show-card:hover .show-card__img img { transform: scale(1.04); }
.show-card:active { background: var(--surface-2); }

/* Full-width image fills top of card */
.show-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-3);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
  position: relative;
}
.show-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.show-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text-dim);
}
/* Poster placeholder — gradient with artist name */
.show-card__poster {
  width: 100%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}
.show-card__poster-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 2.5vw, 28px);
  color: rgba(255,255,255,.2);
  text-align: center;
  letter-spacing: -.5px;
  text-transform: uppercase;
  padding: 12px;
  line-height: 1;
  word-break: break-word;
}

/* Info section below image */
.show-card__info {
  padding: 12px 14px 14px;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.show-card__time {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.show-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -.2px;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show-card__artists {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.show-card__location {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: auto;
  padding-top: 6px;
}
.show-card__location strong { color: var(--text-muted); font-weight: 500; }
.show-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.show-card__tag {
  font-size: 10px;
  padding: 2px 7px;
  background: var(--tag-bg);
  color: var(--tag-text);
  border-radius: 4px;
  letter-spacing: .02em;
}
.show-card__tag.free {
  background: rgba(80,200,120,.1);
  color: #60c878;
}
/* CTA hidden — card itself is the link */
.show-card__cta { display: none; }
.show-card__ticket {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
  white-space: nowrap;
}
.show-card__ticket:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.show-card__price {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===========================================
   HOME HERO BILLBOARD
   =========================================== */
.home-hero {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(.72) saturate(1.1);
  transition: transform 10s linear, filter .4s;
  z-index: 0;
}
.home-hero:hover .home-hero__bg {
  transform: scale(1.03);
  filter: brightness(.8) saturate(1.15);
}
/* Gradient: transparent top → heavy black bottom, Dice/RA style */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.7)  30%,
    rgba(0,0,0,.25) 60%,
    rgba(0,0,0,.05) 100%
  );
  z-index: 1;
}
.home-hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  padding: 40px 28px 36px;
}
.home-hero__left { flex: 1; min-width: 0; }
.home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.home-hero__badge {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.home-hero__city {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .93;
  letter-spacing: -.5px;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  margin-bottom: 12px;
}
.home-hero__artists {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  font-weight: 500;
}
.home-hero__meta {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  font-weight: 500;
}
.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.home-hero__btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.home-hero__btn:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(0,0,0,.5); }
.home-hero__more {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
  font-weight: 600;
  letter-spacing: .02em;
}
.home-hero__more:hover { color: #fff; }

/* Hero slide dots */
.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active {
  width: 24px;
  background: #fff;
}

/* Hero bg crossfade */
.home-hero__bg {
  transition: opacity .7s ease, transform 10s linear;
}
.home-hero__bg.fading { opacity: 0; }

/* Hero text fade */
.home-hero__left {
  transition: opacity .35s ease;
}
.home-hero__left.fading { opacity: 0; }

/* Hero side cards (3 small stacked) */
.home-hero__side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  width: 220px;
}
.hero-side-card {
  position: relative;
  height: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  transition: transform .2s var(--ease);
  cursor: pointer;
}
.hero-side-card:hover { transform: scale(1.02); }
.hero-side-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 100%);
}
.hero-side-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
}
.hero-side-card__date {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-side-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-side-card__venue {
  font-size: 10px;
  color: rgba(255,255,255,.5);
}

/* ===========================================
   MARQUEE TICKER
   =========================================== */
.marquee-bar {
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  border-bottom: 1px solid var(--accent-dark);
  height: 36px;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 45s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  padding: 0 12px;
  text-transform: uppercase;
}
.marquee-sep { opacity: .5; margin: 0 3px; }
.marquee-city { color: rgba(255,255,255,.65); font-weight: 600; }
.marquee-dot {
  color: rgba(255,255,255,.4);
  font-size: 8px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* ===========================================
   STATS BAR
   =========================================== */
.stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stats-bar__item {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 0 20px 0 0;
  flex-shrink: 0;
}
.stats-bar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1;
}
.stats-bar__label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.stats-bar__divider {
  width: 1px;
  height: 24px;
  background: var(--border-light);
  margin: 0 20px 0 0;
  flex-shrink: 0;
}
.stats-bar__filters {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.stats-filter {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .12s;
  white-space: nowrap;
}
.stats-filter:hover { border-color: var(--border-light); color: var(--text); }
.stats-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===========================================
   CITY PILLS (horizontal scroll)
   =========================================== */
.city-pill__count {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  margin-left: 4px;
  font-weight: 700;
}
.city-pill.active .city-pill__count { background: rgba(255,255,255,.25); }

/* ===========================================
   EDITORIAL SECTION (3-card featured grid)
   =========================================== */
.editorial-section {
  padding: 24px 20px 0;
}
.editorial-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8px;
  height: 380px;
}
.edit-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  display: block;
  text-decoration: none;
  transition: transform .3s var(--ease);
}
.edit-main:hover { transform: scale(1.01); }
.edit-main__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 55%);
}
.edit-main__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.edit-main__date {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.edit-main__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  margin-bottom: 6px;
}
.edit-main__meta {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.edit-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.edit-small {
  flex: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  display: block;
  text-decoration: none;
  transition: transform .25s var(--ease);
}
.edit-small:hover { transform: scale(1.02); }
.edit-small__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 60%);
}
.edit-small__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
}
.edit-small__date {
  font-size: 9px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.edit-small__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.edit-small__meta {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}

/* ===========================================
   EVENT STRIP — horizontal scrolling tile row (Dice/RA pattern)
   =========================================== */
.event-strip {
  margin-top: 28px;
}
.event-strip + .event-strip {
  margin-top: 4px;
}
.event-strip__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 20px 14px;
}
.event-strip__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.3px;
  color: var(--text);
}
.event-strip__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.event-strip__more {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.event-strip__more:hover { color: var(--accent-dark); }
.event-strip__cards {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.event-strip__cards::-webkit-scrollbar { display: none; }

.event-tile {
  flex-shrink: 0;
  width: 190px;
  height: 270px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.event-tile:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.event-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.05) 75%);
}
.event-tile__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
}
.event-tile__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.event-tile__date {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.event-tile__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-tile__venue {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-tile__city {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
}
/* Gradient placeholder for imageless event tiles */
.event-tile--no-img .event-tile__overlay {
  background: none;
}
.event-tile--no-img .event-tile__poster-text {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: rgba(255,255,255,.2);
  letter-spacing: -1px;
  word-break: break-word;
}

/* ===========================================
   SHOWS SECTION HEADER + LIST
   =========================================== */
.shows-section {
  margin-top: 28px;
}
.shows-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 20px 16px;
}
.shows-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.3px;
  color: var(--text);
}
.shows-section__all {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.shows-section__all:hover { color: var(--accent-dark); }

/* ===========================================
   SECTION HEADERS (generic)
   =========================================== */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 20px 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.3px;
}
.section-more {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

/* ===========================================
   CITY SECTION
   =========================================== */
.city-section {
  padding: 28px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}
.city-section__header {
  padding: 0 20px 16px;
}
.city-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.3px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  padding: 0 20px 20px;
}
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  cursor: pointer;
  transition: all .15s var(--ease);
  display: block;
  text-decoration: none;
}
.city-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.2px;
  color: var(--text);
  margin-bottom: 3px;
}
.city-card__count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===========================================
   SHOW DETAIL PAGE
   =========================================== */
.show-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.show-detail__hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 28px;
  text-align: center;
}
.show-detail__hero-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.show-detail__hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  pointer-events: none;
}
.show-detail__hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
}
.show-detail__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.show-detail__title-block {
  padding: 20px 0 4px;
}
.show-detail__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.5px;
  color: var(--text);
  margin-top: 10px;
}
.show-detail__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.show-detail__spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #1DB954;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.show-detail__spotify-btn:hover { background: #1aa34a; transform: translateY(-1px); }
.show-detail__spotify-hero {
  border-radius: 0;
  overflow: hidden;
  background: #000;
  margin-bottom: 0;
}
.show-detail__spotify-hero iframe { display: block; }
.show-detail__spotify-embed {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.show-detail__spotify-embed iframe { display: block; border-radius: 12px; }
.show-detail__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.show-detail__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.show-detail__meta-icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.show-detail__meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.show-detail__meta-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.show-detail__meta-value.gold { color: var(--gold); }

.show-detail__ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  transition: all .15s;
}
.show-detail__ticket-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

.show-detail__section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.2px;
  margin-bottom: 14px;
  color: var(--text);
}
.show-detail__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  white-space: pre-wrap;
}
.show-detail__artists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.show-detail__artist-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.show-detail__artist-chip:hover { border-color: var(--accent); color: var(--accent); }

.show-detail__source {
  margin-top: 28px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  border-left: 3px solid var(--border-light);
}
.show-detail__source a { color: var(--accent); }

/* ===========================================
   SEARCH PAGE
   =========================================== */
.search-hero {
  padding: 40px 20px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.search-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.search-hero__input-wrap {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.search-hero__input {
  width: 100%;
  height: 52px;
  background: var(--surface);
  border: 2px solid var(--border-light);
  border-radius: 28px;
  padding: 0 20px 0 50px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.search-hero__input:focus { border-color: var(--accent); }
.search-hero__icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ===========================================
   EMPTY + LOADING STATES
   =========================================== */
.empty-state {
  padding: 60px 20px;
  text-align: center;
}
.empty-state__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: .4;
}
.empty-state__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.empty-state__sub { font-size: 14px; color: var(--text-dim); }

.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.skeleton-img  { width: 88px; height: 88px; }
.skeleton-line { height: 14px; margin-bottom: 8px; }
.skeleton-line:last-child { width: 60%; }

/* ===========================================
   BOTTOM NAV (mobile)
   =========================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color .15s;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bottom-nav__item:hover,
.bottom-nav__item.active { color: var(--accent); }
.bottom-nav__icon { font-size: 20px; line-height: 1; }

/* ===========================================
   LOAD MORE
   =========================================== */
.load-more-wrap {
  padding: 24px 20px;
  text-align: center;
}
.load-more-btn {
  padding: 12px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.load-more-btn:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-dim); }

/* ===========================================
   BACK BUTTON
   =========================================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s;
}
.back-btn:hover { color: var(--text); }

/* ===========================================
   PAGE TRANSITIONS
   =========================================== */
.page-enter { animation: fadeUp .25s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .sidebar { display: none; }
  .city-scroll { display: flex; }
  .editorial-grid { height: 300px; }
  .home-hero__side { width: 180px; }
}

@media (min-width: 641px) {
  .bottom-nav  { display: none !important; }
}

@media (max-width: 900px) {
  .home-hero__side { display: none; }
  .editorial-grid { grid-template-columns: 1fr; height: auto; }
  .edit-main { height: 240px; }
  .edit-side { flex-direction: row; }
  .edit-small { height: 120px; }
}

@media (max-width: 640px) {
  :root { --header-h: 54px; }
  .header-nav    { display: none; }
  .header-cta    { display: none; }
  .header-search { max-width: unset; }
  .site-logo__name { display: none; }

  .bottom-nav { display: grid; }
  .main-content { padding-bottom: calc(var(--nav-h) + 16px); }

  .home-hero { min-height: 44vh; }
  .home-hero__body { padding: 24px 16px 20px; }
  .home-hero__title { font-size: 36px; }
  .home-hero__btn { padding: 10px 18px; font-size: 13px; }
  .home-hero__side { display: none; }

  .stats-bar { padding: 10px 14px; }
  .stats-bar__num { font-size: 20px; }
  .stats-bar__item { padding-right: 14px; }
  .stats-bar__divider { margin-right: 14px; }
  .stats-bar__filters { display: none; }

  .editorial-section { padding: 16px 14px 0; }
  .editorial-grid { grid-template-columns: 1fr; height: auto; }
  .edit-main { height: 220px; }
  .edit-side { flex-direction: row; gap: 6px; }
  .edit-small { height: 110px; }

  .event-strip { margin-top: 20px; }
  .event-strip__header { padding: 0 14px 12px; }
  .event-strip__title { font-size: 19px; }
  .event-strip__cards { padding: 0 14px 16px; gap: 8px; }
  .event-tile { width: 160px; height: 240px; }
  .event-tile__title { font-size: 15px; }

  .shows-section__header { padding: 0 14px 12px; }
  /* Mobile: compact row layout */
  .show-card {
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-right: none;
  }
  .show-card__img {
    width: 72px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border-radius: var(--radius);
  }
  .show-card__img-placeholder,
  .show-card__poster {
    width: 72px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border-radius: var(--radius);
  }
  .show-card__poster-text { font-size: 10px; }
  .show-card__info { padding: 0; }
  .show-card__title { font-size: 16px; -webkit-line-clamp: 2; }
  .show-card__location { margin-top: 0; padding-top: 0; }

  .date-group { padding: 0 14px; }
  .section-header { padding: 16px 14px 12px; }
  .city-section { padding: 20px 0; }
  .city-section__header { padding: 0 14px 12px; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); padding: 0 14px 16px; gap: 6px; }

  .show-detail { padding: 0 14px 40px; }
  .show-detail__hero { height: 240px; }
  .show-detail__title { font-size: 28px; }
}

/* ===========================================
   TOAST NOTIFICATIONS
   =========================================== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===========================================
   VENUE PAGES
   =========================================== */
.venue-header {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.venue-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(.25);
  transform: scale(1.05);
}
.venue-header__content {
  position: relative;
  padding: 28px 24px 24px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.venue-header__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--surface-3);
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.venue-header__img-placeholder {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--surface-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text-dim);
  border: 2px solid var(--border-light);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.venue-header__info { flex: 1; min-width: 0; }
.venue-header__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -.5px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.venue-header__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.venue-header__show-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.venue-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.venue-meta-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.venue-meta-bar__item a { color: var(--accent); }
.venue-meta-bar__item a:hover { text-decoration: underline; }
.venue-meta-bar__item svg { color: var(--accent); flex-shrink: 0; }

/* Venue list cards (different from show cards) */
.venue-list { display: flex; flex-direction: column; }
.venue-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
  cursor: pointer;
}
.venue-card:hover { background: var(--surface); }
.venue-card__letter {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dim);
  flex-shrink: 0;
}
.venue-card:hover .venue-card__letter { border-color: var(--accent); color: var(--accent); }
.venue-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.2px;
  margin-bottom: 3px;
}
.venue-card__sub { font-size: 13px; color: var(--text-muted); }
.venue-card__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Past shows section */
.past-shows-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-top: 1px solid var(--border);
  transition: color .15s;
}
.past-shows-toggle:hover { color: var(--text); }
.past-shows-toggle svg { transition: transform .2s; }
.past-shows-toggle.open svg { transform: rotate(180deg); }
.past-shows-list { display: none; }
.past-shows-list.open { display: block; }
.past-show-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .12s;
}
.past-show-row:hover { background: var(--surface); color: var(--text); }
.past-show-row__date {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  width: 80px;
}
.past-show-row__title { flex: 1; font-weight: 500; }

@media (max-width: 640px) {
  .venue-header__content { padding: 20px 14px 16px; }
  .venue-meta-bar { padding: 12px 14px; }
  .venue-card { grid-template-columns: 44px 1fr; padding: 12px 14px; }
  .venue-card__badge { display: none; }
  .venue-card__letter { width: 44px; height: 44px; font-size: 18px; }
}

/* ===========================================
   AUTH SYSTEM
   =========================================== */

/* Header auth slot */
.header-auth { margin-left: auto; display: flex; align-items: center; }
.auth-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .03em;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.auth-btn:hover { opacity: .85; }

/* Auth user chip */
.auth-user {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 20px;
  transition: background .12s;
}
.auth-user:hover { background: var(--surface); }
.auth-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.auth-avatar--initials {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-username {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Auth modal */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}
.auth-modal__box {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 400px;
  margin: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: modal-in .2s ease;
}
@keyframes modal-in {
  from { transform: translateY(20px) scale(.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background .12s;
}
.auth-modal__close:hover { background: var(--surface); color: var(--text); }
.auth-modal__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1px;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}
.auth-modal__tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 8px 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .15s;
}
.auth-tab.active {
  background: var(--surface-3);
  color: var(--text);
}

/* Auth form */
.auth-form { display: flex; flex-direction: column; gap: 10px; }
.auth-form__error {
  color: var(--accent);
  font-size: 13px;
  min-height: 18px;
  text-align: center;
}
.auth-form__label { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: -4px; }
.auth-form__input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.auth-form__input:focus { border-color: var(--accent); }
.auth-form__submit {
  margin-top: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .15s;
}
.auth-form__submit:hover { opacity: .87; }
.auth-form__submit:disabled { opacity: .5; cursor: wait; }
.auth-form__switch { font-size: 13px; color: var(--text-dim); text-align: center; }
.auth-form__switch a { color: var(--accent); cursor: pointer; text-decoration: underline; }

/* User dropdown menu */
.user-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
}
.user-menu__backdrop {
  position: absolute;
  inset: 0;
}
.user-menu__box {
  position: absolute;
  top: 60px;
  right: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  min-width: 200px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  animation: modal-in .15s ease;
}
.user-menu__header {
  padding: 8px 10px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.user-menu__header strong { display: block; font-size: 14px; color: var(--text); }
.user-menu__city { font-size: 12px; color: var(--text-dim); }
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background .1s;
  text-decoration: none;
}
.user-menu__item:hover { background: var(--surface); }
.user-menu__item.danger { color: var(--accent); }
.user-menu__divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ===========================================
   SHOW INTERACTIONS
   =========================================== */

.show-detail__interact {
  margin: 28px 0;
  padding: 20px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.show-interact__auth {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.show-interact__rsvp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .02em;
}
.show-interact__rsvp-btn.secondary {
  background: var(--surface-2);
  border: 1.5px solid var(--border-light);
  color: var(--text);
}
.show-interact__rsvp-btn:hover { transform: translateY(-1px); }
.show-interact__rsvp-btn.active {
  box-shadow: 0 0 0 2px var(--accent);
}
.show-interact__rsvp-btn.secondary.active {
  border-color: var(--accent);
  color: var(--accent);
}
.show-interact__remove-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.show-interact__hint { font-size: 12px; color: var(--text-dim); }
.show-interact__cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  margin-left: auto;
}
.show-interact__cal-btn:hover { color: var(--accent); }
.auth-prompt-btn {
  background: none;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .12s;
}
.auth-prompt-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Show sections */
.show-detail__section {
  margin: 28px 0;
}
.show-detail__section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* Comments */
.comment {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.comment:last-child { border-bottom: none; }
.comment__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment__avatar--initials {
  background: var(--surface-3);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.comment__body { flex: 1; min-width: 0; }
.comment__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.comment__name { font-size: 13px; color: var(--text); }
.comment__time { font-size: 11px; color: var(--text-dim); }
.comment__delete {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  opacity: 0;
  transition: opacity .15s;
}
.comment:hover .comment__delete { opacity: 1; }
.comment__delete:hover { color: var(--accent); }
.comment__text { font-size: 14px; color: var(--text-muted); line-height: 1.5; word-break: break-word; }
.empty-comments { font-size: 14px; color: var(--text-dim); padding: 16px 0; }

.comment-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color .15s;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.comment-input:focus { border-color: var(--accent); }

.submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: opacity .12s;
}
.submit-btn:hover { opacity: .85; }

/* Photos */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 1;
}
.photo-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .3s;
}
.photo-item:hover .photo-item__img { transform: scale(1.04); }
.photo-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
  font-size: 11px;
  padding: 16px 8px 6px;
}
.photo-item__user {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.photo-item__delete {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,.6);
  border: none;
  color: #fff;
  font-size: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-item:hover .photo-item__delete { opacity: 1; }
.empty-photos { font-size: 14px; color: var(--text-dim); padding: 12px 0; }

.photo-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1.5px dashed var(--border-light);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .15s;
  margin-bottom: 10px;
}
.photo-upload-btn:hover { border-color: var(--accent); color: var(--accent); }
.photo-caption-input {
  display: block;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Photo lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.photo-lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Calendar export */
.cal-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  transition: border-color .12s, color .12s;
}
.cal-export-btn:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .header-auth { display: none; }
  .auth-modal__box { padding: 28px 20px 24px; }
  .photos-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .show-interact__auth { gap: 8px; }
}

/* ===========================================
   BREADCRUMBS
   =========================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.breadcrumb__link {
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color .12s;
}
.breadcrumb__link:hover { color: var(--accent); }
.breadcrumb__sep {
  color: var(--text-dim);
  opacity: .4;
  font-size: 11px;
  padding: 0 2px;
}
.breadcrumb__current {
  color: var(--text);
  font-weight: 500;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===========================================
   CITY PAGE CONTEXT BLOCK
   =========================================== */
.city-page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -.5px;
  color: var(--text);
  margin: 0 0 16px;
}
.city-context {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.city-context__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.city-context__stat {
  font-size: 14px;
  color: var(--text-muted);
}
.city-context__stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  margin-right: 3px;
}
.city-context__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}
.city-context__genre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .03em;
}
.city-context__venues {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.city-context__venue {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color .12s;
}
.city-context__venue:hover { border-color: var(--accent); }
.city-context__venue strong { font-size: 13px; color: var(--text); display: block; }
.city-context__venue span { font-size: 11px; color: var(--text-dim); }

@media (max-width: 640px) {
  .city-page-title { font-size: 24px; }
  .city-context { padding: 14px; }
  .city-context__genres { margin-left: 0; }
}
