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

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #0a0909; /* Dark background to complement hero */
  color: #FFFFFF;
  text-align: center;
}

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

.page-cockfighting__hero-image {
  display: block;
  width: 100%;
  height: auto;
  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: #FFFFFF;
  margin-bottom: 20px;
}

.page-cockfighting__description {
  font-size: 1.1em;
  line-height: 1.6;
  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;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

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

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 40px;
}

.page-cockfighting__paragraph {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__feature-item,
.page-cockfighting__tip-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-cockfighting__feature-title,
.page-cockfighting__step-title,
.page-cockfighting__tip-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__feature-description,
.page-cockfighting__step-description,
.page-cockfighting__tip-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__how-to-play-section {
  background-color: #F4F7FB;
}

.page-cockfighting__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__step-card {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  text-align: left;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__step-description a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-cockfighting__step-description a:hover {
  text-decoration: underline;
}

.page-cockfighting__last-paragraph {
  margin-bottom: 0;
}

.page-cockfighting__cta-banner {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-cockfighting__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
  border-radius: 10px;
}

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

  .page-cockfighting__main-title {
    font-size: 2em;
  }

  .page-cockfighting__description {
    font-size: 1em;
  }

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

  .page-cockfighting__paragraph {
    font-size: 0.95em;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__how-to-play-section,
  .page-cockfighting__tips-section {
    padding: 40px 0;
  }

  .page-cockfighting__feature-item,
  .page-cockfighting__tip-item,
  .page-cockfighting__step-card {
    padding: 20px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__step-title,
  .page-cockfighting__tip-title {
    font-size: 1.3em;
  }

  .page-cockfighting__cta-banner {
    padding: 60px 15px;
  }

  .page-cockfighting__cta-title {
    font-size: 2em;
  }

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

  .page-cockfighting__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-cockfighting__container {
    padding: 15px;
  }

  /* Mobile image handling to prevent overflow */
  .page-cockfighting__hero-image,
  .page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
  }

  .page-cockfighting__feature-list,
  .page-cockfighting__tips-list,
  .page-cockfighting__steps-wrapper {
    grid-template-columns: 1fr; /* Single column layout for small screens */
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 1.8em;
  }
  .page-cockfighting__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting__cta-title {
    font-size: 1.8em;
  }
}