.page-cockfighting-cockfighting-history-culture {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text, ensures WCAG AA contrast on dark background */
  background-color: #1A1A2E; /* Dark background */
  line-height: 1.6;
}

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

.page-cockfighting-cockfighting-history-culture__hero-section {
  background: linear-gradient(135deg, #FFD700, #DC143C);
  padding: 80px 0 40px;
  text-align: center;
  color: #1A1A2E; /* Dark text on bright gradient background for contrast */
}

.page-cockfighting-cockfighting-history-culture__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A2E;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-cockfighting-cockfighting-history-culture__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-cockfighting-history-culture__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-cockfighting-cockfighting-history-culture__content-section {
  padding: 60px 0;
}

.page-cockfighting-cockfighting-history-culture__section--gold {
  background-color: #1A1A2E;
  color: #F8F8F8;
}

.page-cockfighting-cockfighting-history-culture__section--red {
  background-color: #2A2A4A;
  color: #F8F8F8;
}

.page-cockfighting-cockfighting-history-culture__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles, ensures WCAG AA contrast on dark background */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-cockfighting-history-culture__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Red underline */
  border-radius: 2px;
}

.page-cockfighting-cockfighting-history-culture__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-cockfighting-history-culture__content-section h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-cockfighting-cockfighting-history-culture__image--full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-cockfighting-history-culture__image--center {
  display: block;
  margin: 40px auto;
  max-width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-cockfighting-history-culture__link {
  color: #FFD700; /* Gold link color, ensures WCAG AA contrast */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting-cockfighting-history-culture__link:hover {
  color: #DC143C; /* Red on hover */
  text-decoration: underline;
}

.page-cockfighting-cockfighting-history-culture__cta {
  text-align: center;
  margin-top: 60px;
}

.page-cockfighting-cockfighting-history-culture__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-cockfighting-cockfighting-history-culture__button--primary {
  background-color: #FFD700;
  color: #1A1A2E; /* Dark text on gold button for contrast */
}

.page-cockfighting-cockfighting-history-culture__button--primary:hover {
  background-color: #DC143C;
  color: #F8F8F8; /* Light text on red button for contrast */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-cockfighting-history-culture__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700; /* Gold text on dark background for contrast */
}

.page-cockfighting-cockfighting-history-culture__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E; /* Dark text on gold background for contrast */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-cockfighting-history-culture__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting-cockfighting-history-culture__hero-description,
  .page-cockfighting-cockfighting-history-culture__content-section p {
    font-size: 1em;
  }

  .page-cockfighting-cockfighting-history-culture__section-title {
    font-size: 2em;
  }

  .page-cockfighting-cockfighting-history-culture__button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-cockfighting-history-culture__hero-title {
    font-size: 2em;
  }

  .page-cockfighting-cockfighting-history-culture__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-cockfighting-history-culture__hero-section {
    padding: 60px 0 30px;
  }

  .page-cockfighting-cockfighting-history-culture__content-section {
    padding: 40px 0;
  }
  
  .page-cockfighting-cockfighting-history-culture__image--center {
    max-width: 90%;
  }
}