.page-cockfighting {
    font-family: Arial, sans-serif;
    background-color: #08160F;
    color: #F2FFF6;
}

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

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

.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width for desktop */
    margin-bottom: 30px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.page-cockfighting__hero-content {
    max-width: 800px;
    padding: 0 15px;
}

.page-cockfighting__hero-title {
    font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
}

.page-cockfighting__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 30px;
}

.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: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    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: transparent;
    color: #57E38D;
    border: 2px solid #57E38D;
}

.page-cockfighting__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-2px);
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #57E38D;
    border-radius: 2px;
}

.page-cockfighting__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    color: #F2FFF6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-cockfighting__highlight {
    color: #57E38D;
    font-weight: 600;
}

.page-cockfighting__dark-section {
    background-color: #11271B;
}

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

.page-cockfighting__card {
    background-color: #0A4B2C; /* Deep Green for card background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F2FFF6;
}

.page-cockfighting__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-cockfighting__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 15px;
}

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

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

.page-cockfighting__list-item {
    background-color: #11271B;
    border-left: 4px solid #57E38D;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__list-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

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

.page-cockfighting__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 0;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item {
    list-style: decimal;
    background-color: transparent;
    border-left: none;
    padding: 10px 0;
    margin-bottom: 10px;
    box-shadow: none;
}

.page-cockfighting__numbered-list .page-cockfighting__list-title {
    color: #F2FFF6;
    font-size: 1.2em;
}

.page-cockfighting__text-link {
    color: #57E38D;
    text-decoration: underline;
}

.page-cockfighting__text-link:hover {
    color: #2AD16F;
}

.page-cockfighting__bullet-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.page-cockfighting__bullet-list .page-cockfighting__list-item {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 10px;
    box-shadow: none;
    color: #F2FFF6;
}

.page-cockfighting__bullet-list .page-cockfighting__list-item strong {
    color: #F2C14E;
}

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

.page-cockfighting__promo-card {
    background-color: #0A4B2C;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: #F2FFF6;
}

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

.page-cockfighting__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__promo-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-cockfighting__promo-text {
    font-size: 1em;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-cockfighting__btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-cockfighting__btn-small:hover {
    opacity: 0.9;
}

.page-cockfighting__center-cta {
    text-align: center;
}

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

.page-cockfighting__support-item {
    background-color: #0A4B2C;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__support-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #57E38D);
    min-width: 80px; /* Ensure minimum size */
    min-height: 80px; /* Ensure minimum size */
}

.page-cockfighting__support-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 10px;
}

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

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

.page-cockfighting__faq-item {
    background-color: #11271B;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #F2FFF6;
}

.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: #0A4B2C;
    border-bottom: 1px solid #1E3A2A;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-cockfighting__faq-question:hover {
    background-color: #13994A;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #57E38D;
    margin-left: 15px;
}

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

.page-cockfighting__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: #A7D9B8;
    border-top: 1px solid #1E3A2A;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

.page-cockfighting__conclusion-section {
    padding: 80px 0;
    background-color: #0A4B2C;
}

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

.page-cockfighting img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Global minimum size for content images */
    min-height: 200px; /* Global minimum size for content images */
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting__section-title {
        font-size: 2.2em;
    }
    .page-cockfighting__grid-3-columns,
    .page-cockfighting__grid-2-columns {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__promo-image {
        height: 200px;
    }
    .page-cockfighting__support-channels {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting__section-spacing {
        padding: 40px 0;
    }
    .page-cockfighting__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section */
    .page-cockfighting__hero-section {
        padding-top: 10px !important; /* Ensure small padding, body handles header */
        padding-bottom: 30px;
    }
    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-cockfighting__hero-image {
        object-fit: contain !important; /* Ensure image is not cropped */
        aspect-ratio: unset !important;
        max-height: none !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-cockfighting__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Section Titles */
    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Text Blocks */
    .page-cockfighting__text-block,
    .page-cockfighting__card-text,
    .page-cockfighting__list-text,
    .page-cockfighting__promo-text,
    .page-cockfighting__support-text,
    .page-cockfighting__faq-answer p {
        font-size: 0.95em;
        line-height: 1.6;
    }

    /* Card & Grid Layouts */
    .page-cockfighting__grid-3-columns,
    .page-cockfighting__grid-2-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-cockfighting__card {
        padding: 20px;
    }
    .page-cockfighting__card-image {
        height: auto;
        max-height: 200px;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-cockfighting__promo-card {
        flex-direction: column;
    }
    .page-cockfighting__promo-image {
        height: 180px;
        min-width: 200px !important;
        min-height: 180px !important;
    }
    .page-cockfighting__promo-content {
        padding: 20px;
    }
    .page-cockfighting__promo-title {
        font-size: 1.4em;
    }
    .page-cockfighting__btn-small {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Lists */
    .page-cockfighting__list-item,
    .page-cockfighting__numbered-list .page-cockfighting__list-item,
    .page-cockfighting__bullet-list .page-cockfighting__list-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    .page-cockfighting__list-title,
    .page-cockfighting__numbered-list .page-cockfighting__list-title {
        font-size: 1.1em;
    }

    /* Support Channels */
    .page-cockfighting__support-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-cockfighting__support-icon {
        width: 60px;
        height: 60px;
        min-width: 60px !important;
        min-height: 60px !important;
    }

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

    /* Generic Image and Container Rules for Mobile */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Ensure minimum size */
        min-height: 200px !important; /* Ensure minimum size */
    }
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__promo-card,
    .page-cockfighting__support-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Winner lists (not present on this page, but if they were) */
    /* .page-cockfighting__winner-list { grid-template-columns: 1fr !important; } */
    /* .page-cockfighting__winner-item { flex-direction: column !important; align-items: flex-start !important; } */
    /* .page-cockfighting__winner-thumbnail { width: 70px !important; height: 70px !important; } */

}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__section-title {
        font-size: 1.6em;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        font-size: 0.95em;
    }
    .page-cockfighting__card-title {
        font-size: 1.3em;
    }
    .page-cockfighting__promo-title {
        font-size: 1.2em;
    }
    .page-cockfighting__support-title {
        font-size: 1.2em;
    }
    .page-cockfighting__faq-question {
        font-size: 1em;
    }
}