.page-live-stream-schedule {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* From shared.css */
}

.page-live-stream-schedule__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-live-stream-schedule__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live-stream-schedule__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-live-stream-schedule__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
}

.page-live-stream-schedule__text-center {
  text-align: center;
}

/* Hero Section */
.page-live-stream-schedule__hero-section {
  position: relative;
  padding-top: 0; /* Assumes shared.css handles body padding-top */
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live-stream-schedule__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-live-stream-schedule__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-live-stream-schedule__hero-section .page-live-stream-schedule__container {
  position: relative;
  z-index: 1;
  padding-top: 120px; /* Adjust for header offset visually */
  padding-bottom: 40px;
}

.page-live-stream-schedule__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-stream-schedule__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live-stream-schedule__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-live-stream-schedule__btn-primary,
.page-live-stream-schedule__btn-secondary,
.page-live-stream-schedule__btn-link,
.page-live-stream-schedule__btn-text {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-live-stream-schedule__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-live-stream-schedule__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-live-stream-schedule__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-live-stream-schedule__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-live-stream-schedule__btn-link {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live-stream-schedule__btn-link:hover {
  background-color: #c96806;
  border-color: #c96806;
}

.page-live-stream-schedule__btn-text {
  background: none;
  border: none;
  color: #26A9E0;
  padding: 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-live-stream-schedule__btn-text:hover {
  color: #1e87c0;
}

/* Section Backgrounds */
.page-live-stream-schedule__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-live-stream-schedule__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-live-stream-schedule__light-bg .page-live-stream-schedule__section-title,
.page-live-stream-schedule__light-bg .page-live-stream-schedule__subsection-title {
  color: #26A9E0;
}

.page-live-stream-schedule__light-bg .page-live-stream-schedule__text-block {
  color: #333333;
}

/* Introduction Section */
.page-live-stream-schedule__introduction-section {
  padding: 80px 0;
}

/* Schedule Section */
.page-live-stream-schedule__schedule-section {
  padding: 80px 0;
}

.page-live-stream-schedule__schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-stream-schedule__schedule-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-live-stream-schedule__schedule-item-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-live-stream-schedule__schedule-item-detail {
  margin-bottom: 10px;
  font-size: 1em;
}

/* Guide Section */
.page-live-stream-schedule__guide-section {
  padding: 80px 0;
}

.page-live-stream-schedule__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-stream-schedule__feature-card {
  text-align: center;
}

.page-live-stream-schedule__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live-stream-schedule__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-live-stream-schedule__feature-description {
  color: #333333;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-live-stream-schedule__promotions-section {
  padding: 80px 0;
}

.page-live-stream-schedule__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-stream-schedule__promo-card {
  text-align: center;
}

.page-live-stream-schedule__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live-stream-schedule__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-live-stream-schedule__promo-description {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Platform Features Section */
.page-live-stream-schedule__platform-features {
  padding: 80px 0;
}

.page-live-stream-schedule__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-live-stream-schedule__feature-list-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-stream-schedule__feature-list-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-live-stream-schedule__feature-list-description {
  color: #333333;
}

/* App Download Section */
.page-live-stream-schedule__app-download-section {
  padding: 80px 0;
}

.page-live-stream-schedule__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-live-stream-schedule__app-text {
  flex: 1;
}

.page-live-stream-schedule__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live-stream-schedule__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-stream-schedule__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-live-stream-schedule__faq-section {
  padding: 80px 0;
}

.page-live-stream-schedule__faq-list {
  margin-top: 40px;
}

.page-live-stream-schedule__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-stream-schedule__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-live-stream-schedule__faq-question:hover {
  background-color: #1e87c0;
}

.page-live-stream-schedule__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-live-stream-schedule__faq-item.active .page-live-stream-schedule__faq-toggle {
  transform: rotate(45deg);
}

.page-live-stream-schedule__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff;
  color: #333333;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-live-stream-schedule__faq-item.active .page-live-stream-schedule__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

.page-live-stream-schedule__faq-answer p {
  margin: 0;
}

/* General card styling for light background */
.page-live-stream-schedule__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-live-stream-schedule__card .page-live-stream-schedule__feature-title,
.page-live-stream-schedule__card .page-live-stream-schedule__promo-title {
  color: #26A9E0;
}

.page-live-stream-schedule__card .page-live-stream-schedule__feature-description,
.page-live-stream-schedule__card .page-live-stream-schedule__promo-description {
  color: #333333;
}

/* Global Image Styles */
.page-live-stream-schedule img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-live-stream-schedule__hero-title {
    font-size: 3em;
  }

  .page-live-stream-schedule__hero-description {
    font-size: 1.2em;
  }

  .page-live-stream-schedule__section-title {
    font-size: 2em;
  }

  .page-live-stream-schedule__app-content {
    flex-direction: column;
  }

  .page-live-stream-schedule__app-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-live-stream-schedule__hero-section {
    padding-top: 0; /* Ensures no double padding if shared.css sets body padding-top */
    padding-bottom: 40px;
  }

  .page-live-stream-schedule__hero-section .page-live-stream-schedule__container {
    padding-top: var(--header-offset, 80px); /* Adjust for header offset visually on mobile if needed */
    padding-bottom: 20px;
  }

  .page-live-stream-schedule__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-live-stream-schedule__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-live-stream-schedule__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* 其他内容模块 - 通用 */
  .page-live-stream-schedule__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-live-stream-schedule__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live-stream-schedule__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-live-stream-schedule__text-block {
    font-size: 0.95em;
  }

  /* 通用图片与容器 */
  .page-live-stream-schedule img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-live-stream-schedule__schedule-grid,
  .page-live-stream-schedule__feature-grid,
  .page-live-stream-schedule__promotions-grid,
  .page-live-stream-schedule__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live-stream-schedule__feature-icon,
  .page-live-stream-schedule__promo-image {
    height: 180px; /* Smaller height for mobile cards */
  }

  /* 按钮与按钮容器 */
  .page-live-stream-schedule__btn-primary,
  .page-live-stream-schedule__btn-secondary,
  .page-live-stream-schedule__btn-link,
  .page-live-stream-schedule__btn-text,
  .page-live-stream-schedule a[class*="button"],
  .page-live-stream-schedule a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live-stream-schedule__hero-buttons,
  .page-live-stream-schedule__app-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live-stream-schedule__app-content {
    flex-direction: column;
    gap: 30px;
  }

  /* FAQ Section */
  .page-live-stream-schedule__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-live-stream-schedule__faq-answer {
    padding: 0 15px;
  }

  .page-live-stream-schedule__faq-item.active .page-live-stream-schedule__faq-answer {
    padding: 15px;
  }
}