.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

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

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

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

.page-cockfighting__section-title {
    font-size: 38px;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-cockfighting__section-description {
    font-size: 18px;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    padding-bottom: 40px;
    background-color: #F4F7FB;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    height: 675px; /* Fixed height for desktop */
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-cockfighting__hero-description {
    font-size: 20px;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF; /* Main Color */
    border: 2px solid #2F6BFF; /* Main Color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__btn-secondary:hover {
    background: #2F6BFF; /* Main Color */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.2);
}

/* Why Choose Us Section */
.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__feature-item {
    background-color: #ffffff; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #D6E2FF; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-cockfighting__feature-text {
    font-size: 16px;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
}

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

.page-cockfighting__game-card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #D6E2FF; /* Border */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-cockfighting__game-title {
    font-size: 22px;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    padding: 20px 20px 10px;
}

.page-cockfighting__game-text {
    font-size: 16px;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.page-cockfighting__btn-text {
    color: #2F6BFF; /* Main Color */
    font-weight: bold;
    padding: 15px 20px;
    border-top: 1px solid #D6E2FF; /* Border */
    display: block;
    text-align: center;
    text-decoration: none;
}

.page-cockfighting__btn-text:hover {
    background-color: #F4F7FB; /* Background */
}

/* How-To Play Section */
.page-cockfighting__dark-section {
    background-color: #2F6BFF; /* Main Color */
    color: #ffffff;
}

.page-cockfighting__dark-section .page-cockfighting__section-title,
.page-cockfighting__dark-section .page-cockfighting__section-description,
.page-cockfighting__dark-section .page-cockfighting__step-title,
.page-cockfighting__dark-section .page-cockfighting__step-text {
    color: #ffffff;
}

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

.page-cockfighting__step-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #2F6BFF; /* Main Color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-cockfighting__step-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-cockfighting__btn-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
}

.page-cockfighting__btn-link:hover {
    opacity: 0.8;
}

.page-cockfighting__process-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Betting Tips Section */
.page-cockfighting__tips-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-cockfighting__tips-content {
    flex: 1;
}

.page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-cockfighting__tips-list li {
    font-size: 18px;
    color: #1F2D3D; /* Text Main */
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-cockfighting__tips-list li::before {
    content: '✓';
    color: #2F6BFF; /* Main Color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-cockfighting__tips-image-wrapper {
    flex: 1;
    min-width: 400px;
}

.page-cockfighting__tips-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__promo-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__promo-card .page-cockfighting__promo-title,
.page-cockfighting__promo-card .page-cockfighting__promo-text {
    color: #ffffff;
}

.page-cockfighting__promo-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-cockfighting__promo-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-cockfighting__btn-promo {
    background: #ffffff;
    color: #2F6BFF; /* Main Color */
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-cockfighting__btn-promo:hover {
    background-color: #F4F7FB; /* Background */
}

.page-cockfighting__promo-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.page-cockfighting__view-all-promos {
    text-align: center;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__faq-item {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    position: relative;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-cockfighting__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-cockfighting__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #2F6BFF; /* Main Color */
}

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
}

/* Conclusion Section */
.page-cockfighting__conclusion .page-cockfighting__btn-primary {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image-wrapper {
        height: 500px;
    }

    .page-cockfighting__main-title {
        font-size: 42px;
    }

    .page-cockfighting__section-title {
        font-size: 32px;
    }

    .page-cockfighting__tips-layout {
        flex-direction: column;
    }

    .page-cockfighting__tips-image-wrapper {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__section-spacing {
        padding: 40px 0 !important;
    }

    .page-cockfighting__container {
        padding: 0 15px !important;
    }

    /* HERO 主图区域 */
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    .page-cockfighting__hero-image-wrapper {
        height: 250px !important; /* Smaller height for mobile hero */
        margin-bottom: 20px !important;
    }

    .page-cockfighting__main-title {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

    .page-cockfighting__hero-description {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* 通用按钮适配 */
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary,
    .page-cockfighting__btn-promo,
    .page-cockfighting__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__cta-buttons,
    .page-cockfighting__view-all-promos,
    .page-cockfighting__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .page-cockfighting__section-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .page-cockfighting__section-description {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }

    /* 产品展示图区域 */
    .page-cockfighting__game-grid,
    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid,
    .page-cockfighting__promo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 20px !important;
    }

    .page-cockfighting__game-image {
        height: 200px !important;
    }

    .page-cockfighting__game-title {
        font-size: 20px !important;
    }

    .page-cockfighting__game-text {
        font-size: 15px !important;
    }

    /* 通用图片与容器 */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting__card,
    .page-cockfighting__section,
    .page-cockfighting__box,
    .page-cockfighting__feature-item,
    .page-cockfighting__game-card,
    .page-cockfighting__step-item,
    .page-cockfighting__promo-card,
    .page-cockfighting__tips-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow: hidden !important;
    }

    .page-cockfighting__tips-layout {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .page-cockfighting__tips-list li {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    .page-cockfighting__promo-banner {
        margin-bottom: 20px !important;
    }

    /* FAQ */
    .page-cockfighting__faq-item summary {
        font-size: 18px !important;
        padding: 15px 20px !important;
    }

    .page-cockfighting__faq-answer {
        font-size: 15px !important;
        padding: 0 20px 15px !important;
    }

    .page-cockfighting__faq-toggle {
        font-size: 20px !important;
    }

    .page-cockfighting__process-image {
        margin-top: 20px;
    }
}