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

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    text-align: center;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

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

.page-cockfighting__hero-content {
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
    z-index: 1;
}

.page-cockfighting__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-cockfighting__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-cockfighting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.page-cockfighting__btn--primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D;
}

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

.page-cockfighting__btn--secondary:hover {
    background-color: #2AD16F;
    color: #08160F;
    box-shadow: 0 0 15px #57E38D;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
}

.page-cockfighting__about-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-cockfighting__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.page-cockfighting__text-block {
    font-size: 1.05em;
    color: #A7D9B8;
}

.page-cockfighting__image-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-cockfighting__feature-card,
.page-cockfighting__step-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover,
.page-cockfighting__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px #57E38D;
}

.page-cockfighting__feature-icon {
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    margin: 0 auto 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title,
.page-cockfighting__step-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__feature-description,
.page-cockfighting__step-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

.page-cockfighting__step-card {
    position: relative;
    padding-top: 60px; /* Space for number */
}

.page-cockfighting__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
    border: 2px solid #2AD16F;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.page-cockfighting__faq-list {
    margin-top: 40px;
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-cockfighting__faq-item {
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-cockfighting__faq-question {
    background-color: transparent;
    color: #F2FFF6; /* Text Main */
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    color: #2AD16F;
}

.page-cockfighting__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-cockfighting__faq-answer {
    background-color: #11271B; /* Card BG */
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-cockfighting__faq-answer p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

.page-cockfighting__faq-answer a {
    color: #2AD16F;
    text-decoration: none;
}

.page-cockfighting__faq-answer a:hover {
    text-decoration: underline;
}

/* Ensure all content images meet minimum size requirements */
.page-cockfighting__about-section .page-cockfighting__image-content,
.page-cockfighting__features-section .page-cockfighting__feature-icon {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-cockfighting__hero-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }

    .page-cockfighting__hero-description {
        font-size: 0.95em;
    }

    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__btn {
        width: 100%;
        padding: 10px 20px;
    }

    .page-cockfighting__section-title {
        font-size: 2em;
        margin: 40px 0 30px;
    }

    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__feature-card,
    .page-cockfighting__step-card {
        padding: 20px;
    }

    .page-cockfighting__feature-title,
    .page-cockfighting__step-title {
        font-size: 1.3em;
    }

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

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

    /* Mobile content image responsiveness */
    .page-cockfighting__hero-image,
    .page-cockfighting__image-content,
    .page-cockfighting__feature-icon {
        max-width: 100%;
        height: auto;
    }

    .page-cockfighting__about-section,
    .page-cockfighting__features-section,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__faq-section {
        padding: 30px 15px;
    }

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