.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-cockfighting__section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

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

.page-cockfighting__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-cockfighting__text-highlight {
  color: #57E38D; /* Glow */
}

/* HERO主图区域样式 */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* 小额顶距，避免与body padding-top双倍留白 */
  background-color: #08160F; /* Background */
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  min-width: 180px;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Deep Green */
}

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

/* Nội dung chính */
.page-cockfighting__intro-section, .page-cockfighting__guide-section, .page-cockfighting__promotions-section, .page-cockfighting__faq-section, .page-cockfighting__cta-bottom-section {
  background-color: #08160F; /* Background */
}

.page-cockfighting__dark-section {
  background-color: #11271B; /* Card BG */
}

.page-cockfighting__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting__text-block {
  flex: 1;
  min-width: 400px;
}

.page-cockfighting__text-block p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__text-block h3 {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-cockfighting__image-wrapper {
  flex: 1;
  text-align: center;
  min-width: 400px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting__cards-grid, .page-cockfighting__strategy-cards-grid, .page-cockfighting__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__card, .page-cockfighting__promo-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__card:hover, .page-cockfighting__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__card-title, .page-cockfighting__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__card-text, .page-cockfighting__promo-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-cockfighting__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-cockfighting__strategy-cards-grid .page-cockfighting__card img {
  height: 250px;
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
}

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

.page-cockfighting__guide-list li h3 {
  font-size: 22px;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-cockfighting__guide-list li p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 0;
}

.page-cockfighting__features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-cockfighting__features-list li {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.page-cockfighting__list-icon {
  color: #57E38D; /* Glow */
  font-size: 24px;
  margin-right: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.page-cockfighting__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2FFF6; /* Text Main */
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: rgba(46, 122, 78, 0.2); /* Border with opacity */
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 25px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 12px 12px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

/* CTA Bottom Section */
.page-cockfighting__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A4B2C 0%, #08160F 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__hero-description {
    font-size: 18px;
  }
  .page-cockfighting__content-grid {
    flex-direction: column;
  }
  .page-cockfighting__content-grid--reverse {
    flex-direction: column;
  }
  .page-cockfighting__text-block, .page-cockfighting__image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__section {
    padding: 40px 0;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-cockfighting__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-cockfighting__hero-description {
    font-size: 16px;
  }
  .page-cockfighting__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-cockfighting__hero-section {
    padding-top: 10px !important; /* body已留白；与桌面一致，小额顶距即可 */
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting__image-wrapper img {
    border-radius: 8px;
  }
  .page-cockfighting__card, .page-cockfighting__promo-card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-cockfighting__card-title, .page-cockfighting__promo-title {
    font-size: 18px;
  }
  .page-cockfighting__card-text, .page-cockfighting__promo-text {
    font-size: 15px;
  }
  .page-cockfighting__promo-card img {
    
  }
  .page-cockfighting__strategy-cards-grid .page-cockfighting__card img {
    height: 200px;
  }
  .page-cockfighting__guide-list li {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  .page-cockfighting__guide-list li h3 {
    font-size: 18px;
  }
  .page-cockfighting__guide-list li p {
    font-size: 15px;
  }
  .page-cockfighting__features-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .page-cockfighting__list-icon {
    font-size: 20px;
    margin-right: 10px;
  }
  .page-cockfighting__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
  .page-cockfighting__button-group a {
    width: 100% !important;
    max-width: 100% !important;
  }
  details.page-cockfighting__faq-item {
    border-radius: 8px;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 24px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 20px 20px;
  }
  .page-cockfighting__cta-bottom-section {
    padding: 60px 15px;
  }
  /* 移动端强制图片适配 */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__image-wrapper,
  .page-cockfighting__hero-container,
  .page-cockfighting__hero-image,
  .page-cockfighting__hero-content,
  .page-cockfighting__hero-cta-group,
  .page-cockfighting__button-group,
  .page-cockfighting__promo-card,
  .page-cockfighting__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-cockfighting__button-group {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}