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

.page-cockfighting__section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow */
}

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

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom */
  background-color: #08160F; /* Background */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  filter: none;
}

.page-cockfighting__hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__main-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Primary to Secondary */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  filter: none;
}

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

.page-cockfighting__ordered-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-cockfighting__list-item {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__list-item strong {
  color: #F2C14E; /* Gold */
}

.page-cockfighting__list-item::before {
  content: '✔';
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.page-cockfighting__ordered-list .page-cockfighting__list-item {
  background-color: transparent;
  border: none;
  color: #A7D9B8; /* Text Secondary */
  padding: 0;
  margin-bottom: 15px;
}

.page-cockfighting__ordered-list .page-cockfighting__list-item::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

.page-cockfighting__btn-primary {
  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.2);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Dark Section Styling */
.page-cockfighting__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__dark-section .page-cockfighting__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__dark-section .page-cockfighting__list-item {
  background-color: #11271B; /* Card BG */
  border-color: #1E3A2A; /* Divider */
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 30px;
}

.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: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  background-color: #11271B; /* Card BG */
  user-select: none;
  list-style: none; /* For details tag */
}

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

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-cockfighting__faq-answer {
  padding: 0 20px 15px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-cockfighting__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section specific */
.page-cockfighting__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #11A84E; /* Primary Color */
}

.page-cockfighting__cta-section .page-cockfighting__section-title {
  color: #ffffff;
}

.page-cockfighting__cta-section .page-cockfighting__section-title::after {
  background: linear-gradient(90deg, #ffffff 0%, #57E38D 100%); /* White to Glow */
}

.page-cockfighting__cta-section .page-cockfighting__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-cockfighting__section {
    padding: 40px 15px;
  }

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

  .page-cockfighting__hero-content {
    padding: 0 10px;
  }

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

  .page-cockfighting__main-description {
    font-size: 1rem;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-cockfighting__text-block,
  .page-cockfighting__list-item,
  .page-cockfighting__faq-answer p {
    font-size: 0.95rem;
  }

  .page-cockfighting__btn-primary {
    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 {
    margin-left: auto;
    margin-right: auto;
  }

  .page-cockfighting__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-cockfighting__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

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

  .page-cockfighting__list-item {
    padding: 12px 15px;
  }

  .page-cockfighting__cta-section {
    padding: 60px 15px;
  }

  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Ensure images do not have filters */
.page-cockfighting img {
  filter: none;
}