.page-cockfighting {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

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

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

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

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-cockfighting__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background-color: #6FA3FF; /* Secondary color */
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: 15px;
}

.page-cockfighting__secondary-button:hover {
  background-color: #2F6BFF; /* Primary color on hover */
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 40px;
}

.page-cockfighting__text-content {
  font-size: 1.05em;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
  max-width: 800px;
  margin: 0 auto 20px;
}

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

.page-cockfighting__feature-card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px; /* Ensure cards have sufficient height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__feature-icon {
  width: 250px; /* Min size 200x200px */
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-cockfighting__card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-cockfighting__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-cockfighting__list-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.page-cockfighting__step-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting__cta-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-cockfighting__cta-button,
  .page-cockfighting__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px 0;
  }

  .page-cockfighting__cta-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .page-cockfighting__secondary-button {
    margin-left: 0;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

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

  .page-cockfighting__hero-section img,
  .page-cockfighting__introduction-section img,
  .page-cockfighting__features-section img,
  .page-cockfighting__how-to-play-section img {
    max-width: 100%;
    height: auto;
  }

  .page-cockfighting__feature-icon {
    width: 100%; /* Ensure content images are responsive */
    height: auto;
    max-width: 300px; /* Maintain a reasonable max-width for smaller screens */
    min-width: 200px;
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-content {
    padding: 0 10px 30px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-cockfighting__cta-button,
  .page-cockfighting__secondary-button {
    width: 100%;
    max-width: 250px;
  }
}