.page-cockfighting {
  background-color: #100224;
  color: #F0F0F0;
  font-family: sans-serif;
  line-height: 1.6;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #FF5A4F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting__sub-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #FF5A4F;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-cockfighting__text-content {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-cockfighting__highlight {
  color: #FF5A4F;
  font-weight: bold;
}

.page-cockfighting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.page-cockfighting__btn--primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
}

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

.page-cockfighting__btn--secondary {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #E0E0E0;
}

.page-cockfighting__btn--secondary:hover {
  background-color: #E0E0E0;
}

/* Hero Section */
.page-cockfighting__hero-section {
  padding-top: 10px;
  background-color: #100224;
  text-align: center;
}

.page-cockfighting__hero-image-wrapper {
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-cockfighting__hero-description {
  font-size: 1.2rem;
  color: #E0E0E0;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

/* Introduction Section */
.page-cockfighting__introduction-section {
  padding: 80px 0;
  background-color: #100224;
}

/* Types Section */
.page-cockfighting__types-section {
  padding: 80px 0;
  background-color: #0d011f;
}

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

.page-cockfighting__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-cockfighting__card-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-cockfighting__card-link:hover {
  color: #E53935;
}

.page-cockfighting__card-description {
  font-size: 1rem;
  color: #555555;
  padding: 0 15px;
}

/* Benefits Section */
.page-cockfighting__benefits-section {
  padding: 80px 0;
  background-color: #100224;
}

.page-cockfighting__benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__benefits-content {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__benefits-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__benefits-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__list-item {
  background: #1a0333;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__list-item::before {
  content: '✔️';
  font-size: 1.2rem;
  color: #FF5A4F;
}

.page-cockfighting__btn--benefits {
  margin-top: 20px;
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 80px 0;
  background-color: #0d011f;
}

.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-cockfighting__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__step-title {
  font-size: 1.4rem;
  color: #E53935;
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  font-size: 1rem;
  color: #555555;
}

.page-cockfighting__guide-cta {
  text-align: center;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  background-color: #100224;
}

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

.page-cockfighting__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-cockfighting__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-cockfighting__promotion-title {
  font-size: 1.4rem;
  color: #333333;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-cockfighting__promotion-description {
  font-size: 1rem;
  color: #555555;
  padding: 0 15px;
}

.page-cockfighting__view-all-promos {
  text-align: center;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: #0d011f;
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__faq-item {
  background-color: #1a0333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  font-size: 1.2rem;
  color: #FFFFFF;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-cockfighting__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-question::after {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1rem;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 10px;
}

/* Community Section */
.page-cockfighting__community-section {
  padding: 80px 0;
  background-color: #100224;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-image {
    width: 100%;
    height: 563px; /* 1000x563 ratio */
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    margin-bottom: 40px;
  }

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

  .page-cockfighting__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-cockfighting__hero-image {
    height: 450px; /* 800x450 ratio */
  }

  .page-cockfighting__benefits-wrapper {
    flex-direction: column;
  }

  .page-cockfighting__benefits-content, .page-cockfighting__benefits-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-cockfighting__grid, .page-cockfighting__guide-steps, .page-cockfighting__promotions-grid {
    grid-template-columns: 1fr;
  }

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

  .page-cockfighting__main-title {
    font-size: 2.8rem;
  }

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

  .page-cockfighting__text-content {
    font-size: 1rem;
  }

  /* Ensure all content images are responsive and not too small */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
  }

  .page-cockfighting__card-image, .page-cockfighting__promotion-image {
    height: auto;
    min-height: 200px;
  }

  .page-cockfighting__step-image {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 2rem;
  }

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

  .page-cockfighting__hero-image {
    height: 280px; /* Example smaller height */
  }
}

/* Ensure content images meet minimum size requirements for all viewports */
.page-cockfighting__card-image,
.page-cockfighting__benefits-image,
.page-cockfighting__step-image,
.page-cockfighting__promotion-image {
  min-width: 200px;
  min-height: 200px;
}