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

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

.page-cockfighting-live-stream__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, assuming shared handles body padding */
  padding-bottom: 50px;
  overflow: hidden;
}

.page-cockfighting-live-stream__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-cockfighting-live-stream__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting-live-stream__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting-live-stream__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-cockfighting-live-stream__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.page-cockfighting-live-stream__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-cockfighting-live-stream__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-cockfighting-live-stream__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-cockfighting-live-stream__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-live-stream__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-cockfighting-live-stream__about-section,
.page-cockfighting-live-stream__advantages-section,
.page-cockfighting-live-stream__how-to-join-section,
.page-cockfighting-live-stream__features-section,
.page-cockfighting-live-stream__faq-section,
.page-cockfighting-live-stream__cta-section {
  padding: 60px 0;
}

.page-cockfighting-live-stream__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-cockfighting-live-stream__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-cockfighting-live-stream__text-block {
  flex: 1;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting-live-stream__text-block p {
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px; /* Ensure min image size */
}

.page-cockfighting-live-stream__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-cockfighting-live-stream__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting-live-stream__advantage-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting-live-stream__light-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-cockfighting-live-stream__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__advantage-card p {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-cockfighting-live-stream__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-stream__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-cockfighting-live-stream__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-cockfighting-live-stream__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting-live-stream__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-cockfighting-live-stream__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-cockfighting-live-stream__feature-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting-live-stream__feature-card p {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-cockfighting-live-stream__mt-40 {
  margin-top: 40px;
}

.page-cockfighting-live-stream__faq-list {
  margin-top: 40px;
}

details.page-cockfighting-live-stream__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  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-live-stream__faq-item summary.page-cockfighting-live-stream__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-cockfighting-live-stream__faq-item summary.page-cockfighting-live-stream__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting-live-stream__faq-item summary.page-cockfighting-live-stream__faq-question:hover {
  background: rgba(46, 122, 78, 0.2); /* Lighter Border color for hover */
}
.page-cockfighting-live-stream__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}
.page-cockfighting-live-stream__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-cockfighting-live-stream__faq-item .page-cockfighting-live-stream__faq-answer {
  padding: 0 25px 20px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 8px 8px;
  color: #A7D9B8; /* Text Secondary */
}
.page-cockfighting-live-stream__faq-answer p {
    margin-bottom: 10px;
}

.page-cockfighting-live-stream__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  padding: 80px 0;
}

.page-cockfighting-live-stream__cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting-live-stream__cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
}

.page-cockfighting-live-stream__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-cockfighting-live-stream__hero-image-wrapper {
    height: 500px;
  }
  .page-cockfighting-live-stream__main-title {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
  }
  .page-cockfighting-live-stream__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting-live-stream__content-wrapper {
    flex-direction: column;
  }
  .page-cockfighting-live-stream__image-wrapper {
    margin-top: 30px;
  }
  .page-cockfighting-live-stream__grid,
  .page-cockfighting-live-stream__steps-grid,
  .page-cockfighting-live-stream__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-cockfighting-live-stream__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
  .page-cockfighting-live-stream__cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-stream__container {
    padding: 15px;
  }

  /* HERO 主图区域 */
  .page-cockfighting-live-stream__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-cockfighting-live-stream__hero-image-wrapper {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-cockfighting-live-stream__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
  .page-cockfighting-live-stream__hero-content {
    padding: 0 15px;
  }
  .page-cockfighting-live-stream__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-cockfighting-live-stream__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-cockfighting-live-stream__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-live-stream__btn-primary,
  .page-cockfighting-live-stream__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 内容区通用样式 */
  .page-cockfighting-live-stream__about-section,
  .page-cockfighting-live-stream__advantages-section,
  .page-cockfighting-live-stream__how-to-join-section,
  .page-cockfighting-live-stream__features-section,
  .page-cockfighting-live-stream__faq-section,
  .page-cockfighting-live-stream__cta-section {
    padding: 40px 0;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-cockfighting-live-stream__section-title::after {
    width: 60px;
    height: 3px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-cockfighting-live-stream__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-cockfighting-live-stream__text-block {
    font-size: 0.95rem;
    text-align: left; /* Align text left on mobile */
  }
  .page-cockfighting-live-stream__text-block p {
    margin-bottom: 10px;
  }
  .page-cockfighting-live-stream__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }

  /* 产品展示图区域 / 网格布局 */
  .page-cockfighting-live-stream__grid,
  .page-cockfighting-live-stream__steps-grid,
  .page-cockfighting-live-stream__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting-live-stream__advantage-card,
  .page-cockfighting-live-stream__step-card,
  .page-cockfighting-live-stream__feature-card {
    padding: 25px;
    border-radius: 8px;
  }
  .page-cockfighting-live-stream__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .page-cockfighting-live-stream__card-image {
    height: 200px; /* Adjust height for mobile */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ */
  details.page-cockfighting-live-stream__faq-item summary.page-cockfighting-live-stream__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting-live-stream__faq-qtext {
    font-size: 1rem;
  }
  .page-cockfighting-live-stream__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 10px;
  }
  details.page-cockfighting-live-stream__faq-item .page-cockfighting-live-stream__faq-answer {
    padding: 0 20px 15px;
  }
  .page-cockfighting-live-stream__faq-answer p {
    font-size: 0.95rem;
  }

  /* CTA */
  .page-cockfighting-live-stream__cta-box {
    padding: 30px;
  }
  .page-cockfighting-live-stream__cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 20px;
  }
  .page-cockfighting-live-stream__cta-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* 通用图片与容器 */
  .page-cockfighting-live-stream__section,
  .page-cockfighting-live-stream__card,
  .page-cockfighting-live-stream__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 确保所有图片都强制响应式 */
  .page-cockfighting-live-stream img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}