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

.page-cockfighting-encyclopedia__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-cockfighting-encyclopedia__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body bg for distinction */
  color: #ffffff;
}

.page-cockfighting-encyclopedia__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-cockfighting-encyclopedia__hero-section {
  padding: 120px 0 60px; /* Adjusted padding-top for header offset */
  text-align: center;
  background-image: url('[GALLERY:hero_main:1920x1080:cockfighting,live,arena,betting,excitement]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-cockfighting-encyclopedia__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.page-cockfighting-encyclopedia__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-encyclopedia__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

/* Video Section */
.page-cockfighting-encyclopedia__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #121212;
}

.page-cockfighting-encyclopedia__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-encyclopedia__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-cockfighting-encyclopedia__video-cta {
  margin-top: 30px;
}

/* Content Area */
.page-cockfighting-encyclopedia__content-area {
  padding: 80px 0;
  color: #333333;
}

.page-cockfighting-encyclopedia__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-encyclopedia__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-cockfighting-encyclopedia__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555555;
}

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

.page-cockfighting-encyclopedia p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #333333;
}

.page-cockfighting-encyclopedia__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-cockfighting-encyclopedia__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

/* Call to Action Buttons */
.page-cockfighting-encyclopedia__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-cockfighting-encyclopedia__btn-primary,
.page-cockfighting-encyclopedia__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-encyclopedia__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-cockfighting-encyclopedia__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-cockfighting-encyclopedia__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting-encyclopedia__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* FAQ Section */
.page-cockfighting-encyclopedia__faq-list {
  margin-top: 50px;
}

.page-cockfighting-encyclopedia__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-cockfighting-encyclopedia__faq-item.active .page-cockfighting-encyclopedia__faq-answer {
  max-height: 2000px; /* Large enough to show all content */
  padding-top: 15px;
}

.page-cockfighting-encyclopedia__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7fc;
  border-bottom: 1px solid #e0e0e0;
}

.page-cockfighting-encyclopedia__faq-question:hover {
  background-color: #d6effa;
}

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

.page-cockfighting-encyclopedia__faq-item[open] .page-cockfighting-encyclopedia__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-encyclopedia__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.page-cockfighting-encyclopedia__faq-answer p {
  margin: 0;
  color: #555555;
}

/* CTA Block */
.page-cockfighting-encyclopedia__cta-block {
  text-align: center;
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 80px;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting-encyclopedia__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-cockfighting-encyclopedia__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

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

  .page-cockfighting-encyclopedia__section-title {
    font-size: 2em;
  }

  .page-cockfighting-encyclopedia__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-encyclopedia {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-encyclopedia__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied */
    padding-bottom: 40px;
  }

  .page-cockfighting-encyclopedia__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting-encyclopedia__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-encyclopedia__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-encyclopedia__btn-primary,
  .page-cockfighting-encyclopedia__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  .page-cockfighting-encyclopedia__video-section,
  .page-cockfighting-encyclopedia__content-area,
  .page-cockfighting-encyclopedia__cta-block {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-encyclopedia__video-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .page-cockfighting-encyclopedia img,
  .page-cockfighting-encyclopedia__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-encyclopedia__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-encyclopedia__subsection-title {
    font-size: 1.4em;
  }

  .page-cockfighting-encyclopedia__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-cockfighting-encyclopedia__faq-answer {
    padding: 0 15px 15px;
  }

  .page-cockfighting-encyclopedia__cta-block {
    padding: 40px 20px;
  }

  .page-cockfighting-encyclopedia__cta-title {
    font-size: 1.8em;
  }
}