.page-cockfighting {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #F4F7FB; /* Background color */
  color: #1F2D3D; /* Main text color */
  font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

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

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

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

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

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-cockfighting__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-cockfighting__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.page-cockfighting__button:hover {
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__button--secondary {
  background: #6FA3FF;
  color: #FFFFFF;
}

.page-cockfighting__button--secondary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(111, 163, 255, 0.4);
}

.page-cockfighting__button--cta {
  margin-top: 30px;
  font-size: 1.2rem;
  padding: 15px 30px;
}

.page-cockfighting__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.2rem;
  padding: 15px 30px;
}

/* Section Titles */
.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-cockfighting__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-cockfighting__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1F2D3D;
  text-align: center;
}

/* About Section */
.page-cockfighting__about-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-cockfighting__image-text-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__image-wrapper,
.page-cockfighting__text-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-cockfighting__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-cockfighting__feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1F2D3D;
}

.page-cockfighting__feature-item::before {
  content: '✓';
  color: #2F6BFF; /* Main color */
  font-weight: bold;
  margin-right: 10px;
}

/* How To Play Section */
.page-cockfighting__how-to-play-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background color */
}

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

.page-cockfighting__step-card {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

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

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

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

/* CTA Section */
.page-cockfighting__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-cockfighting__cta-content {
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting__cta-content .page-cockfighting__section-title {
  padding-top: 0; /* Remove extra padding if it's already in the section */
}

.page-cockfighting__cta-image-wrapper {
  text-align: center;
}

.page-cockfighting__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background color */
}

.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-cockfighting__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 20px;
  }

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

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

  .page-cockfighting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting__button {
    width: 80%;
    max-width: 300px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .page-cockfighting__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .page-cockfighting__image-text-grid {
    flex-direction: column;
  }

  .page-cockfighting__image-wrapper,
  .page-cockfighting__text-content {
    flex: 1 1 100%;
  }

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

  .page-cockfighting__how-to-play-section .page-cockfighting__button--cta {
    width: 80%;
    max-width: 300px;
  }

  .page-cockfighting__cta-section .page-cockfighting__button--primary {
    width: 80%;
    max-width: 300px;
  }

  /* Ensure all content images are responsive and don't overflow */
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__button {
    padding: 10px 20px;
  }
  .page-cockfighting__button--cta,
  .page-cockfighting__button--primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
}