.page-cockfighting {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding-top: 10px; /* Small top padding for first section */
}

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

.page-cockfighting__section-title,
.page-cockfighting__hero-title,
.page-cockfighting__cta-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FF8C1A 0%, #FFA53A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers that don't support text-fill-color */
}

.page-cockfighting__hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.page-cockfighting__section-description,
.page-cockfighting__hero-description,
.page-cockfighting__cta-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

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

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Maintain aspect ratio for 16:9 at 1200px width */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-cockfighting__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* About Section */
.page-cockfighting__about-section {
  padding: 60px 0;
  background-color: #17191F;
  border-top: 1px solid #A84F0C;
  border-bottom: 1px solid #A84F0C;
}

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

.page-cockfighting__about-text {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #FFF3E6;
}

.page-cockfighting__about-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__about-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__about-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-cockfighting__about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.3);
}

/* Features Section */
.page-cockfighting__features-section {
  padding: 60px 0;
}

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

.page-cockfighting__feature-card {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.2);
}

.page-cockfighting__feature-icon {
  width: 100%;
  max-width: 400px; /* Example size for feature images */
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
}

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

.page-cockfighting__feature-text {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.6;
}

/* Game Types Section */
.page-cockfighting__game-types-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-cockfighting__game-card {
  background-color: #17191F;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-cockfighting__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-cockfighting__game-text {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-cockfighting__game-cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FF8C1A;
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.page-cockfighting__game-cta-button:hover {
  background: #D96800;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 60px 0;
  background-color: #17191F;
  border-top: 1px solid #A84F0C;
}

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

.page-cockfighting__promotion-card {
  background-color: #0D0E12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  text-align: center;
}

.page-cockfighting__promotion-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__promotion-title {
  font-size: 1.5rem;
  color: #FFA53A;
  padding: 15px 20px 0;
}

.page-cockfighting__promotion-text {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.6;
  padding: 0 20px 20px;
}

.page-cockfighting__promotion-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__promotion-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.3);
}

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

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

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

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  background-color: #FF8C1A;
  color: #FFF3E6;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #D96800;
}

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

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

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-cockfighting__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-cockfighting__faq-answer p {
  margin: 0;
  line-height: 1.7;
}

/* Call to Action Section */
.page-cockfighting__cta-section {
  padding: 80px 0;
  background-color: #0D0E12;
  text-align: center;
  border-top: 1px solid #A84F0C;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 18px 35px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 140, 26, 0.5);
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 140, 26, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting__about-content {
    flex-direction: column;
  }

  .page-cockfighting__about-image-wrapper,
  .page-cockfighting__about-text {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

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

  .page-cockfighting__cta-title {
    font-size: clamp(2rem, 5.5vw, 2.8rem);
  }

  .page-cockfighting__hero-description,
  .page-cockfighting__section-description,
  .page-cockfighting__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-cockfighting__hero-cta-button,
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-cockfighting__about-section,
  .page-cockfighting__features-section,
  .page-cockfighting__game-types-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-section {
    padding: 40px 0;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__game-types-grid,
  .page-cockfighting__promotions-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile image overflow fix */
  .page-cockfighting__hero-image,
  .page-cockfighting__about-image,
  .page-cockfighting__feature-icon,
  .page-cockfighting__game-image,
  .page-cockfighting__promotion-image {
    max-width: 100%;
    height: auto;
  }

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

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-cockfighting__cta-title {
    font-size: clamp(1.8rem, 6.5vw, 2.2rem);
  }

  .page-cockfighting__hero-description,
  .page-cockfighting__section-description,
  .page-cockfighting__cta-description {
    font-size: 0.9rem;
  }

  .page-cockfighting__hero-cta-button,
  .page-cockfighting__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-cockfighting__container {
    padding: 15px;
  }
}