.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color, #FFF3E6);
    background: var(--background-color, #0D0E12);
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-cockfighting__section-padding {
    padding: 60px 0;
}

.page-cockfighting__dark-section {
    background: var(--card-bg-color, #17191F);
}

.page-cockfighting__section-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--main-color, #FF8C1A);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-cockfighting__section-description {
    font-size: 18px;
    color: var(--text-main-color, #FFF3E6);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* HERO 主图区域 */
.page-cockfighting__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Consistent small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #ffffff;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

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

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 15px;
    max-width: 900px;
    margin-top: -100px;
    background: rgba(13, 14, 18, 0.85);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--auxiliary-color, #FFA53A);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 165, 58, 0.5);
}

.page-cockfighting__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #FFF3E6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: 2px solid var(--border-color, #A84F0C);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
    filter: brightness(1.1);
}

.page-cockfighting__btn-secondary {
    background: #17191F;
    color: var(--auxiliary-color, #FFA53A);
    border: 2px solid var(--auxiliary-color, #FFA53A);
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.2);
}

.page-cockfighting__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--auxiliary-color, #FFA53A);
    color: #17191F;
    box-shadow: 0 8px 20px rgba(255, 165, 58, 0.4);
}

.page-cockfighting__cta-buttons--centered {
    margin-top: 40px;
}

/* 装饰主标题 + 长文 SEO 区 */
.page-cockfighting__article-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-main-color, #FFF3E6);
    line-height: 1.7;
}

.page-cockfighting__article-body p {
    margin-bottom: 20px;
}

.page-cockfighting__article-body a {
    color: var(--auxiliary-color, #FFA53A);
    text-decoration: underline;
}

.page-cockfighting__article-body a:hover {
    color: var(--main-color, #FF8C1A);
}

.page-cockfighting__article-figure {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__highlight-text {
    color: var(--auxiliary-color, #FFA53A);
    font-weight: 600;
}

/* Benefit Grid */
.page-cockfighting__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__benefit-card {
    background: var(--background-color, #0D0E12);
    border: 1px solid var(--border-color, #A84F0C);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__benefit-title {
    font-size: 22px;
    color: var(--auxiliary-color, #FFA53A);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-cockfighting__benefit-text {
    font-size: 16px;
    color: var(--text-main-color, #FFF3E6);
}

/* 产品展示图区域 */
.page-cockfighting__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__product-card {
    background: var(--card-bg-color, #17191F);
    border: 1px solid var(--border-color, #A84F0C);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main-color, #FFF3E6);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-cockfighting__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-cockfighting__product-content {
    padding: 20px;
    flex-grow: 1;
}

.page-cockfighting__product-title {
    font-size: 20px;
    color: var(--auxiliary-color, #FFA53A);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-cockfighting__product-description {
    font-size: 15px;
    color: var(--text-main-color, #FFF3E6);
}

/* Step Grid */
.page-cockfighting__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step-card {
    background: var(--background-color, #0D0E12);
    border: 1px solid var(--border-color, #A84F0C);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-top: 60px;
}

.page-cockfighting__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color, #FF8C1A);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid var(--border-color, #A84F0C);
}

.page-cockfighting__step-title {
    font-size: 20px;
    color: var(--auxiliary-color, #FFA53A);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-cockfighting__step-text {
    font-size: 16px;
    color: var(--text-main-color, #FFF3E6);
}

/* Promotion List */
.page-cockfighting__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__promo-list li {
    background: var(--card-bg-color, #17191F);
    border: 1px solid var(--border-color, #A84F0C);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-main-color, #FFF3E6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__promo-list li strong {
    color: var(--auxiliary-color, #FFA53A);
}

/* Tips Section */
.page-cockfighting__article-body--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
}

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

.page-cockfighting__tip-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-main-color, #FFF3E6);
}

.page-cockfighting__tip-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-color, #FF8C1A);
    font-weight: bold;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #A84F0C);
  overflow: hidden;
  background: var(--card-bg-color, #17191F);
}
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: rgba(255, 140, 26, 0.1);
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color, #FFF3E6);
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--auxiliary-color, #FFA53A);
  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: var(--background-color, #0D0E12);
  border-radius: 0 0 5px 5px;
  color: var(--text-main-color, #FFF3E6);
  font-size: 16px;
}

/* Conclusion Section */
.page-cockfighting__text-center {
    text-align: center;
}

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

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-content {
        margin-top: -80px;
        padding: 30px 15px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }
    .page-cockfighting__hero-description {
        font-size: 18px;
    }
    .page-cockfighting__section-title {
        font-size: clamp(26px, 3.5vw, 34px);
    }
    .page-cockfighting__section-description {
        font-size: 16px;
    }
    .page-cockfighting__benefit-card,
    .page-cockfighting__product-card,
    .page-cockfighting__step-card {
        padding: 25px;
    }
    .page-cockfighting__article-body {
        font-size: 16px;
    }
    .page-cockfighting__promo-list li,
    .page-cockfighting__tip-list li,
    .page-cockfighting__faq-qtext,
    .page-cockfighting__faq-answer p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        min-height: auto;
    }
    .page-cockfighting__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        max-height: 400px;
    }
    .page-cockfighting__hero-content {
        margin-top: 0;
        padding: 25px 15px;
        border-radius: 0;
        box-shadow: none;
        background: var(--background-color, #0D0E12);
    }
    .page-cockfighting__main-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 15px;
    }
    .page-cockfighting__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* 产品展示图区域 (products-grid) */
    .page-cockfighting__products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        overflow-x: hidden;
    }
    .page-cockfighting__product-card {
        width: 100%;
        box-sizing: border-box;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-cockfighting__section-title {
        font-size: clamp(24px, 7vw, 30px);
        margin-bottom: 15px;
    }
    .page-cockfighting__section-description {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .page-cockfighting__article-body {
        font-size: 15px;
        padding: 0 10px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-cockfighting__article-body--grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-cockfighting__article-figure {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-cockfighting__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    /* Benefit and Step cards */
    .page-cockfighting__benefit-grid,
    .page-cockfighting__step-grid {
        gap: 20px;
    }
}