.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Text Main */
  background-color: #F5F7FA; /* Body background from shared */
  line-height: 1.6;
}

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

.page-cockfighting__container--center {
  text-align: center;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 40px 20px 20px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
}

.page-cockfighting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-cockfighting__cta-buttons--center {
  margin-top: 30px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-cockfighting__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #E53935; /* Main Color */
  border: 2px solid #E53935;
}

.page-cockfighting__btn-secondary:hover {
  background: #f0f0f0;
  color: #CC2C2C;
  border-color: #CC2C2C;
}

.page-cockfighting__section {
  padding: 40px 0;
  margin-bottom: 30px;
  background-color: #F5F7FA; /* Default background */
}

.page-cockfighting__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #E53935; /* Main Color */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-cockfighting__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__text-block strong {
  color: #E53935;
}

.page-cockfighting__card {
  background: #ffffff; /* Card BG */
  border: 1px solid #E0E0E0; /* Border Color */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333333;
}

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

.page-cockfighting__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E53935; /* Main Color */
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-cockfighting__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
}

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

.page-cockfighting__feature-image, .page-cockfighting__promotion-image, .page-cockfighting__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.page-cockfighting__type-item .page-cockfighting__card-title {
  font-size: 1.5rem;
  margin-top: 0;
}

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

.page-cockfighting__step-item {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-cockfighting__step-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

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

.page-cockfighting__step-item a {
  color: #E53935;
  text-decoration: underline;
}

.page-cockfighting__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-cockfighting__advantage-item {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-cockfighting__advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FF5A4F; /* Auxiliary Color */
  margin-bottom: 10px;
}

.page-cockfighting__advantage-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
}

/* FAQ Styles */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
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: #f5f5f5;
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

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

.page-cockfighting__conclusion-cta {
  padding-bottom: 60px;
}

/* General image responsiveness */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-cockfighting__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: 2rem;
  }
  .page-cockfighting__feature-grid, .page-cockfighting__promotion-grid, .page-cockfighting__type-list, .page-cockfighting__advantage-list {
    gap: 20px;
  }
  .page-cockfighting__card-title {
    font-size: 1.3rem;
  }
  .page-cockfighting__step-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-cockfighting__hero-section {
    padding-top: 10px; /* Consistent small top padding */
    margin-bottom: 30px;
  }
  .page-cockfighting__hero-image {
    object-fit: contain !important; /* Mobile: prevent cropping */
    aspect-ratio: unset !important;
    position: static;
    height: auto;
  }
  .page-cockfighting__hero-image-wrapper {
    padding-bottom: 0;
    height: auto;
  }
  .page-cockfighting__hero-content {
    position: static;
    background: #E53935; /* Solid brand color for better readability on small screens */
    padding: 25px 15px;
    color: #ffffff;
    text-shadow: none;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .page-cockfighting__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  /* 产品展示图区域 (General grids) */
  .page-cockfighting__feature-grid, .page-cockfighting__promotion-grid, .page-cockfighting__type-list, .page-cockfighting__advantage-list {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-cockfighting__feature-image, .page-cockfighting__promotion-image, .page-cockfighting__type-image {
    height: 180px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-cockfighting__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-cockfighting__text-block {
    font-size: 1rem;
    padding: 0 10px;
    text-align: justify;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-cockfighting__card {
    padding: 20px;
  }
  .page-cockfighting__card-title {
    font-size: 1.2rem;
  }
  .page-cockfighting__card-description {
    font-size: 0.9rem;
  }

  /* 通用图片与容器 */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__section, .page-cockfighting__card, .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__section {
    padding: 30px 0;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-cockfighting__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* FAQ */
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }
  .page-cockfighting__faq-answer p {
    font-size: 0.9rem;
  }
}