:root {
    --page-cockfighting-primary: #11A84E;
    --page-cockfighting-secondary: #22C768;
    --page-cockfighting-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-cockfighting-card-bg: #11271B;
    --page-cockfighting-background: #08160F;
    --page-cockfighting-text-main: #F2FFF6;
    --page-cockfighting-text-secondary: #A7D9B8;
    --page-cockfighting-border: #2E7A4E;
    --page-cockfighting-glow: #57E38D;
    --page-cockfighting-gold: #F2C14E;
    --page-cockfighting-divider: #1E3A2A;
    --page-cockfighting-deep-green: #0A4B2C;
}

.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-cockfighting-text-main); /* Default text color for the page */
    background-color: var(--page-cockfighting-background); /* Page background */
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack image then content */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    overflow: hidden; /* Ensure no overflow */
}

.page-cockfighting__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-cockfighting__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-cockfighting__main-title {
    font-weight: bold;
    color: var(--page-cockfighting-text-main);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    /* No fixed font-size, rely on clamp if absolutely needed, otherwise let browser handle */
    /* Example: font-size: clamp(2em, 5vw, 3.5em); */
}

.page-cockfighting__intro-text {
    font-size: 1.1em;
    color: var(--page-cockfighting-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: var(--page-cockfighting-button-gradient);
    color: var(--page-cockfighting-text-main);
    border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-cockfighting__btn-secondary {
    background: var(--page-cockfighting-card-bg); /* Dark background for secondary button */
    color: var(--page-cockfighting-primary); /* Green text */
    border: 2px solid var(--page-cockfighting-primary);
}

.page-cockfighting__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--page-cockfighting-primary);
    color: var(--page-cockfighting-text-main);
}

/* General Section Styles */
.page-cockfighting__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--page-cockfighting-background); /* Consistent background */
}

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

.page-cockfighting__section-title {
    font-size: 2.2em;
    color: var(--page-cockfighting-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-cockfighting__subsection-title {
    font-size: 1.6em;
    color: var(--page-cockfighting-text-main);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__paragraph {
    font-size: 1em;
    color: var(--page-cockfighting-text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-cockfighting__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-cockfighting__list,
.page-cockfighting__ordered-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-cockfighting__list-item {
    background-color: var(--page-cockfighting-card-bg); /* Dark card background */
    color: var(--page-cockfighting-text-main);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid var(--page-cockfighting-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1em;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    background-color: var(--page-cockfighting-background);
}

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

.page-cockfighting__faq-item {
    background-color: var(--page-cockfighting-card-bg);
    border: 1px solid var(--page-cockfighting-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-cockfighting-text-main);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: var(--page-cockfighting-text-main);
    background-color: var(--page-cockfighting-deep-green); /* Slightly different background for question */
    border-bottom: 1px solid var(--page-cockfighting-border);
    list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-cockfighting-glow);
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg); /* Rotate + to form X or - */
}

.page-cockfighting__faq-answer {
    padding: 15px 25px 20px;
    font-size: 0.95em;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.7;
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-cockfighting__hero-content {
        max-width: 700px;
    }
    .page-cockfighting__main-title {
        font-size: 2.8em;
    }
    .page-cockfighting__section {
        padding: 40px 15px;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-cockfighting__subsection-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .page-cockfighting__hero-image {
        margin-bottom: 20px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Use clamp for H1 on mobile */
        margin-bottom: 15px;
    }
    .page-cockfighting__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section {
        padding: 30px 15px;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-cockfighting__subsection-title {
        font-size: 1.2em;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .page-cockfighting__paragraph,
    .page-cockfighting__list-item,
    .page-cockfighting__faq-answer {
        font-size: 0.95em;
    }
    .page-cockfighting__image {
        margin: 20px 0;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__container,
    .page-cockfighting__faq-list,
    .page-cockfighting__cta-buttons--bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0px; /* Container itself handles padding */
        padding-right: 0px;
    }
    .page-cockfighting__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-cockfighting__faq-answer {
        padding: 10px 20px 15px;
    }
}

/* Ensure images have min-size and no filters */
.page-cockfighting img {
    min-width: 200px;
    min-height: 200px;
    filter: none !important; /* Ensure no filters are applied */
}