.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--Text-Main); /* Default text color for page content */
    background-color: var(--Deep-Navy); /* Body background from shared.css */
}

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

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

.page-cockfighting__hero-image {
    width: 100%;
    height: 675px; /* Aspect ratio for 1920x1080 */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-cockfighting__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop */
    display: block;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    color: var(--Text-Main);
}

.page-cockfighting__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--Gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--Text-Secondary);
    margin-bottom: 30px;
    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__cta-buttons--bottom {
    margin-top: 40px;
}

.page-cockfighting__cta-buttons--faq {
    margin-top: 15px;
    justify-content: flex-start;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__btn-secondary {
    background: #10233F; /* Card BG as background */
    color: var(--Gold);
    border: 2px solid var(--Gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--Gold);
    color: #10233F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__content-section {
    padding: 60px 0;
    background-color: var(--Deep-Navy);
    color: var(--Text-Main);
}

.page-cockfighting__dark-section {
    background-color: var(--Card-BG);
}

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--Gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-cockfighting__article-body {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--Text-Main);
}

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

.page-cockfighting__article-body strong {
    color: var(--Gold);
}

.page-cockfighting__article-figure {
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    background-color: var(--Card-BG);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__article-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

.page-cockfighting__article-figure figcaption {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--Text-Secondary);
    font-style: italic;
}

.page-cockfighting__faq-section {
    padding: 60px 0;
    color: var(--Text-Main);
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

details.page-cockfighting__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--Border);
    overflow: hidden;
    background: var(--Card-BG);
}

details.page-cockfighting__faq-item summary.page-cockfighting__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__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(var(--Gold-rgb), 0.1);
}

.page-cockfighting__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--Text-Main);
}

.page-cockfighting__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--Gold);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--Deep-Navy-rgb), 0.5);
    border-radius: 0 0 8px 8px;
    color: var(--Text-Secondary);
}

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

/* Media Queries */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image {
        height: 500px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-cockfighting__subtitle {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    .page-cockfighting__article-body {
        font-size: 1rem;
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px 20px;
    }
    .page-cockfighting__faq-qtext {
        font-size: 1rem;
    }
    .page-cockfighting__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container,
    .page-cockfighting__content-section .page-cockfighting__container,
    .page-cockfighting__faq-section .page-cockfighting__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-cockfighting__hero-image {
        height: 300px !important; /* Smaller height for mobile */
        margin-bottom: 20px;
    }
    .page-cockfighting__hero-image img {
        object-fit: contain !important; /* Mobile: contain to show full image */
        aspect-ratio: unset !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-cockfighting__subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary,
    .page-cockfighting a[class*="button"],
    .page-cockfighting 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: 1rem;
    }

    /* 内容区通用样式 */
    .page-cockfighting__content-section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }
    .page-cockfighting__article-body {
        font-size: 0.95rem;
        padding: 0;
    }
    .page-cockfighting__article-figure {
        margin: 30px auto;
        padding: 10px;
    }
    .page-cockfighting__article-figure img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    /* FAQ */
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px;
    }
    .page-cockfighting__faq-qtext {
        font-size: 0.95rem;
    }
    .page-cockfighting__faq-toggle {
        font-size: 20px;
        width: 24px;
        margin-left: 10px;
    }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 15px 15px;
    }
    .page-cockfighting__faq-list {
        padding: 0;
    }

    /* General image responsiveness for all images in content */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
}