.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #FFF5E1;
    background-color: #B71C1C;
}

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

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-cockfighting__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF5E1; /* Use main text color for H1 */
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-cockfighting__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

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

.page-cockfighting__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E;
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-cockfighting__btn--secondary {
    background-color: #D32F2F;
    color: #FFF5E1;
    border: 2px solid #F2B544;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__btn--small {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.page-cockfighting__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFF5E1;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-cockfighting__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 30px;
}

.page-cockfighting__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-cockfighting__image {
    flex: 1;
    min-width: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__image--left {
    margin-right: 20px;
}

.page-cockfighting__image--right {
    margin-left: 20px;
}

.page-cockfighting__text-content {
    flex: 1.5;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.page-cockfighting__card {
    background-color: #D32F2F;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #7A0E0E;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-cockfighting__card-title {
    font-size: 1.5rem;
    color: #FFD86A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__card-description {
    font-size: 0.95rem;
    color: #FFF5E1;
    line-height: 1.6;
}

.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-cockfighting__guide-list li {
    background-color: #D32F2F;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 5px solid #F2B544;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__guide-list li strong {
    color: #FFD86A;
    font-size: 1.1rem;
}

.page-cockfighting__guide-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
}

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

.page-cockfighting__promotion-card {
    background-color: #D32F2F;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #7A0E0E;
}

.page-cockfighting__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__promotion-image {
    width: 100%;
    height: 220px; /* Ensure images are large enough */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-cockfighting__promotion-title {
    font-size: 1.4rem;
    color: #FFD86A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__promotion-description {
    font-size: 0.95rem;
    color: #FFF5E1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-cockfighting__full-promotions-link,
.page-cockfighting__full-faq-link {
    margin-top: 50px;
}

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

.page-cockfighting__faq-item {
    background-color: #D32F2F;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #7A0E0E;
}

.page-cockfighting__faq-question {
    width: 100%;
    background-color: #E53935;
    color: #FFF5E1;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    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-question[aria-expanded="true"] {
    background-color: #C91F17;
}

.page-cockfighting__faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-cockfighting__faq-answer p {
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting__content-wrapper--reversed {
        flex-direction: column;
    }

    .page-cockfighting__image--left,
    .page-cockfighting__image--right {
        margin: 0;
        margin-bottom: 30px;
    }

    .page-cockfighting__text-content {
        flex: none;
        width: 100%;
    }

    .page-cockfighting__guide-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

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

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

    .page-cockfighting__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-cockfighting__section {
        padding: 40px 15px;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .page-cockfighting__grid,
    .page-cockfighting__promotion-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__card-image, .page-cockfighting__promotion-image {
        height: 180px;
    }

    /* Ensure images in content area do not overflow */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }

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

    .page-cockfighting__faq-answer p {
        padding-bottom: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-cockfighting__hero-description {
        font-size: 0.9rem;
    }
    .page-cockfighting__btn {
        width: 90%;
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }
    .page-cockfighting__card-title {
        font-size: 1.3rem;
    }
    .page-cockfighting__promotion-title {
        font-size: 1.2rem;
    }
}