.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-cockfighting__highlight {
    color: #F2C14E; /* Gold */
}

.page-cockfighting__text-main {
    color: #F2FFF6;
}

.page-cockfighting__text-block {
    margin-bottom: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__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.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-cockfighting__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 800px; /* Specific max-width for content images */
}

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

.page-cockfighting__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: #A7D9B8;
  position: relative;
  padding-left: 40px;
}

.page-cockfighting__list-item::before {
  content: '✔';
  color: #2AD16F;
  position: absolute;
  left: 15px;
  top: 18px;
  font-weight: bold;
}

.page-cockfighting__list-strong {
  color: #F2FFF6;
  font-weight: bold;
}

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

.page-cockfighting__numbered-list .page-cockfighting__list-item {
    counter-increment: step-counter;
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    color: #A7D9B8;
    position: relative;
    padding-left: 50px; /* Adjust padding for number */
}

.page-cockfighting__numbered-list .page-cockfighting__list-item::before {
    content: counter(step-counter);
    color: #F2C14E; /* Gold */
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
    position: absolute;
    left: 15px;
    top: 15px;
}

.page-cockfighting__sub-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: #A7D9B8;
}

.page-cockfighting__sub-list .page-cockfighting__list-item {
    background-color: transparent;
    border: none;
    padding: 5px 0;
    margin-bottom: 5px;
    color: #A7D9B8;
    padding-left: 0;
}

.page-cockfighting__sub-list .page-cockfighting__list-item::before {
    content: '';
    display: none;
}

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

.page-cockfighting__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__card-text {
  color: #A7D9B8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-cockfighting__faq-question:hover {
  background-color: rgba(42, 209, 111, 0.1);
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

.page-cockfighting__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-answer {
    max-height: 500px; /* Adjust as needed for content length */
}

.page-cockfighting__cta-final-section {
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 20px;
}

.page-cockfighting__cta-final-section .page-cockfighting__section-title {
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-cockfighting__cta-final-section .page-cockfighting__text-block {
    color: #A7D9B8;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-cockfighting__image--faq {
    max-width: 600px;
    margin-top: 40px;
    opacity: 0.8;
}

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

  .page-cockfighting__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

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

  .page-cockfighting__section,
  .page-cockfighting__cta-final-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-cockfighting__hero-image,
  .page-cockfighting__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-cockfighting__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-cockfighting__list-item::before,
  .page-cockfighting__numbered-list .page-cockfighting__list-item::before {
    left: 5px;
  }
}

/* Ensure content images are at least 200px wide for desktop */
.page-cockfighting img:not(.page-cockfighting__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

/* Override for specific small elements if they were to exist, but general rule is no small images */
.page-cockfighting__faq-toggle {
    min-width: unset;
    min-height: unset;
}