.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #FFF1E8;
    background-color: #140C0C;
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-cockfighting__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for first section */
    background-color: #140C0C;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    height: auto;
}

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

.page-cockfighting__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF1E8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

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

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

.page-cockfighting__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    border: none;
}

.page-cockfighting__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-cockfighting__btn--secondary:hover {
    background-color: #7E0D0D;
    color: #FFF1E8;
    transform: translateY(-2px);
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-cockfighting__introduction-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__promotions-section,
.page-cockfighting__cta-section {
    background-color: #2A1212;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-cockfighting__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF1E8;
    position: relative;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F3C54D 0%, #E53030 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-cockfighting__text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #FFF1E8;
}

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

.page-cockfighting__feature-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: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-cockfighting__feature-card:hover,
.page-cockfighting__step-card:hover {
    transform: translateY(-5px);
}

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

.page-cockfighting__feature-title,
.page-cockfighting__step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-cockfighting__feature-description,
.page-cockfighting__step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-cockfighting__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__faq-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-cockfighting__faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 20px 25px;
    cursor: pointer;
    color: #F3C54D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

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

.page-cockfighting__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
}

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

.page-cockfighting__faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-cockfighting__hero-content {
        padding: 30px 15px;
    }

    .page-cockfighting__main-title {
        font-size: 2rem;
    }

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

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

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

    .page-cockfighting__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-cockfighting__text-content {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-cockfighting__feature-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.3rem;
    }

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

    /* Ensure images do not overflow on mobile */
    .page-cockfighting__hero-image,
    .page-cockfighting__content-image,
    .page-cockfighting__feature-image {
        max-width: 100%;
        height: auto;
    }
}