.page-cockfighting-live-stream-schedule {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background #121212 is dark, so use light text */
  line-height: 1.6;
  background-color: #121212;
}

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

.page-cockfighting-live-stream-schedule__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
}

.page-cockfighting-live-stream-schedule__video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
}

.page-cockfighting-live-stream-schedule__hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-cockfighting-live-stream-schedule__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
}

.page-cockfighting-live-stream-schedule__hero-content {
  max-width: 800px;
}

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

.page-cockfighting-live-stream-schedule__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

.page-cockfighting-live-stream-schedule__btn--primary {
  background-color: #FFD700;
  color: #8B0000; /* Darker text for contrast on gold */
  border: 2px solid #FFD700;
}

.page-cockfighting-live-stream-schedule__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

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

.page-cockfighting-live-stream-schedule__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-cockfighting-live-stream-schedule__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-stream-schedule__section-description,
.page-cockfighting-live-stream-schedule__info-text {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-stream-schedule__live-stream-section,
.page-cockfighting-live-stream-schedule__schedule-section,
.page-cockfighting-live-stream-schedule__betting-guide-section,
.page-cockfighting-live-stream-schedule__why-123b-section,
.page-cockfighting-live-stream-schedule__faq-section,
.page-cockfighting-live-stream-schedule__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark for content */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-stream-schedule__stream-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 700px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-stream-schedule__stream-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting-live-stream-schedule__stream-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-live-stream-schedule__stream-status {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-cockfighting-live-stream-schedule__schedule-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 8px;
  background-color: #2a2a2a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-stream-schedule__schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

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

.page-cockfighting-live-stream-schedule__schedule-table th {
  background-color: #8B0000;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.page-cockfighting-live-stream-schedule__schedule-table tr:nth-child(even) {
  background-color: #1f1f1f;
}

.page-cockfighting-live-stream-schedule__schedule-table tr:hover {
  background-color: #3a3a3a;
}

.page-cockfighting-live-stream-schedule__schedule-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  display: block;
}

.page-cockfighting-live-stream-schedule__guide-item {
  background-color: #2a2a2a;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-stream-schedule__guide-subtitle {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-live-stream-schedule__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting-live-stream-schedule__guide-list li {
  margin-bottom: 10px;
  color: #cccccc;
  padding-left: 25px;
  position: relative;
}

.page-cockfighting-live-stream-schedule__guide-list li::before {
  content: '▪';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-cockfighting-live-stream-schedule__betting-guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  display: block;
}

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

.page-cockfighting-live-stream-schedule__feature-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-cockfighting-live-stream-schedule__feature-card:hover {
  transform: translateY(-10px);
}

.page-cockfighting-live-stream-schedule__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 5px;
}

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

.page-cockfighting-live-stream-schedule__feature-text {
  color: #cccccc;
}

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

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

.page-cockfighting-live-stream-schedule__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #3a3a3a;
  border-bottom: 1px solid #4a4a4a;
  transition: background-color 0.3s ease;
}

.page-cockfighting-live-stream-schedule__faq-question:hover {
  background-color: #4a4a4a;
}

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

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

.page-cockfighting-live-stream-schedule__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #cccccc;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-cockfighting-live-stream-schedule__faq-item.active .page-cockfighting-live-stream-schedule__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-cockfighting-live-stream-schedule__faq-answer p {
  margin: 0;
  padding-bottom: 10px; /* Adjust as needed for last paragraph */
}

.page-cockfighting-live-stream-schedule__cta-buttons-bottom {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-cockfighting-live-stream-schedule__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-cockfighting-live-stream-schedule__hero-title {
    font-size: 2.2em;
  }

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

  .page-cockfighting-live-stream-schedule__hero-cta-buttons,
  .page-cockfighting-live-stream-schedule__cta-buttons-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-live-stream-schedule__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-cockfighting-live-stream-schedule__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-cockfighting-live-stream-schedule__section-description,
  .page-cockfighting-live-stream-schedule__info-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-cockfighting-live-stream-schedule__live-stream-section,
  .page-cockfighting-live-stream-schedule__schedule-section,
  .page-cockfighting-live-stream-schedule__betting-guide-section,
  .page-cockfighting-live-stream-schedule__why-123b-section,
  .page-cockfighting-live-stream-schedule__faq-section,
  .page-cockfighting-live-stream-schedule__cta-section {
    padding: 40px 0;
    margin-bottom: 15px;
  }

  .page-cockfighting-live-stream-schedule__container {
    padding: 0 15px;
  }

  .page-cockfighting-live-stream-schedule__stream-card {
    padding: 20px;
  }

  .page-cockfighting-live-stream-schedule__stream-title {
    font-size: 1.5em;
  }

  .page-cockfighting-live-stream-schedule__stream-status {
    font-size: 1em;
  }

  .page-cockfighting-live-stream-schedule__schedule-table th,
  .page-cockfighting-live-stream-schedule__schedule-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-cockfighting-live-stream-schedule__guide-subtitle {
    font-size: 1.3em;
  }

  .page-cockfighting-live-stream-schedule__guide-list li {
    font-size: 0.95em;
  }

  .page-cockfighting-live-stream-schedule__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting-live-stream-schedule__feature-card {
    padding: 25px;
  }

  .page-cockfighting-live-stream-schedule__feature-title {
    font-size: 1.3em;
  }

  .page-cockfighting-live-stream-schedule__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  /* Image/Video responsive rules */
  .page-cockfighting-live-stream-schedule img,
  .page-cockfighting-live-stream-schedule video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-live-stream-schedule__video-wrapper,
  .page-cockfighting-live-stream-schedule__stream-card,
  .page-cockfighting-live-stream-schedule__schedule-table-wrapper,
  .page-cockfighting-live-stream-schedule__guide-item,
  .page-cockfighting-live-stream-schedule__feature-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-cockfighting-live-stream-schedule__stream-card, .page-cockfighting-live-stream-schedule__guide-item { 
    padding-left: 15px; 
    padding-right: 15px; 
  }
}