.page-cockfighting-live-streaming {
  color: #333333; /* Body is light, so use dark text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-cockfighting-live-streaming__hero-video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light background */
  text-align: center;
}

.page-cockfighting-live-streaming__video-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.page-cockfighting-live-streaming__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-cockfighting-live-streaming__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cockfighting-live-streaming__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-cockfighting-live-streaming__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-live-streaming__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-cockfighting-live-streaming__btn-primary,
.page-cockfighting-live-streaming__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
}

.page-cockfighting-live-streaming__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-cockfighting-live-streaming__btn-primary:hover {
  background-color: #1e87c2;
  transform: translateY(-2px);
}

.page-cockfighting-live-streaming__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting-live-streaming__btn-secondary:hover {
  background-color: #f0f8ff;
  transform: translateY(-2px);
}

.page-cockfighting-live-streaming__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

.page-cockfighting-live-streaming__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-cockfighting-live-streaming__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-cockfighting-live-streaming__list li {
  margin-bottom: 10px;
}

.page-cockfighting-live-streaming__list--numbered {
  list-style: decimal;
}

.page-cockfighting-live-streaming__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-live-streaming__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-cockfighting-live-streaming__text-link:hover {
  color: #1e87c2;
}

/* Section backgrounds */
.page-cockfighting-live-streaming__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting-live-streaming__dark-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff; /* White text for contrast */
  padding: 60px 20px;
}

.page-cockfighting-live-streaming__dark-section .page-cockfighting-live-streaming__section-title,
.page-cockfighting-live-streaming__dark-section .page-cockfighting-live-streaming__sub-title {
  color: #ffffff;
}

.page-cockfighting-live-streaming__dark-section p,
.page-cockfighting-live-streaming__dark-section li {
  color: #f0f0f0;
}

.page-cockfighting-live-streaming__dark-section .page-cockfighting-live-streaming__text-link {
  color: #f0f8ff;
}

.page-cockfighting-live-streaming__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* FAQ Section */
.page-cockfighting-live-streaming__faq-section {
  padding: 60px 20px;
}

.page-cockfighting-live-streaming__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-live-streaming__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7fc;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-cockfighting-live-streaming__faq-question:hover {
  background-color: #d8edf7;
}

.page-cockfighting-live-streaming__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-live-streaming__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-cockfighting-live-streaming__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: #555555;
  line-height: 1.6;
}

.page-cockfighting-live-streaming__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-cockfighting-live-streaming__hero-video-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-cockfighting-live-streaming__main-title {
    font-size: 2.2em; /* Adjust for mobile */
  }

  .page-cockfighting-live-streaming__description {
    font-size: 1em;
  }

  .page-cockfighting-live-streaming__btn-primary,
  .page-cockfighting-live-streaming__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    margin: 5px 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-live-streaming__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
    padding: 0 15px; /* Add padding to container */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-live-streaming__content-area,
  .page-cockfighting-live-streaming__dark-section,
  .page-cockfighting-live-streaming__faq-section {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-cockfighting-live-streaming__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-cockfighting-live-streaming__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }

  .page-cockfighting-live-streaming__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 56.25% !important; /* Ensure aspect ratio on mobile */
  }

  .page-cockfighting-live-streaming__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Adjust height to fill wrapper */
    object-fit: cover !important;
  }

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

  .page-cockfighting-live-streaming__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95em;
  }
}