.page-cockfighting {
  background-color: #F5F7FA;
  color: #333333;
  overflow-x: hidden;
}

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

.page-cockfighting__hero-section {
  padding-top: 10px;
  background-color: #100224;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  text-align: center;
}

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF5A4F;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(229, 57, 53, 0.4);
}

.page-cockfighting__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
  min-width: 250px;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #E53935;
  text-transform: uppercase;
}

.page-cockfighting__introduction-section,
.page-cockfighting__bet-types-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__tips-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__join-now-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__text-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-cockfighting__list,
.page-cockfighting__numbered-list,
.page-cockfighting__feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-cockfighting__list-item {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-cockfighting__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #E53935;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  font-weight: bold;
  color: #E53935;
  left: 0;
}

.page-cockfighting__feature-item {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  background-color: #F5F7FA;
  padding: 15px 20px 15px 50px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-cockfighting__feature-item::before {
  content: '⭐';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.page-cockfighting__contact-link {
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
}

.page-cockfighting__contact-link:hover {
  text-decoration: underline;
}

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

.page-cockfighting__faq-question {
  font-size: 1.15rem;
  color: #E53935;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
  .page-cockfighting__hero-section {
    padding-top: 10px;
  }

  .page-cockfighting__hero-image-wrapper {
    max-height: 400px;
  }

  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }

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

  .page-cockfighting__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-cockfighting__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .page-cockfighting__cta-button--large {
    max-width: 320px;
    font-size: 1.1rem;
    padding: 15px 30px;
  }

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

  .page-cockfighting__introduction-section,
  .page-cockfighting__bet-types-section,
  .page-cockfighting__how-to-play-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__why-choose-section,
  .page-cockfighting__join-now-section,
  .page-cockfighting__faq-section {
    padding: 40px 0;
  }

  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__image-content {
    margin: 20px auto;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__container {
    padding: 0 12px;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }

  .page-cockfighting__hero-description {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .page-cockfighting__cta-button {
    max-width: 280px;
  }

  .page-cockfighting__cta-button--large {
    max-width: 300px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-cockfighting__text-content,
  .page-cockfighting__list-item,
  .page-cockfighting__feature-item,
  .page-cockfighting__faq-question,
  .page-cockfighting__faq-answer {
    font-size: 0.95rem;
  }

  .page-cockfighting__feature-item {
    padding: 10px 15px 10px 40px;
  }

  .page-cockfighting__feature-item::before {
    left: 15px;
  }
}