.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-cockfighting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom font color for emphasis, e.g. Register/Login font */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

.page-cockfighting__section-title:last-of-type {
  margin-bottom: 20px;
}

.page-cockfighting__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-cockfighting__introduction-section, 
.page-cockfighting__why-choose-section, 
.page-cockfighting__guide-section, 
.page-cockfighting__promotions-section, 
.page-cockfighting__faq-section {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__history-section, 
.page-cockfighting__bet-types-section, 
.page-cockfighting__strategies-section, 
.page-cockfighting__conclusion-section, 
.page-cockfighting__video-section {
  background-color: #017439;
  color: #ffffff;
}

.page-cockfighting__history-section .page-cockfighting__section-title,
.page-cockfighting__bet-types-section .page-cockfighting__section-title,
.page-cockfighting__strategies-section .page-cockfighting__section-title,
.page-cockfighting__conclusion-section .page-cockfighting__section-title,
.page-cockfighting__video-section .page-cockfighting__section-title {
  color: #ffffff;
}

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

.page-cockfighting__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
}

.page-cockfighting__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-cockfighting__feature-description {
  font-size: 1em;
}

.page-cockfighting__bet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__bet-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-cockfighting__bet-item-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFFF00; /* Custom font color for emphasis */
}

.page-cockfighting__bet-item-description {
  font-size: 1em;
}

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

.page-cockfighting__guide-step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  position: relative;
  padding-top: 60px;
}

.page-cockfighting__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #017439;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-cockfighting__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-cockfighting__step-description {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-cockfighting__strategies-section .page-cockfighting__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__strategy-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.page-cockfighting__strategy-text {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__strategy-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}