.page-cockfighting {
  font-family: Arial, sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

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

.page-cockfighting__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  /* Using clamp for responsive font-size */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-cockfighting__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  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__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

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

.page-cockfighting__text-content {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D;
}

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

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

.page-cockfighting__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  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.15);
}

.page-cockfighting__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

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

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

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-cockfighting__step-item {
  background-color: #F4F7FB;
  border-left: 5px solid #2F6BFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__step-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-cockfighting__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-cockfighting__promotions-section {
  padding: 60px 0;
  background-color: #F4F7FB;
  text-align: center;
}

.page-cockfighting__secondary-cta {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-cockfighting__secondary-cta:hover {
  background-color: #2F6BFF;
}

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

.page-cockfighting__faq-item {
  background-color: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-cockfighting__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__container {
    padding: 20px 30px;
  }
}

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

  .page-cockfighting__description {
    font-size: 1rem;
  }

  .page-cockfighting__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-top: 40px;
  }

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

  .page-cockfighting__feature-image {
    height: 220px;
    min-width: 200px;
    min-height: 200px;
  }

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

  .page-cockfighting__step-title {
    font-size: 1.2rem;
  }

  /* Mobile content area images must not overflow */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-cockfighting__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-top: 30px;
  }

  .page-cockfighting__feature-title {
    font-size: 1.3rem;
  }

  .page-cockfighting__feature-description,
  .page-cockfighting__text-content,
  .page-cockfighting__step-description,
  .page-cockfighting__faq-answer {
    font-size: 0.95rem;
  }

  .page-cockfighting__secondary-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

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