.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Main text color for dark background */
    background-color: #08160F; /* Overall background color */
}

.page-cockfighting__section {
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding for smaller screens */
    box-sizing: border-box;
}

.page-cockfighting__section-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #F2FFF6;
    line-height: 1.2;
}

.page-cockfighting__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #A7D9B8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 15px 60px 15px;
    max-width: 900px;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em);
    font-weight: 800;
    color: #F2FFF6;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__subtitle {
    font-size: 1.3em;
    color: #A7D9B8;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-cockfighting__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-cockfighting__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

/* About Section */
.page-cockfighting__about-section {
    background-color: #0A4B2C; /* Deep Green background for light-bg sections */
}

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

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

.page-cockfighting__feature-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

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

.page-cockfighting__feature-list li {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #A7D9B8;
    position: relative;
    padding-left: 25px;
}

.page-cockfighting__feature-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #2AD16F;
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
    background-color: #08160F;
}

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

.page-cockfighting__info-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

.page-cockfighting__card-image {
    width: 100%;
    max-width: 400px; /* Constrain image width in card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
}

.page-cockfighting__card-title {
    font-size: 1.6em;
    color: #F2FFF6;
    margin-bottom: 15px;
    text-align: center;
}

.page-cockfighting__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: #A7D9B8;
    text-align: center;
}

/* How To Play Section */
.page-cockfighting__how-to-play-section {
    background-color: #0A4B2C;
}

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

.page-cockfighting__step-card {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
    background-color: #08160F;
}

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

.page-cockfighting__promo-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tips Section */
.page-cockfighting__tips-section {
    background-color: #0A4B2C;
}

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

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

.page-cockfighting__tip-title {
    font-size: 1.6em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-cockfighting__tip-text {
    font-size: 1em;
    line-height: 1.7;
    color: #A7D9B8;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    background-color: #08160F;
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-cockfighting__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #F2FFF6;
    cursor: pointer;
    background-color: #11271B;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #1a3224;
}

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

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

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: #2AD16F;
    margin-left: 15px;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    content: '−';
}

.page-cockfighting__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: #A7D9B8;
    background-color: #11271B;
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
    background-color: #0A4B2C;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__section-title {
        font-size: 2.4em;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2em, 4.5vw, 3.2em);
    }
    .page-cockfighting__subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__section {
        padding: 40px 15px;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 6vw, 2.8em);
    }
    .page-cockfighting__subtitle {
        font-size: 1em;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-cockfighting__hero-section .page-cockfighting__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-cockfighting__hero-content {
        padding-bottom: 40px;
    }

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

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__hero-image-wrapper,
    .page-cockfighting__cta-buttons,
    .page-cockfighting__info-card,
    .page-cockfighting__promo-card,
    .page-cockfighting__step-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    /* Ensure content images are not smaller than 200px (desktop rule, mobile uses max-width:100%) */
    .page-cockfighting__info-card .page-cockfighting__card-image,
    .page-cockfighting__promo-card .page-cockfighting__card-image,
    .page-cockfighting__step-card .page-cockfighting__card-image {
        min-width: 200px;
        min-height: 150px; /* Adjust min-height as needed for aspect ratio */
    }

    .page-cockfighting__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-cockfighting__faq-answer {
        padding: 10px 20px 15px 20px;
    }
}