body {
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  background: #ffffff;
  background-image:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(200, 160, 230, 0.6) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(180, 140, 220, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 20%,
      rgba(230, 210, 245, 0.8) 0%,
      transparent 40%
    );
}

/* PAGE WRAPPER */
.page-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.page-title {
  font-family: "Permanent Marker", cursive;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(100, 50, 160, 0.3);
  letter-spacing: 0.05em;
}

/* SHOW LIST */
.show-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.show-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition:
    background 0.2s,
    transform 0.2s;
  animation: fadeUp 0.4s ease both;
  text-align: center;
}

.show-card:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.show-card:nth-child(1) {
  animation-delay: 0.05s;
}
.show-card:nth-child(2) {
  animation-delay: 0.1s;
}
.show-card:nth-child(3) {
  animation-delay: 0.15s;
}
.show-card:nth-child(4) {
  animation-delay: 0.2s;
}
.show-card:nth-child(5) {
  animation-delay: 0.25s;
}
.show-card:nth-child(6) {
  animation-delay: 0.3s;
}
.show-card:nth-child(7) {
  animation-delay: 0.35s;
}
.show-card:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2d1a40;
  text-align: center;
}

.show-location {
  font-size: 0.85rem;
  color: #7c5a9a;
  margin-top: 2px;
}

/* BUTTONS */
.show-btn {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  cursor: pointer;
  border: none;
}

.show-btn.tickets {
  background: rgba(255, 255, 255, 0.85);
  color: #3b1a5e;
  border: 1.5px solid rgba(150, 100, 200, 0.3);
}

.show-btn.tickets:hover {
  background: #6b21a8;
  color: #fff;
  transform: scale(1.04);
}

.show-btn.waitlist {
  background: rgba(220, 190, 245, 0.5);
  color: #5b3080;
  border: 1.5px solid rgba(150, 100, 200, 0.25);
}

.show-btn.waitlist:hover {
  background: #9b5ccf;
  color: #fff;
  transform: scale(1.04);
}

.show-btn.low {
  background: rgba(255, 220, 150, 0.7);
  color: #7a4a00;
  border: 1.5px solid rgba(200, 150, 50, 0.3);
}

.show-btn.low:hover {
  background: #d97706;
  color: #fff;
  transform: scale(1.04);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem;
  }

  .show-card {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .show-btn {
    width: 100%;
    text-align: center;
  }
}
