/* ── FILTERS ── */
.lineup-filters {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-pill {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(154, 123, 191, 0.25);
  padding: 0.3rem 0.85rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: 0;
}
.filter-pill:hover { border-color: var(--acid); color: var(--acid); }
.filter-pill.active {
  background: var(--acid);
  color: var(--deep);
  border-color: var(--acid);
}

.search-row { width: 100%; }

.tag-search {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid rgba(154, 123, 191, 0.25);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
}
.tag-search::placeholder { color: var(--muted); }
.tag-search:focus { border-color: var(--acid); }

/* ── LINEUP WRAP ── */
.lineup-wrap {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

/* ── DAY SECTION ── */
.day-section { margin-bottom: 3.5rem; }

.day-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

/* ── ARTIST GRID ── */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(200, 255, 0, 0.05);
  border: 1px solid rgba(200, 255, 0, 0.05);
}

/* ── ARTIST CARD ── */
.artist-card {
  background: var(--deep);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  animation: fadeUp 0.4s ease both;
}
.artist-card:hover { background: var(--surface); }

.artist-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.2s;
}
.artist-card:hover .artist-img { filter: grayscale(0%); }

.artist-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(200, 255, 0, 0.15);
  letter-spacing: -0.02em;
}

.artist-info {
  padding: 0.75rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.artist-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.artist-meta {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.artist-tag {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 0.15rem 0.4rem;
}

.artist-link {
  display: block;
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.artist-link:hover { color: var(--acid); }

/* ── EMPTY STATE ── */
.lineup-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.hidden { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .lineup-filters, .lineup-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .artist-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .tag-search { max-width: 100%; }
}