.list-page {
  min-height: calc(100vh - var(--header-height));
  padding: 40px 0;
  background: var(--bg-page);
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
}

.page-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-family: 'STSong', 'SimSun', serif;
  letter-spacing: 2px;
}

.page-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 3px;
}

.highlight {
  color: var(--primary-brown);
  font-weight: 600;
}

.filter-section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
}

.filter-row + .filter-row {
  border-top: 1px solid var(--border-light);
}

.filter-label {
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  padding-top: 5px;
}

.filter-tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-page);
  border: 1px solid transparent;
}

.filter-tag:hover {
  background: var(--bg-warm);
  color: var(--primary-brown);
  border-color: var(--border-light);
}

.filter-tag.active {
  background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-light));
  color: #fff;
  border-color: transparent;
}

.spectrum-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.spectrum-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.spectrum-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.card-cover {
  aspect-ratio: 210 / 297;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.spectrum-card:hover .card-cover img {
  transform: scale(1.05);
}

.card-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(139, 69, 19, 0.6) 100%);
  z-index: 1;
}

.card-cover .surname-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-brown);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'STSong', 'SimSun', serif;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-cover .visibility-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.card-cover .visibility-tag.public {
  color: var(--success-color);
}

.card-cover .visibility-tag.private {
  color: var(--danger-color);
}

.card-cover .hall-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.card-desc {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  margin-bottom: 14px;
  flex: 1;
}

.card-stats {
  display: flex;
  gap: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  justify-content: space-between;
}

.card-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.card-stats .stat-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-brown);
  font-family: Georgia, serif;
}

.card-stats .stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
}

.loading, .empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover {
  border-color: var(--primary-brown);
  color: var(--primary-brown);
  background: var(--bg-warm);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-light));
  color: #fff;
  border-color: transparent;
}

.page-btn.disabled {
  color: var(--text-tertiary);
  cursor: not-allowed;
  border-color: var(--border-light);
  background: var(--bg-page);
}

.page-btn.disabled:hover {
  color: var(--text-tertiary);
  border-color: var(--border-light);
  background: var(--bg-page);
}

.page-dots {
  color: var(--text-tertiary);
  padding: 0 4px;
}
