.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-cockfighting__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  z-index: 10;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-cockfighting__main-title {
  color: var(--text-main); /* #F2FFF6 */
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__description {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-cockfighting__cta-button--secondary {
  background: var(--deep-green); /* #0A4B2C */
  border: 1px solid var(--glow); /* #57E38D */
  color: var(--text-main);
}

.page-cockfighting__cta-button--secondary:hover {
  background: var(--glow); /* #57E38D */
  color: #000000;
}

.page-cockfighting__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-cockfighting__section {
  padding: 60px 20px;
  background-color: var(--background);
  border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-cockfighting__section-title {
  color: var(--gold); /* #F2C14E */
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-cockfighting__content-area p {
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-cockfighting__content-area strong {
  color: var(--gold);
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting__list-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__list-item h3 {
  color: var(--gold); /* #F2C14E */
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting__list-item p {
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 0;
}

.page-cockfighting__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item {
  position: relative;
  padding-left: 60px;
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-cockfighting__numbered-list .page-cockfighting__list-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 25px;
  background-color: var(--glow); /* #57E38D */
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

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

.page-cockfighting__feature-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-cockfighting__feature-title {
  color: var(--glow); /* #57E38D */
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting__feature-item p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1rem;
}

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background-color: #000;
}

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

.page-cockfighting__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.page-cockfighting__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main); /* #F2FFF6 */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* var(--border) with opacity */
}

.page-cockfighting__faq-item[open] summary {
  background-color: var(--deep-green); /* #0A4B2C */
  color: var(--text-main);
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: var(--glow); /* #57E38D */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  color: var(--text-main);
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1rem;
}

.page-cockfighting__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.page-cockfighting__center-text {
  text-align: center;
}

.page-cockfighting__call-to-action {
  background-color: var(--deep-green); /* #0A4B2C */
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__call-to-action .page-cockfighting__section-title {
  color: var(--gold);
  margin-bottom: 30px;
}

.page-cockfighting__call-to-action p {
  color: var(--text-main);
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    padding: 15px;
    width: 95%;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }

  .page-cockfighting__description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-cockfighting__section {
    padding: 50px 15px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-cockfighting__feature-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }

  .page-cockfighting__hero-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 20px;
    background-color: transparent; /* Remove overlay background on mobile */
  }

  .page-cockfighting__hero-image {
    position: static;
    height: 250px;
    filter: brightness(0.8); /* Less darkening */
  }

  .page-cockfighting__main-title {
    font-size: 2rem;
    text-shadow: none;
    margin-top: 20px;
  }

  .page-cockfighting__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }

  .page-cockfighting__content-area {
    padding: 0 10px;
  }

  .page-cockfighting__content-area p,
  .page-cockfighting__list-item p,
  .page-cockfighting__feature-item p,
  .page-cockfighting__faq-answer p {
    font-size: 0.95rem;
  }

  .page-cockfighting__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting__list-item h3,
  .page-cockfighting__feature-title {
    font-size: 1.3rem;
  }

  .page-cockfighting__numbered-list .page-cockfighting__list-item {
    padding-left: 50px;
  }

  .page-cockfighting__numbered-list .page-cockfighting__list-item::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    left: 10px;
    top: 20px;
  }

  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-cockfighting__video-overlay-link {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }

  .page-cockfighting__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-toggle {
    font-size: 1.3rem;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px;
  }

  .page-cockfighting__call-to-action {
    padding: 60px 15px;
  }
}