.page-cockfighting {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Nền tối theo custom color */
  color: #F2FFF6; /* Text Main theo custom color */
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

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

.page-cockfighting__hero-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  /* clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
}

.page-cockfighting__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-cockfighting__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A brighter green from gradient */
  border: 2px solid #2AD16F; /* Border color from button gradient */
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-cockfighting__video-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  box-sizing: border-box;
}

.page-cockfighting__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-cockfighting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-cockfighting__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Gold */
  border-radius: 2px;
}

.page-cockfighting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__content-area p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__content-area h3 {
  color: #F2C14E; /* Gold */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-cockfighting__list-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F; /* A brighter green */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__list-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-cockfighting__list-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 0;
}

.page-cockfighting__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-cockfighting__step-title {
  color: #2AD16F; /* A brighter green */
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.page-cockfighting__step-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.page-cockfighting__promotion-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-cockfighting__promotion-title {
  color: #F2C14E; /* Gold */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-cockfighting__promotion-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 0;
}

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

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-size: 1.15rem;
  font-weight: bold;
  background-color: #0A4B2C; /* Deep Green for summary */
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #13994A; /* Darker green on hover */
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  background-color: #13994A;
}

.page-cockfighting__final-cta {
  text-align: center;
  margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

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

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

  .page-cockfighting__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-cockfighting__video-section {
    padding: 20px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 5vw + 1rem, 2.2rem);
    margin-bottom: 30px;
  }

  .page-cockfighting__content-area {
    padding: 40px 15px;
  }

  .page-cockfighting__content-area p {
    font-size: 0.95rem;
  }

  .page-cockfighting__content-area h3 {
    font-size: 1.3rem;
  }

  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__step-card,
  .page-cockfighting__promotion-card,
  .page-cockfighting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px;
  }
}