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

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

.page-cockfighting__hero-section {
  padding-top: 10px; /* Small top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  margin-bottom: 40px;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
}

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

.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: background 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-cockfighting__about-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #2F6BFF;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1.05em;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.page-cockfighting__feature-image {
  width: 100%;
  height: 200px; /* Minimum size 200x200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

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

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-cockfighting__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #F9FAFC; /* Slightly different background for steps */
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #2F6BFF;
}

.page-cockfighting__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: 700;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__step-title {
  font-size: 1.3em;
  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__inline-link {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-cockfighting__inline-link:hover {
  color: #6FA3FF;
}

.page-cockfighting__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: fit-content;
}

.page-cockfighting__faq-item {
  background-color: #F9FAFC;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }

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

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

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

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

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

  .page-cockfighting__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-cockfighting__step-item::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* Mobile overflow prevention for images */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting__section-title {
    font-size: 1.5em;
  }

  .page-cockfighting__feature-title {
    font-size: 1.2em;
  }

  .page-cockfighting__step-title {
    font-size: 1.1em;
  }
}