.page-blog-cockfighting-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color, #FFF3E6); /* Default text color from custom scheme */
    background-color: var(--background-color, #0D0E12); /* Default background from custom scheme */
}

.page-blog-cockfighting-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-cockfighting-strategy__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: var(--background-color, #0D0E12);
    position: relative;
    overflow: hidden;
}

.page-blog-cockfighting-strategy__hero-image-wrapper {
    width: 100%;
    height: 675px;
    overflow: hidden;
    position: relative;
}

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

.page-blog-cockfighting-strategy__hero-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    background-color: var(--background-color, #0D0E12);
    margin-top: -5px; /* Slight overlap to smooth transition */
}

.page-blog-cockfighting-strategy__hero-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--main-color, #FF8C1A);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-cockfighting-strategy__hero-description {
    font-size: 1.2em;
    color: var(--text-main-color, #FFF3E6);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-cockfighting-strategy__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-blog-cockfighting-strategy__btn-primary,
.page-blog-cockfighting-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-cockfighting-strategy__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
}

.page-blog-cockfighting-strategy__btn-primary:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
    transform: translateY(-2px);
}

.page-blog-cockfighting-strategy__btn-secondary {
    background-color: transparent;
    color: var(--main-color, #FF8C1A);
    border: 2px solid var(--main-color, #FF8C1A);
}

.page-blog-cockfighting-strategy__btn-secondary:hover {
    background-color: var(--main-color, #FF8C1A);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-cockfighting-strategy__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--main-color, #FF8C1A);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-blog-cockfighting-strategy__text-block {
    font-size: 1.1em;
    color: var(--text-main-color, #FFF3E6);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-cockfighting-strategy__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    object-fit: cover;
}

.page-blog-cockfighting-strategy__dark-bg {
    background-color: var(--background-color, #0D0E12);
    color: var(--text-main-color, #FFF3E6);
}

.page-blog-cockfighting-strategy__light-bg {
    background-color: var(--card-bg-color, #17191F);
    color: var(--text-main-color, #FFF3E6);
}

.page-blog-cockfighting-strategy__introduction-section {
    padding: 60px 0;
}

.page-blog-cockfighting-strategy__introduction-section .page-blog-cockfighting-strategy__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-cockfighting-strategy__strategy-section,
.page-blog-cockfighting-strategy__advanced-techniques-section,
.page-blog-cockfighting-strategy__mistakes-section {
    padding: 60px 0;
    background-color: var(--card-bg-color, #17191F);
}

.page-blog-cockfighting-strategy__betting-strategy-section,
.page-blog-cockfighting-strategy__faq-section,
.page-blog-cockfighting-strategy__cta-final-section {
    padding: 60px 0;
    background-color: var(--background-color, #0D0E12);
}

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

.page-blog-cockfighting-strategy__card {
    background-color: var(--card-bg-color, #17191F);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-cockfighting-strategy__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--secondary-color, #FFA53A);
    margin-bottom: 15px;
}

.page-blog-cockfighting-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-cockfighting-strategy__card-text {
    font-size: 1em;
    color: var(--text-main-color, #FFF3E6);
    text-align: justify;
}

.page-blog-cockfighting-strategy__betting-item {
    background-color: var(--card-bg-color, #17191F);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-cockfighting-strategy__betting-subtitle {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--secondary-color, #FFA53A);
    margin-bottom: 15px;
}

.page-blog-cockfighting-strategy__cta-section {
    text-align: center;
    margin-top: 50px;
}

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

.page-blog-cockfighting-strategy__technique-item {
    background-color: var(--card-bg-color, #17191F);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-blog-cockfighting-strategy__technique-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-cockfighting-strategy__technique-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--secondary-color, #FFA53A);
    margin-bottom: 10px;
}

.page-blog-cockfighting-strategy__technique-description {
    font-size: 1em;
    color: var(--text-main-color, #FFF3E6);
    text-align: justify;
}

.page-blog-cockfighting-strategy__mistake-card {
    background-color: var(--card-bg-color, #17191F);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-cockfighting-strategy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-cockfighting-strategy__faq-item {
    background-color: var(--card-bg-color, #17191F);
    border: 1px solid var(--border-color, #A84F0C);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-cockfighting-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--secondary-color, #FFA53A);
    cursor: pointer;
    background-color: var(--card-bg-color, #17191F);
    list-style: none; /* For details/summary */
}

.page-blog-cockfighting-strategy__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-cockfighting-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--main-color, #FF8C1A);
}

.page-blog-cockfighting-strategy__faq-item[open] .page-blog-cockfighting-strategy__faq-toggle {
    content: '−';
}

.page-blog-cockfighting-strategy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-main-color, #FFF3E6);
    text-align: justify;
}

.page-blog-cockfighting-strategy__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

.page-blog-cockfighting-strategy__cta-final-section {
    text-align: center;
    padding-bottom: 60px;
}

.page-blog-cockfighting-strategy__final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-blog-cockfighting-strategy__hero-title {
        font-size: 2.5em;
    }
    .page-blog-cockfighting-strategy__section-title {
        font-size: 2em;
    }
    .page-blog-cockfighting-strategy__strategy-grid,
    .page-blog-cockfighting-strategy__betting-grid,
    .page-blog-cockfighting-strategy__techniques-list,
    .page-blog-cockfighting-strategy__mistakes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* 1. HERO 主图区域 */
    .page-blog-cockfighting-strategy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }
    .page-blog-cockfighting-strategy__hero-image-wrapper {
        height: 300px; /* Smaller height for mobile hero image */
    }
    .page-blog-cockfighting-strategy__hero-content {
        padding: 20px 15px;
        margin-top: -5px;
    }
    .page-blog-cockfighting-strategy__hero-title {
        font-size: 1.8em !important;
        margin-bottom: 15px;
    }
    .page-blog-cockfighting-strategy__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-blog-cockfighting-strategy__hero-cta-buttons,
    .page-blog-cockfighting-strategy__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. 产品展示图区域 (N/A for this page, but general grid items will adapt) */
    .page-blog-cockfighting-strategy__strategy-grid,
    .page-blog-cockfighting-strategy__betting-grid,
    .page-blog-cockfighting-strategy__techniques-list,
    .page-blog-cockfighting-strategy__mistakes-grid {
        grid-template-columns: 1fr !important; /* Single column layout */
        gap: 20px;
    }

    /* 3. 通用图片与容器 */
    .page-blog-cockfighting-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-blog-cockfighting-strategy__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }
    .page-blog-cockfighting-strategy__image-content,
    .page-blog-cockfighting-strategy__card-image,
    .page-blog-cockfighting-strategy__technique-image {
        height: auto !important; /* Ensure images scale proportionally */
    }

    /* 4. 按钮与按钮容器 */
    .page-blog-cockfighting-strategy__btn-primary,
    .page-blog-cockfighting-strategy__btn-secondary,
    .page-blog-cockfighting-strategy a[class*="button"],
    .page-blog-cockfighting-strategy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-blog-cockfighting-strategy__hero-cta-buttons,
    .page-blog-cockfighting-strategy__final-cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    /* 5. 其他内容模块 */
    .page-blog-cockfighting-strategy__section-title {
        font-size: 1.8em !important;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-blog-cockfighting-strategy__text-block {
        font-size: 0.95em;
    }
    .page-blog-cockfighting-strategy__card-title,
    .page-blog-cockfighting-strategy__betting-subtitle,
    .page-blog-cockfighting-strategy__technique-title {
        font-size: 1.2em;
    }
    .page-blog-cockfighting-strategy__card,
    .page-blog-cockfighting-strategy__betting-item,
    .page-blog-cockfighting-strategy__technique-item,
    .page-blog-cockfighting-strategy__mistake-card {
        padding: 20px;
    }
    .page-blog-cockfighting-strategy__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-blog-cockfighting-strategy__faq-answer {
        padding: 0 20px 15px;
    }
    .page-blog-cockfighting-strategy__introduction-section,
    .page-blog-cockfighting-strategy__strategy-section,
    .page-blog-cockfighting-strategy__betting-strategy-section,
    .page-blog-cockfighting-strategy__advanced-techniques-section,
    .page-blog-cockfighting-strategy__mistakes-section,
    .page-blog-cockfighting-strategy__faq-section,
    .page-blog-cockfighting-strategy__cta-final-section {
        padding: 40px 0;
    }
}