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

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

/* Hero Section */
.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

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

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

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

/* General Section Styling */
.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__betting-guide-section,
.page-cockfighting__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #17191F; /* Card BG color for subtle separation */
}

.page-cockfighting__introduction-section:last-of-type,
.page-cockfighting__cta-section:last-of-type {
  border-bottom: none;
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Features Section */
.page-cockfighting__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__feature-title {
  font-size: 1.3rem;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-cockfighting__feature-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

/* Betting Guide Section */
.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-cockfighting__guide-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__guide-title {
  font-size: 1.25rem;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-cockfighting__guide-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

/* Call to Action Section */
.page-cockfighting__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 30px;
  }

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

  .page-cockfighting__hero-description {
    font-size: 1rem;
  }

  .page-cockfighting__cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__betting-guide-section,
  .page-cockfighting__cta-section {
    padding: 40px 0;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 30px;
  }

  .page-cockfighting__text-content {
    text-align: left;
  }

  .page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
  }

  .page-cockfighting__feature-list {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__guide-list {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__cta-button--large {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__text-content {
    text-align: left;
  }
}