.page-cockfighting {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding, main header offset handled by body */
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #0A4B2C;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 20px 15px;
  margin-top: -80px; /* Overlap slightly for visual effect, ensures text is below image */
  background-color: #11271B;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  border: 1px solid #2E7A4E;
}

.page-cockfighting__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-cockfighting__hero-button,
.page-cockfighting__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-cockfighting__hero-button:hover,
.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #2AD16F;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1rem;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  object-fit: cover;
}

.page-cockfighting__introduction-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__why-choose-us-section,
.page-cockfighting__cta-section {
  padding: 50px 0;
  background-color: #08160F;
}

.page-cockfighting__how-to-play-section {
  background-color: #11271B;
  border-top: 1px solid #1E3A2A;
  border-bottom: 1px solid #1E3A2A;
}

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

.page-cockfighting__step-card {
  background-color: #0A4B2C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  transition: transform 0.3s ease;
}

.page-cockfighting__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px #57E38D;
}

.page-cockfighting__step-title {
  font-size: 1.4rem;
  color: #2AD16F;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-cockfighting__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-cockfighting__feature-item {
  background-color: #11271B;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #F2FFF6;
  border: 1px solid #1E3A2A;
}

.page-cockfighting__feature-item strong {
  color: #2AD16F;
  font-size: 1.1rem;
}

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

.page-cockfighting__cta-title {
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-cockfighting__hero-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

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

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

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

  .page-cockfighting__text-content,
  .page-cockfighting__step-description,
  .page-cockfighting__feature-item,
  .page-cockfighting__cta-description {
    font-size: 0.9rem;
  }

  .page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__hero-content {
    margin-top: -30px;
    border-radius: 5px;
  }

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

  .page-cockfighting__hero-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-cockfighting__steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

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

  .page-cockfighting__feature-item strong {
    font-size: 1rem;
  }

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

  .page-cockfighting__cta-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  /* Ensure all content images are responsive */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}