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

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

.page-cockfighting__hero-section {
  background: #F4F7FB;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
}

.page-cockfighting__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-content {
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.15em;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-cockfighting__section {
  padding: 60px 0;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-cockfighting__paragraph {
  font-size: 1.05em;
  color: #1F2D3D;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-cockfighting__list-item {
  background-color: #FFFFFF;
  border-left: 5px solid #2F6BFF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #1F2D3D;
  font-size: 1.05em;
}

.page-cockfighting__list-item strong {
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-cockfighting__benefits-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__benefits-title {
  font-size: 1.4em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__benefits-description {
  font-size: 1em;
  color: #1F2D3D;
  text-align: center;
}

.page-cockfighting__cta-bottom {
  text-align: center;
  padding: 80px 0;
  background-color: #6FA3FF; /* Using auxiliary color for CTA background */
  color: #FFFFFF;
}

.page-cockfighting__cta-bottom .page-cockfighting__section-title,
.page-cockfighting__cta-bottom .page-cockfighting__paragraph {
  color: #FFFFFF;
}

.page-cockfighting__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-cockfighting__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__btn--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-cockfighting__hero-description,
  .page-cockfighting__paragraph,
  .page-cockfighting__list-item,
  .page-cockfighting__benefits-description {
    font-size: 1em;
  }

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

  .page-cockfighting__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  /* Mobile content area image overflow prevention */
  .page-cockfighting__hero-section img,
  .page-cockfighting__about-cockfighting img,
  .page-cockfighting__game-types img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-cockfighting__section {
    padding: 40px 0;
  }

  .page-cockfighting__main-title {
    margin-bottom: 15px;
  }

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

  .page-cockfighting__section-title {
    margin-bottom: 30px;
  }

  .page-cockfighting__btn {
    width: 100%;
    max-width: 280px;
  }
}