.page-cockfighting {
  padding-top: 10px; /* Small top padding, main header offset handled by body */
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* Adjusted for content page hero */
  object-fit: cover;
  object-position: center;
}

.page-cockfighting__hero-content {
  width: 100%;
  max-width: 800px;
}

.page-cockfighting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FF8C1A;
  margin-bottom: 15px;
  clamp(1.8rem, 4.5vw, 2.5rem); /* Using clamp for responsive H1 */
}

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

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

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

.page-cockfighting__cta-button--secondary {
  background: linear-gradient(180deg, #D96800 0%, #A84F0C 100%);
  box-shadow: 0 4px 15px rgba(217, 104, 0, 0.4);
}

.page-cockfighting__cta-button--secondary:hover {
  box-shadow: 0 6px 20px rgba(217, 104, 0, 0.6);
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__responsible-gaming-section,
.page-cockfighting__faq-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px 15px;
  background-color: #17191F;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFA53A;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-cockfighting__text-content a {
  color: #FFB04D;
  text-decoration: none;
}

.page-cockfighting__text-content a:hover {
  text-decoration: underline;
}

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

.page-cockfighting__feature-item {
  background-color: #0D0E12;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #A84F0C;
  transition: transform 0.2s ease;
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting__feature-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: none; /* Ensure no grayscale */
}

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

.page-cockfighting__feature-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting__step-item {
  background-color: #0D0E12;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border-left: 5px solid #FF8C1A;
}

.page-cockfighting__step-title {
  font-size: 1.2rem;
  color: #FFB04D;
  margin-bottom: 10px;
}

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

.page-cockfighting__faq-list {
  margin-top: 30px;
}

.page-cockfighting__faq-item {
  background-color: #0D0E12;
  padding: 18px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #A84F0C;
}

.page-cockfighting__faq-question {
  font-size: 1.1rem;
  color: #FFA53A;
  margin-bottom: 8px;
}

.page-cockfighting__faq-answer {
  font-size: 0.9rem;
  color: #FFF3E6;
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    margin-bottom: 30px;
  }

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

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

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

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

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

  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__how-to-play-section,
  .page-cockfighting__responsible-gaming-section,
  .page-cockfighting__faq-section {
    margin: 30px auto;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .page-cockfighting__step-title,
  .page-cockfighting__faq-question {
    font-size: 1rem;
  }
}