/* 现场娱乐场所页面样式 */

.live-venues-main {
  background: #05030b;
  color: #ffffff;
  /*min-height: 100vh;*/
}

/* Hero Section */
.live-venues-hero {
  position: relative;
  min-height: 70vh;
  background-image: url('../images/LiveHead.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.live-venues-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 3, 11, 0.3) 50%, rgba(5, 3, 11, 0.92) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-back-link:hover {
  color: #ffffff;
}

.hero-back-link svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero-english-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.hero-english-link:hover {
  color: #ffffff;
}

/* Filter Section */
.filter-section {
  background: #05030b;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-select,
.filter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.filter-input-wrapper {
  position: relative;
}

.filter-input-wrapper svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.filter-input {
  padding-right: 3rem;
}

/* Content Section */
.content-section {
  background: #ffffff;
  padding: 4rem 0 6rem;
}

.content-section .container {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.breadcrumb-section {
  margin-bottom: 2rem;
  text-align: left;
  /*margin-left: -150px;*/
  padding-left: 0;
  position: relative;
}

@media (max-width: 1200px) {
  .breadcrumb-section {
    margin-left: -100px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    margin-left: 0px;
  }
}

.breadcrumb-list {
  justify-content: flex-start;
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  justify-content: flex-start;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
  color: #000000;
}

.breadcrumb-list li+li::before {
  content: '/';
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
}

.breadcrumb-list li:last-child {
  color: rgba(0, 0, 0, 0.8);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 3rem;
  text-align: left;
  /*margin-left: -150px;*/
  padding-left: 0;
  position: relative;
}

@media (max-width: 1200px) {
  .section-title {
    margin-left: -100px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-left: 0px;
  }
}

/* Application Cards Grid */
.application-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 401.656px);
  gap: 1.875rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.application-card-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 401.656px;
  height: auto;
}

.application-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.application-card-image {
  width: 100%;
  height: 235.484px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.application-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 3, 11, 0.85);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}

.application-card-content {
  padding: 1.25rem;
  background: #ffffff;
}

.application-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.5;
  margin: 0;
}

.btn-show-more {
  background: #a27aff;
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  margin: 3rem auto 0;
  display: block;
  width: fit-content;
}

.btn-show-more:hover {
  background: #8f63ff;
  color: #ffffff;
}

/* Share Section */
.share-section-bottom {
  background: #05030b;
  padding: 3rem 0 5rem;
  text-align: center;
}

.share-section-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.share-icons-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-icons-bottom a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.share-icons-bottom a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1600px) {
  .application-cards-grid {
    grid-template-columns: repeat(3, minmax(300px, 506.656px));
    justify-content: center;
  }

  .application-card-item {
    width: 100%;
    max-width: 401.656px;
  }
}

@media (max-width: 992px) {
  .application-cards-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-content: center;
  }

  .application-card-item {
    width: 100%;
    max-width: 401.656px;
  }
}

@media (max-width: 768px) {
  .live-venues-hero {
    min-height: 50vh;
  }

  .hero-content-wrapper {
    padding: 3rem 0;
  }

  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: 100%;
  }

  .application-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .application-card-item {
    width: 100%;
    max-width: 100%;
  }

  .application-card-image {
    height: auto;
    aspect-ratio: 506.656 / 285.484;
  }
}