:root {
  --tbn-show-bg: #ffffff;
  --tbn-show-accent: #e91e8c;
  --tbn-show-accent-2: #9b4dff;
  --tbn-show-text: #1f1633;
  --tbn-show-muted: #6b7280;
  --tbn-show-chip: #f4f1f8;
  --tbn-show-chip-border: #e8e2f0;
  --tbn-show-chip-active: linear-gradient(135deg, #e91e8c, #9b4dff);
  --tbn-show-card: #ffffff;
  --tbn-show-border: #ece7f3;
  --tbn-header-offset: 120px;
}

body.tbn-show-page {
  margin: 0;
  min-height: 100vh;
  color: var(--tbn-show-text);
  background: var(--tbn-show-bg);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.tbn-show-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--tbn-header-offset) 20px 72px;
}

.tbn-show-hero {
  margin: 8px 0 28px;
}

.tbn-show-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: #2e1065;
}

.tbn-show-hero p {
  margin: 0;
  color: var(--tbn-show-muted);
  font-size: 15px;
}

.tbn-show-filters {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.tbn-show-filter-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 8px;
}

.tbn-show-filter-label {
  flex: 0 0 auto;
  margin: 0;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: #222;
  text-transform: none;
  line-height: 1.4;
  white-space: nowrap;
  min-width: 40px;
}

.tbn-show-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 28px;
  flex: 1;
  min-width: 0;
}

.tbn-show-chip {
  border: 1px solid transparent;
  background: transparent;
  color: #4b5563;
  border-radius: 999px;
  padding: 6px 4px;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, padding 0.15s ease;
}

.tbn-show-chip:hover {
  color: #c026d3;
}

.tbn-show-chip.is-active {
  background: #fff;
  border-color: #d946ef;
  color: #c026d3;
  padding: 6px 20px;
  font-weight: 500;
}

.tbn-show-custom-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-top: 4px;
  flex: 1 1 100%;
  padding-left: 0;
}

.tbn-show-custom-dates label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--tbn-show-muted);
}

.tbn-show-custom-dates input[type="date"] {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: var(--tbn-show-text);
  padding: 8px 14px;
}

.tbn-show-apply-dates {
  border: 1px solid #d946ef;
  border-radius: 999px;
  padding: 8px 20px;
  background: #fff;
  color: #c026d3;
  font-weight: 500;
  cursor: pointer;
}

.tbn-show-search-block {
  display: block;
  margin-top: 4px;
}

.tbn-show-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 16px 20px;
  background: #fff;
  color: #6d28d9;
  box-shadow: none;
}

.tbn-show-search i {
  font-size: 18px;
}

.tbn-show-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #222;
}

.tbn-show-search input::placeholder {
  color: #9ca3af;
}

.tbn-show-meta {
  margin: 8px 0 16px;
  color: var(--tbn-show-muted);
  font-size: 13px;
}

.tbn-show-more-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}

.tbn-show-more-btn {
  border: 1px solid #d946ef;
  border-radius: 999px;
  background: #fff;
  color: #c026d3;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.tbn-show-more-btn:hover {
  background: #fdf4ff;
}

.tbn-show-backtop {
  position: fixed;
  right: 72px;
  bottom: 88px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #c026d3;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(192, 38, 211, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.15s ease;
}

.tbn-show-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tbn-show-backtop:hover {
  background: #a21caf;
  color: #fff;
}

.tbn-show-backtop svg {
  display: block;
}

.tbn-show-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.tbn-show-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tbn-show-card);
  border: 1px solid var(--tbn-show-border);
  box-shadow: 0 8px 24px rgba(46, 16, 101, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tbn-show-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: 0 16px 36px rgba(46, 16, 101, 0.12);
}

.tbn-show-card__cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3eef9;
}

.tbn-show-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tbn-show-card__date {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.tbn-show-card__hot {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--tbn-show-chip-active);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.tbn-show-card__body {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.tbn-show-card__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #2e1065;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tbn-show-card__venue {
  margin: 0;
  color: var(--tbn-show-muted);
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tbn-show-empty,
.tbn-show-loading,
.tbn-show-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--tbn-show-muted);
}

.tbn-show-footer {
  text-align: center;
  padding: 0 16px 40px;
  color: #9ca3af;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .tbn-show-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .tbn-show-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tbn-show-main {
    padding-top: 104px;
  }

  .tbn-show-filter-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tbn-show-filter-label {
    flex-basis: auto;
  }

  .tbn-show-chips {
    gap: 4px 20px;
  }

  .tbn-show-search {
    padding: 14px 16px;
  }

  .tbn-show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
