.page-live-streaming-schedule {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-live-streaming-schedule__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live-streaming-schedule__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-live-streaming-schedule__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-live-streaming-schedule__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
}

.page-live-streaming-schedule__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-live-streaming-schedule__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-live-streaming-schedule__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-live-streaming-schedule__btn-primary,
.page-live-streaming-schedule__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-live-streaming-schedule__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-live-streaming-schedule__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-live-streaming-schedule__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-live-streaming-schedule__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-live-streaming-schedule__content-area {
  padding: 60px 0;
}

.page-live-streaming-schedule__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #017439;
  font-weight: bold;
}

.page-live-streaming-schedule__dark-bg .page-live-streaming-schedule__section-title {
  color: #FFFF00;
}

.page-live-streaming-schedule__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-live-streaming-schedule__dark-bg .page-live-streaming-schedule__section-intro {
  color: #e0e0e0;
}

.page-live-streaming-schedule__schedule-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live-streaming-schedule__schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is not too small on desktop */
}

.page-live-streaming-schedule__schedule-table th,
.page-live-streaming-schedule__schedule-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.page-live-streaming-schedule__schedule-table th {
  background-color: #017439;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.page-live-streaming-schedule__schedule-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-live-streaming-schedule__schedule-table tbody tr:hover {
  background-color: #f0f0f0;
}

.page-live-streaming-schedule__table-btn {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #C30808;
  color: #FFFF00;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-streaming-schedule__table-btn:hover {
  background-color: #a00606;
}

.page-live-streaming-schedule__image-full-width {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  object-fit: cover;
}

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

.page-live-streaming-schedule__event-card {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-live-streaming-schedule__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-live-streaming-schedule__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live-streaming-schedule__event-card .page-live-streaming-schedule__card-title {
  color: #017439;
}

.page-live-streaming-schedule__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live-streaming-schedule__card-btn {
  margin-top: auto; /* Push button to bottom */
  display: inline-block;
  padding: 10px 20px;
}

.page-live-streaming-schedule__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-live-streaming-schedule__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-live-streaming-schedule__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-live-streaming-schedule__guide-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #017439;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-streaming-schedule__guide-list li p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #555555;
}

.page-live-streaming-schedule__list-item-title {
  font-size: 1.2em;
  color: #017439;
}

.page-live-streaming-schedule__image-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-live-streaming-schedule__tournament-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-streaming-schedule__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live-streaming-schedule__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-live-streaming-schedule__feature-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-live-streaming-schedule__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-live-streaming-schedule__betting-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-streaming-schedule__tip-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-live-streaming-schedule__faq-section {
  padding: 60px 0;
}

.page-live-streaming-schedule__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-live-streaming-schedule__faq-item[open] {
  background-color: #f0f0f0;
}

.page-live-streaming-schedule__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-live-streaming-schedule__faq-item[open] .page-live-streaming-schedule__faq-question {
  border-bottom-color: transparent;
}

.page-live-streaming-schedule__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-live-streaming-schedule__faq-item[open] .page-live-streaming-schedule__faq-toggle {
  transform: rotate(45deg);
}

.page-live-streaming-schedule__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-live-streaming-schedule__cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-image: url('[GALLERY:cta_banner:1920x1080:call_to_action,register,betting,cockfighting_platform]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-live-streaming-schedule__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-live-streaming-schedule__cta-section .page-live-streaming-schedule__container {
  position: relative;
  z-index: 2;
}

.page-live-streaming-schedule__cta-title {
  font-size: 2.8em;
  color: #FFFF00;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-streaming-schedule__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live-streaming-schedule__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-live-streaming-schedule__cta-image {
  display: none; /* Hide image in CTA section for background effect */
}

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

@media (max-width: 768px) {
  .page-live-streaming-schedule {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-live-streaming-schedule__container {
    padding: 0 15px !important;
  }
  .page-live-streaming-schedule__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .page-live-streaming-schedule__hero-title {
    font-size: 2.2em;
  }
  .page-live-streaming-schedule__hero-description {
    font-size: 1em;
  }
  .page-live-streaming-schedule__hero-cta-buttons,
  .page-live-streaming-schedule__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-streaming-schedule__btn-primary,
  .page-live-streaming-schedule__btn-secondary,
  .page-live-streaming-schedule__table-btn,
  .page-live-streaming-schedule__card-btn,
  .page-live-streaming-schedule a[class*="button"],
  .page-live-streaming-schedule a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-live-streaming-schedule__content-area,
  .page-live-streaming-schedule__faq-section,
  .page-live-streaming-schedule__cta-section {
    padding: 40px 0;
  }
  .page-live-streaming-schedule__section-title {
    font-size: 1.8em;
  }
  .page-live-streaming-schedule__section-intro {
    font-size: 0.95em;
  }
  .page-live-streaming-schedule__schedule-table-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    border-radius: 0;
  }
  .page-live-streaming-schedule__schedule-table th,
  .page-live-streaming-schedule__schedule-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-live-streaming-schedule__upcoming-events-grid,
  .page-live-streaming-schedule__tournament-features,
  .page-live-streaming-schedule__betting-tips-grid {
    grid-template-columns: 1fr;
  }
  .page-live-streaming-schedule img,
  .page-live-streaming-schedule video,
  .page-live-streaming-schedule__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-live-streaming-schedule__section,
  .page-live-streaming-schedule__card,
  .page-live-streaming-schedule__container,
  .page-live-streaming-schedule__video-section,
  .page-live-streaming-schedule__video-container,
  .page-live-streaming-schedule__video-wrapper,
  .page-live-streaming-schedule__cta-buttons,
  .page-live-streaming-schedule__button-group,
  .page-live-streaming-schedule__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-live-streaming-schedule__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-live-streaming-schedule__cta-title {
    font-size: 1.8em;
  }
  .page-live-streaming-schedule__cta-description {
    font-size: 1em;
  }
  .page-live-streaming-schedule__feature-icon {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .page-live-streaming-schedule__hero-title {
    font-size: 1.8em;
  }
  .page-live-streaming-schedule__hero-description {
    font-size: 0.9em;
  }
  .page-live-streaming-schedule__btn-primary,
  .page-live-streaming-schedule__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live-streaming-schedule__section-title {
    font-size: 1.5em;
  }
  .page-live-streaming-schedule__cta-title {
    font-size: 1.5em;
  }
}