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

.page-cockfighting__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and content */
}

.page-cockfighting__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
  position: relative; /* Ensure it's not absolutely positioned over the image */
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for better responsiveness */
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-cockfighting__btn--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__faq-section,
.page-cockfighting__final-cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  background-color: transparent;
  border-radius: 12px;
}

.page-cockfighting__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__paragraph {
  font-size: 1rem;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__features-grid,
.page-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__feature-card,
.page-cockfighting__step-card,
.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__feature-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide on smaller cards */
  min-width: 200px; /* Minimum size requirement */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* Example aspect ratio */
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: none; /* No filter */
}

.page-cockfighting__feature-title,
.page-cockfighting__step-title,
.page-cockfighting__faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-cockfighting__feature-description,
.page-cockfighting__step-description,
.page-cockfighting__faq-answer {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
}

.page-cockfighting__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(42, 209, 111, 0.3);
}

.page-cockfighting__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

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

.page-cockfighting__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  font-size: 1rem;
  color: #F2FFF6;
  display: flex;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__list-item strong {
  color: #F2C14E;
  margin-right: 8px;
}

.page-cockfighting__list-item::before {
  content: '✔'; /* Checkmark icon */
  color: #2AD16F;
  font-weight: 700;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.page-cockfighting__faq-item {
  margin-bottom: 20px;
  text-align: left;
}

.page-cockfighting__faq-question {
  color: #2AD16F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-cockfighting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-question::after {
  content: '-';
}

.page-cockfighting__faq-answer {
  color: #A7D9B8;
  display: none;
  margin-top: 10px;
  text-align: left;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  display: block;
}

.page-cockfighting__final-cta-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-cockfighting__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-cockfighting__list-item::before {
    margin-bottom: 10px;
  }
  .page-cockfighting__list-item strong {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-image-wrapper img,
  .page-cockfighting__feature-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for content images */
    filter: none; /* No filter */
  }

  .page-cockfighting__paragraph {
    text-align: left; /* Adjust justify for smaller screens */
  }

  .page-cockfighting__section-title::after {
    width: 60px;
  }

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

  .page-cockfighting__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__step-title,
  .page-cockfighting__faq-question {
    font-size: 1.2rem;
  }

  .page-cockfighting__hero-description,
  .page-cockfighting__paragraph,
  .page-cockfighting__feature-description,
  .page-cockfighting__step-description,
  .page-cockfighting__faq-answer,
  .page-cockfighting__list-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__paragraph {
    text-align: left;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.2rem, 9vw, 2rem);
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.2rem, 8vw, 1.8rem);
  }
}

/* Ensure content area images are responsive and not too small */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  object-fit: cover;
  filter: none; /* Absolutely no filter */
}

/* Specific rules for images inside .page-cockfighting */
.page-cockfighting .page-cockfighting__hero-image-wrapper img,
.page-cockfighting .page-cockfighting__feature-card img {
  width: 100%; /* Override any specific width to ensure responsiveness */
  height: auto; /* Maintain aspect ratio */
  min-width: 200px; /* Enforce minimum size */
  filter: none; /* No filter */
}

/* For mobile, prevent overflow */
@media (max-width: 768px) {
  .page-cockfighting {
    overflow-x: hidden;
  }
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}