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

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

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

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

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

.page-cockfighting__hero-content {
  text-align: center;
  padding: 30px 15px;
  max-width: 900px;
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FF8C1A;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-cockfighting__description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #FFF3E6;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

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

.page-cockfighting__cta-button--secondary {
  background: #17191F;
  border: 1px solid #A84F0C;
  margin-left: 15px;
  box-shadow: none;
}

.page-cockfighting__cta-button--secondary:hover {
  background-color: #2a2d36;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

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

.page-cockfighting__features-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-cockfighting__feature-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting__feature-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: #FFB04D;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  color: #FFF3E6;
  padding: 0 20px;
}

.page-cockfighting__guide-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-cockfighting__guide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-cockfighting__guide-content img {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-cockfighting__guide-steps {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-cockfighting__guide-subtitle {
  font-size: 1.8rem;
  color: #FF8C1A;
  margin-bottom: 20px;
}

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

.page-cockfighting__step-list li {
  background-color: #17191F;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #FFF3E6;
  border-left: 5px solid #FFA53A;
}

.page-cockfighting__step-number {
  font-weight: bold;
  color: #FFB04D;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-cockfighting__step-list a {
  color: #FFB04D;
  text-decoration: none;
}

.page-cockfighting__step-list a:hover {
  text-decoration: underline;
}

.page-cockfighting__guide-text {
  font-size: 1rem;
  color: #FFF3E6;
  margin-top: 20px;
}

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

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

.page-cockfighting__promo-card {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-8px);
}

.page-cockfighting__promo-card .page-cockfighting__card-title {
  color: #FF8C1A;
  margin-bottom: 15px;
}

.page-cockfighting__promo-card .page-cockfighting__card-text {
  margin-bottom: 25px;
}

.page-cockfighting__promo-link {
  color: #FFB04D;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.page-cockfighting__promo-link:hover {
  color: #FFA53A;
  text-decoration: underline;
}

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

.page-cockfighting__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 849px) {
  .page-cockfighting__hero-content {
    padding: 20px 10px;
  }

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

  .page-cockfighting__description {
    font-size: 1rem;
  }

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

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

  .page-cockfighting__guide-content {
    flex-direction: column;
  }

  .page-cockfighting__guide-content img,
  .page-cockfighting__guide-steps {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-cockfighting__feature-card img {
    height: 200px; /* Adjust height for smaller screens */
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-cockfighting__feature-card img,
  .page-cockfighting__guide-content img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 15px 10px;
  }

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

  .page-cockfighting__feature-card img,
  .page-cockfighting__guide-content img {
    height: auto; /* Allow auto height for all images on mobile */
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.1rem, 7vw, 2rem);
  }

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

  .page-cockfighting__cta-button {
    width: 100%;
    min-width: unset;
  }

  .page-cockfighting__feature-card img {
    
  }

  .page-cockfighting__step-list li {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Content area image CSS size lower bound enforcement */
.page-cockfighting__feature-card img,
.page-cockfighting__guide-content img {
  min-width: 200px;
  min-height: 200px;
}