.page-cockfighting {
    color: #ffffff; /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000; /* Inherited from body, but good to reinforce */
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    padding-bottom: 60px;
    box-sizing: border-box;
}

.page-cockfighting__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 1;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__cta-button--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

.page-cockfighting__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting__cta-button--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #ffffff; /* Light text for dark red background */
    border: 2px solid #8B0000;
}

.page-cockfighting__cta-button--secondary:hover {
    background-color: #6b0000;
    transform: translateY(-2px);
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark Red accent */
    border-radius: 2px;
}

.page-cockfighting__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-cockfighting__section-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-cockfighting__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

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

.page-cockfighting__betting-list,
.page-cockfighting__betting-steps {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-cockfighting__betting-item,
.page-cockfighting__step-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #FFD700;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 1.1em;
}

.page-cockfighting__betting-item strong,
.page-cockfighting__step-item strong {
    color: #FFD700;
}

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

.page-cockfighting__faq-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 20px;
    margin-top: 50px;
}

.page-cockfighting__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__faq-title {
    margin: 0;
    color: #FFD700; /* Ensure title in FAQ is gold */
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-cockfighting__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

.page-cockfighting__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-cockfighting__cta-final-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #8B0000; /* Dark red background for strong CTA */
    border-radius: 10px;
    margin-top: 50px;
    color: #ffffff;
}

.page-cockfighting__cta-final-section .page-cockfighting__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-cockfighting__cta-final-section .page-cockfighting__section-title::after {
    background-color: #FFD700;
}

.page-cockfighting__cta-final-section .page-cockfighting__section-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: 3em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.2em;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-cockfighting__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-cockfighting__content-area {
        padding: 20px 15px;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-cockfighting__sub-title {
        font-size: 1.4em;
    }
    .page-cockfighting__section-text {
        font-size: 1em;
    }
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__image-wrapper,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-cockfighting__faq-answer {
        padding: 0 20px;
    }
    .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 0.9em;
    }
    .page-cockfighting__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting__sub-title {
        font-size: 1.2em;
    }
}