.page-cockfighting {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding for the first section */
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  background-color: #F4F7FB;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-cockfighting__hero-image-container {
  width: 100%;
  max-width: 100%;
}

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

.page-cockfighting__hero-content {
  padding: 20px 15px;
  max-width: 800px; /* Constrain text width */
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-cockfighting__hero-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__hero-cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* General Section Styling */
.page-cockfighting__introduction-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__features-section,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-final-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__introduction-section {
  background-color: #F4F7FB;
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

.page-cockfighting__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__image-content--large {
  max-width: 90%;
}

/* How to Play Section */
.page-cockfighting__ordered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-cockfighting__list-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.page-cockfighting__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2F6BFF;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.page-cockfighting__list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 5px;
}

.page-cockfighting__list-description {
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-cockfighting__cta-button--centered {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* Features Section */
.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-cockfighting__feature-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-cockfighting__card-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  line-height: 1.6;
}

/* Tips Section */
.page-cockfighting__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting__unordered-list .page-cockfighting__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-cockfighting__unordered-list .page-cockfighting__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #2F6BFF;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.page-cockfighting__blockquote {
  background-color: #F4F7FB;
  border-left: 5px solid #6FA3FF;
  padding: 20px 25px;
  margin: 40px 0;
  font-style: italic;
  color: #1F2D3D;
  border-radius: 5px;
}

.page-cockfighting__blockquote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-cockfighting__blockquote-cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-top: 10px;
}

/* FAQ Section */
.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.page-cockfighting__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
}

.page-cockfighting__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-cockfighting__cta-final-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0; /* No border-radius for full width section */
  box-shadow: none;
}

.page-cockfighting__cta-final-content {
  position: relative;
  z-index: 2;
}

.page-cockfighting__section-title--white,
.page-cockfighting__paragraph--white {
  color: #FFFFFF;
}

.page-cockfighting__section-title--white::after {
  background-color: #6FA3FF;
}

.page-cockfighting__cta-button--final {
  background: #FFFFFF;
  color: #2F6BFF;
  font-weight: 700;
  padding: 15px 35px;
  font-size: 1.1rem;
  border: 2px solid #FFFFFF;
}

.page-cockfighting__cta-button--final:hover {
  background: #E0EFFF;
  color: #2F6BFF;
}

.page-cockfighting__cta-final-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15; /* Subtle overlay */
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-cockfighting__hero-content {
    padding: 15px;
  }

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

  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__how-to-play-section,
  .page-cockfighting__features-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final-section {
    padding: 40px 0;
  }

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

  .page-cockfighting__image-content--large {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 0 12px;
  }

  .page-cockfighting__paragraph {
    text-align: left;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }

  .page-cockfighting__hero-image {
    aspect-ratio: 4/3; /* Adjust for mobile hero */
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

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

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

  .page-cockfighting__list-item {
    padding-left: 40px;
  }

  .page-cockfighting__list-item::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .page-cockfighting__list-title {
    font-size: 1.1rem;
  }

  .page-cockfighting__paragraph,
  .page-cockfighting__list-description,
  .page-cockfighting__card-description,
  .page-cockfighting__unordered-list .page-cockfighting__list-item,
  .page-cockfighting__blockquote-text,
  .page-cockfighting__faq-answer {
    font-size: 0.95rem;
  }

  .page-cockfighting__faq-question {
    font-size: 1.05rem;
  }

  .page-cockfighting__cta-final-section {
    padding: 50px 0;
  }

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