.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-cockfighting__hero-section {
  padding-top: 10px; /* Small top padding as per instruction */
  margin-bottom: 40px;
}

.page-cockfighting__hero-image-wrapper {
  margin-bottom: 20px;
}

.page-cockfighting__hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-cockfighting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  max-width: 60ch; /* Ensure title fits within character limit */
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
  max-width: 160ch; /* Ensure description fits within character limit */
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button--primary {
  background-color: #d6d604; /* Primary Accent from 3WIN style */
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting__cta-button--primary:hover {
  background-color: #c4c400;
  transform: translateY(-2px);
}

.page-cockfighting__cta-button--secondary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
}

.page-cockfighting__cta-button--secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__faq-section {
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-cockfighting__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

.page-cockfighting__feature-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-cockfighting__feature-image {
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__feature-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

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

.page-cockfighting__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting__step-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #2F6BFF; /* Main color accent */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-cockfighting__step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

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

.page-cockfighting__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #D6E2FF; /* Border */
}

.page-cockfighting__faq-question {
  font-size: 1.15rem;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  cursor: pointer;
}

.page-cockfighting__faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__main-title {
    font-size: 2rem;
  }

  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }

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

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

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

  .page-cockfighting__feature-image {
    max-height: 200px;
  }

  .page-cockfighting__text-content,
  .page-cockfighting__feature-description,
  .page-cockfighting__step-description,
  .page-cockfighting__faq-answer {
    font-size: 0.9rem;
  }

  /* Mobile content area image constraint */
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
  }
}