.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Default text color for dark body background */
    background-color: #08160F; /* Ensure body background is dark */
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: #08160F;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-cockfighting__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly for visual effect, but not text on image */
    background: #0A4B2C; /* Deep Green background for hero content */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
    color: #F2FFF6;
}

.page-cockfighting__main-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-cockfighting__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

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

.page-cockfighting__btn-secondary {
    background: #11271B; /* Card BG for secondary button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-cockfighting__btn-secondary:hover {
    background: #1E3A2A; /* Divider color for hover */
    color: #F2C14E; /* Gold */
    transform: translateY(-2px);
}

.page-cockfighting__btn-text {
    background: none;
    color: #2AD16F; /* Lighter green from gradient */
    border: 2px solid #2AD16F;
    padding: 10px 20px;
    border-radius: 5px;
}

.page-cockfighting__btn-text:hover {
    background: #2AD16F;
    color: #ffffff;
}

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

.page-cockfighting__introduction-section,
.page-cockfighting__how-to-section,
.page-cockfighting__tips-strategy-section,
.page-cockfighting__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Dark background for these sections */
    color: #F2FFF6; /* Light text for dark background */
}

.page-cockfighting__introduction-section p,
.page-cockfighting__how-to-section p,
.page-cockfighting__tips-strategy-section p,
.page-cockfighting__faq-section p {
    color: #A7D9B8; /* Secondary text color */
}

.page-cockfighting__dark-bg {
    background-color: #08160F;
    color: #F2FFF6;
}

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-cockfighting__feature-title,
.page-cockfighting__tip-title {
    font-size: 1.5rem;
    color: #22C768; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__feature-card p,
.page-cockfighting__tip-card p {
    color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #F2FFF6;
    border: 1px solid #2E7A4E;
}

.page-cockfighting__step-title {
    font-size: 1.6rem;
    color: #2AD16F; /* Lighter green from gradient */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__step-item p {
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-cockfighting__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__list li {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    color: #F2FFF6;
    border-left: 5px solid #22C768; /* Auxiliary color */
}

.page-cockfighting__list li strong {
    color: #F2C14E; /* Gold */
}

.page-cockfighting__faq-list {
    margin-top: 40px;
}

.page-cockfighting__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #22C768; /* Auxiliary color */
    background-color: #1E3A2A; /* Divider color for question background */
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #F2C14E; /* Gold */
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    padding: 20px 25px;
    background-color: #11271B; /* Card BG */
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid #2E7A4E;
}

.page-cockfighting__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
    border-top: 5px solid #22C768; /* Auxiliary color */
}

.page-cockfighting__cta-bottom-section .page-cockfighting__section-title {
    color: #F2C14E; /* Gold */
}

.page-cockfighting__cta-bottom-section p {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-content {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-content {
        margin-top: -40px;
        padding: 30px 15px;
    }

    .page-cockfighting__main-title {
        font-size: 2.2rem;
    }

    .page-cockfighting__subtitle {
        font-size: 1rem;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary,
    .page-cockfighting__btn-text {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-cockfighting__introduction-section,
    .page-cockfighting__how-to-section,
    .page-cockfighting__tips-strategy-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__cta-bottom-section {
        padding: 40px 0;
    }

    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-cockfighting__features-grid,
    .page-cockfighting__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__card,
    .page-cockfighting__step-item {
        padding: 25px;
    }

    .page-cockfighting__feature-title,
    .page-cockfighting__tip-title {
        font-size: 1.3rem;
    }

    .page-cockfighting__list li {
        padding: 15px;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-cockfighting__hero-image-wrapper,
    .page-cockfighting__video-container,
    .page-cockfighting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: 1.8rem;
    }

    .page-cockfighting__section-title {
        font-size: 1.5rem;
    }

    .page-cockfighting__hero-content {
        margin-top: -20px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}