.page-cockfighting {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to ensure content starts below header */
}

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

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

.page-cockfighting__text-content {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__btn--cta {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

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

.page-cockfighting__btn--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 1px solid #3A2A12;
}

.page-cockfighting__btn--secondary:hover {
  transform: translateY(-2px);
  background-color: #1a1a1a;
}

/* Hero Section */
.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  overflow: hidden;
}

.page-cockfighting__hero-visual {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting__hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/5; /* Adjust as needed for visual impact */
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 15px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

/* Intro Section */
.page-cockfighting__intro-section {
  padding: 60px 0;
}

/* How To Play Section */
.page-cockfighting__how-to-play-section {
  padding: 60px 0;
  background-color: #111111;
}

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

.page-cockfighting__step-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  text-align: center;
}

.page-cockfighting__step-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
}

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

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

.page-cockfighting__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us-section {
  padding: 60px 0;
}

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

.page-cockfighting__feature-card {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  text-align: center;
}

.page-cockfighting__card-bg {
  background-color: #111111;
}

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

.page-cockfighting__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-cockfighting__image-wrapper--center {
  text-align: center;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 60px 0;
  background-color: #111111;
  text-align: center;
}

.page-cockfighting__promotion-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

.page-cockfighting__promotion-list li {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #FFF6D6;
  position: relative;
  padding-left: 40px;
}

.page-cockfighting__promotion-list li::before {
  content: '⚡'; /* Unicode lightning bolt for bullet point */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #F2C14E;
}

.page-cockfighting__image-wrapper--right {
  text-align: right;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 60px 0;
}

.page-cockfighting__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  font-size: 1.2rem;
  color: #FFD36B;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

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

.page-cockfighting__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-cockfighting__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting__faq-answer p {
  margin-top: 0;
  padding-bottom: 18px;
  font-size: 1rem;
  color: #FFF6D6;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-cockfighting__hero-visual img {
    aspect-ratio: 4/3;
  }
  .page-cockfighting__steps-grid,
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__image-wrapper--right {
    text-align: center;
  }

  .page-cockfighting__promotion-list {
    max-width: 100%;
    padding: 0 15px;
  }

  .page-cockfighting__promotion-list li {
    padding-left: 20px;
  }

  .page-cockfighting__promotion-list li::before {
    left: 0;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

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

  .page-cockfighting__btn {
    padding: 10px 20px;
  }

  .page-cockfighting__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-question::after {
    right: 20px;
  }

  .page-cockfighting__faq-answer p {
    font-size: 0.9rem;
  }
}

/* Ensure all content area images are not smaller than 200px and responsive */
.page-cockfighting img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
  }
}