.page-cockfighting {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #0a0909;
}

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

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

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

.page-cockfighting__main-title {
  font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  color: #F3C54D;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__lead-paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-cockfighting__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

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

.page-cockfighting__cta-button--small {
  padding: 12px 25px;
  font-size: 0.9em;
}

.page-cockfighting__secondary-button {
  display: inline-block;
  background-color: #7E0D0D;
  color: #FFF1E8;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-left: 15px;
  border: 1px solid #6A1E1E;
}

.page-cockfighting__secondary-button:hover {
  background-color: #E53030;
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #140C0C;
}

.page-cockfighting__section-heading {
  font-size: 2.2em;
  color: #C61F1F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-cockfighting__text-content {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-cockfighting__feature-card {
  background-color: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  filter: none;
}

.page-cockfighting__card-title {
  font-size: 1.4em;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-cockfighting__card-description {
  font-size: 0.95em;
  color: #FFF1E8;
  padding: 0 15px;
}

.page-cockfighting__action-area {
  text-align: center;
  margin-top: 40px;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting__step-item {
  background-color: #2A1212;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
}

.page-cockfighting__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #C61F1F;
  color: #FFF1E8;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid #E53030;
}

.page-cockfighting__step-title {
  font-size: 1.3em;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  font-size: 0.95em;
  color: #FFF1E8;
}

.page-cockfighting__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.page-cockfighting__faq-question {
  font-size: 1.2em;
  color: #C61F1F;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 0.95em;
  color: #FFF1E8;
}

@media (max-width: 849px) {
  .page-cockfighting__hero-content-wrapper {
    padding: 30px 15px;
  }
  .page-cockfighting__section-heading {
    font-size: 1.8em;
  }
  .page-cockfighting__cta-button,
  .page-cockfighting__secondary-button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-cockfighting__action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
  }
  .page-cockfighting__lead-paragraph {
    font-size: 1em;
  }
  .page-cockfighting__section-heading {
    font-size: 1.5em;
  }
  .page-cockfighting__text-content {
    text-align: left;
  }
  .page-cockfighting__cta-button,
  .page-cockfighting__secondary-button {
    padding: 12px 20px;
    font-size: 0.85em;
  }
}

/* Ensure all content images in mobile are responsive and not smaller than 200px */
@media (max-width: 768px) {
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-cockfighting__feature-card img {
    min-width: 200px;
    min- /* Adjusted to maintain aspect ratio, but ensuring minimum dimensions */
  }
}