#shows {
  position: relative;
  color: #f5f5f5;
  overflow: hidden;
  padding: 8rem 2rem;
  z-index: 1;

  /* keep original gradient */
  background: linear-gradient(
    to top,
    #000000 0%,
    #020617 45%,
    #1f2937 100%
  );
  isolation: isolate;
}

/* Soft top + bottom fades so it blends into neighbours */
#shows::before,
#shows::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 7rem;
  pointer-events: none;
  z-index: 0;
}

#shows::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Decorative blur blobs */
#shows .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  z-index: 0;
  opacity: 0.55;
}
#shows .blur-circle.top-left {
  width: 260px;
  height: 260px;
  top: -80px;
  left: -60px;
  background: rgba(129, 140, 248, 0.45);
}
#shows .blur-circle.bottom-right {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -60px;
  background: rgba(236, 72, 153, 0.45);
}

/* Section heading */
#shows h2 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: center;
}

#shows p {
  color: #9ca3af;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: center;
}

/* Gradient underline bar under heading */
#shows .shows-underline {
  width: 160px;
  height: 0.25rem;
  border-radius: 999px;
  margin: 2rem auto 3rem auto;
  background: linear-gradient(to right, #a855f7, #ec4899);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.7);
}

/*Filter controls container*/
.shows-controls {
  position: relative;
  background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 60px rgba(15, 23, 42, 0.9),
    0 0 30px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  margin-bottom: 3rem;
}

.shows-controls::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.shows-controls label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e5e7eb;
  opacity: 0.85;
}

/* select base */
.shows-controls select {
  background-color: #020617;
  border: 1px solid #374151;
  color: #e5e7eb;
  font-size: 0.85rem;
  border-radius: 9999px;
  padding: 0.4rem 2.2rem 0.4rem 0.9rem;
  appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.15s ease;
}

/* Little down-arrow effect using background */
.shows-controls select {
  background-image:
    linear-gradient(45deg, #a855f7 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #ec4899 50%);
  background-position:
    calc(100% - 1.4rem) 50%,
    calc(100% - 1rem) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.shows-controls select:hover {
  border-color: #a855f7;
  background-color: #020617;
  transform: translateY(-1px);
}

.shows-controls select:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.6);
}

/* On very small screens, let the controls breathe */
@media (max-width: 640px) {
  .shows-controls {
    border-radius: 1.25rem;
    padding: 0.85rem;
  }
}

/* Show card */
.show-card {
  background:
    radial-gradient(circle at top left, #1f2937 0, #020617 55%, #020617 100%);
  border: 1px solid #27272f;
  border-radius: 1.7rem;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

/* glow edge */
.show-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 220deg,
    rgba(168, 85, 247, 0.24),
    rgba(236, 72, 153, 0.3),
    transparent 40%,
    transparent 80%,
    rgba(168, 85, 247, 0.3)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

/* subtle highlight wash */
.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.show-card:hover {
  transform: translateY(-4px);
  border-color: #7c3aed;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
}

.show-card:hover::before,
.show-card:hover::after {
  opacity: 1;
}

/* Layout on larger screens */
@media (min-width: 768px) {
  .show-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Left side: info */
.show-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
}

/* Calendar + date */
.show-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.show-date svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: #a855f7;
  flex-shrink: 0;
}

.show-date span {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.show-date span strong {
  font-weight: 800;
}

/* Sold out pill (re-using your class name) */
.bg-red-500 {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, #ef4444, #f97373);
  color: #fee2e2;
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.55);
}

/* Venue & location text */
.show-info h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-top: 0.4rem;
  letter-spacing: -0.03em;
}

.show-info p {
  color: #9ca3af;
  font-size: 0.98rem;
}

/* Ticket button (and your .mt-3 anchor alias) */
.show-info a.mt-3 {
  text-decoration: none;
}

.show-ticket,
.show-info a.mt-3 {
  background: linear-gradient(to right, #7c3aed, #ec4899);
  padding: 0.8rem 1.9rem;
  border-radius: 9999px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  margin-top: 0.7rem;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-ticket:hover,
.show-info a.mt-3:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
  filter: brightness(1.05);
}

.show-ticket svg {
  width: 1rem;
  height: 1rem;
}

/* Right side: image */
.show-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1rem;
  position: relative;
}

.show-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.show-card:hover .show-image-wrapper::before {
  opacity: 1;
}

.show-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
  background-color: #020617;
  border: 1px solid rgba(31, 41, 55, 0.95);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.show-card:hover .show-image {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.95);
}

@media (min-width: 768px) {
  .show-image-wrapper {
    margin-top: 0;
    margin-left: 1.75rem;
  }

  .show-image {
    max-width: 260px;
  }
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #shows {
    padding: 6rem 1.25rem;
    text-align: left;
  }

  #shows h2 {
    font-size: 3rem;
    text-align: left;
  }

  #shows p {
    font-size: 1rem;
    text-align: left;
  }

  .show-card {
    padding: 1.4rem;
  }

  .show-image-wrapper {
    width: 100%;
    justify-content: flex-start;
  }

  .show-ticket,
  .show-info a.mt-3 {
    width: 100%;
    justify-content: center;
  }
}
