.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: #0a0909; /* Dark background for hero section */
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Ensure image doesn't get too tall */
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-cockfighting__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the bottom of the image for visual flow, but not covering the main image area */
  position: relative;
  z-index: 1; /* Ensure text is above image */
  background: linear-gradient(180deg, rgba(10, 9, 9, 0) 0%, #0a0909 50%, #0a0909 100%); /* Gradient to blend with dark background */
  color: #FFFFFF;
}

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #d6d604; /* Yellow-green accent */
  margin-bottom: 20px;
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-cockfighting__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-cockfighting__introduction-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-cockfighting__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__features-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-cockfighting__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-cockfighting__how-to-play-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-cockfighting__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 25px;
  border-left: 5px solid #2F6BFF;
}

.page-cockfighting__step-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

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

.page-cockfighting__step-description a:hover {
  text-decoration: underline;
}

.page-cockfighting__cta-section {
  padding: 60px 0;
  background-color: #0a0909; /* Dark background */
}

.page-cockfighting__cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #2d0000; /* Deep red/wine background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.page-cockfighting__cta-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  filter: brightness(0.8);
}

.page-cockfighting__cta-content {
  padding: 40px 20px;
  background-color: #2d0000; /* Deep red/wine */
}

.page-cockfighting__cta-title {
  font-size: 2em;
  font-weight: 700;
  color: #d6d604; /* Yellow-green accent */
  margin-bottom: 15px;
}

.page-cockfighting__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 0.95em;
  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;
}

@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }

  .page-cockfighting__main-title {
    font-size: 2.5em;
  }

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

  .page-cockfighting__cta-title {
    font-size: 1.8em;
  }

  .page-cockfighting__feature-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }

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

  .page-cockfighting__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

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

  .page-cockfighting__feature-image {
    height: 250px;
  }

  .page-cockfighting__card-title {
    font-size: 1.3em;
  }

  .page-cockfighting__step-item {
    padding: 20px;
  }

  .page-cockfighting__step-title {
    font-size: 1.4em;
  }

  .page-cockfighting__cta-title {
    font-size: 1.6em;
  }

  .page-cockfighting__cta-description {
    font-size: 0.95em;
  }

  .page-cockfighting__faq-question {
    font-size: 1.1em;
  }

  .page-cockfighting__hero-image,
  .page-cockfighting__feature-image,
  .page-cockfighting__cta-image,
  .page-cockfighting__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }

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

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

  .page-cockfighting__cta-title {
    font-size: 1.4em;
  }

  .page-cockfighting__hero-button,
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}