.page-cockfighting {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #FFFFFF;
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding to avoid header overlap */
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* A common aspect ratio for hero banners */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no color filters */
}

.page-cockfighting__hero-content {
  padding: 40px 20px;
  max-width: 900px;
}

.page-cockfighting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive font size for H1 */
}

.page-cockfighting__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-cockfighting__cta-button:hover {
  background-color: #d66a06;
}

.page-cockfighting__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  color: #26A9E0;
  line-height: 1.3;
}

.page-cockfighting__introduction-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-cockfighting__text-content {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

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

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

.page-cockfighting__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for content images */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-cockfighting__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

.page-cockfighting__how-to-play-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-cockfighting__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.page-cockfighting__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}

.page-cockfighting__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-cockfighting__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-cockfighting__cta-content {
  max-width: 800px;
}

.page-cockfighting__cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-cockfighting__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-cockfighting__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-cockfighting__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__feature-image {
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__hero-image,
  .page-cockfighting__feature-image {
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__text-content {
    text-align: left;
  }
  .page-cockfighting__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-cockfighting__step-number {
    margin-bottom: 10px;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }
  .page-cockfighting__description {
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.6rem;
  }
  .page-cockfighting__cta-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__container {
    padding: 15px;
  }
  .page-cockfighting__text-content {
    text-align: left;
  }
}