.page-cockfighting {
  background-color: #0a0909; /* Deep red/wine-red background */
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section - Main Title Area */
.page-cockfighting__hero-section {
  padding-top: 20px; /* Small top padding, not --header-offset */
  padding-bottom: 40px;
  background-color: #0a0909;
  text-align: center;
}

.page-cockfighting__text-content {
  margin-bottom: 30px;
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsive H1 font size */
  color: #26A9E0; /* Primary color for emphasis */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-cockfighting__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login/CTA color */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  background-color: #d6d604; /* Yellow-green/lemon yellow accent for hover */
  color: #000000;
}

.page-cockfighting__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-cockfighting__hero-image-wrapper {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* Ensure proper aspect ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filters */
  min-width: 200px;
  min-height: 200px;
}

/* General Sections */
.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__betting-guide-section,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #26A9E0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__feature-list,
.page-cockfighting__guide-list,
.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-cockfighting__feature-item,
.page-cockfighting__guide-item,
.page-cockfighting__tip-item {
  background-color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #26A9E0;
  font-size: 1rem;
}

.page-cockfighting__feature-item strong,
.page-cockfighting__guide-item strong,
.page-cockfighting__tip-item strong {
  color: #d6d604; /* Yellow-green accent for strong text */
}

.page-cockfighting__image-wrapper {
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 800px; /* Constrain content images */
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filters */
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-cockfighting__faq-item {
  background-color: #2a2a2a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #EA7C07;
}

.page-cockfighting__faq-question {
  font-size: 1.15rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__paragraph {
    text-align: left;
  }
  .page-cockfighting__hero-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__betting-guide-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__faq-section {
    padding: 30px 0;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  .page-cockfighting__hero-image,
  .page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-cockfighting__image-wrapper {
    max-width: 100%;
  }
}