.page-cockfighting {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    background-color: #100224; /* Dark purple-black for hero background */
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

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

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

.page-cockfighting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFF3E6; /* Main text color */
    /* No fixed font-size, rely on clamp if needed, otherwise use defaults */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-cockfighting__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-cockfighting__hero-actions {
    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;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-cockfighting__btn--primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
}

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

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

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

.page-cockfighting__btn--center {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
}

.page-cockfighting__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFA53A;
    background: linear-gradient(90deg, #FFA53A, #FF8C1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__guide-section,
.page-cockfighting__promotions-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__faq-section {
    padding: 60px 0;
}

.page-cockfighting__paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

.page-cockfighting__feature-card,
.page-cockfighting__promo-card {
    background-color: #17191F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C;
}

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

.page-cockfighting__card-description {
    font-size: 1rem;
    color: #FFF3E6;
}

.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-cockfighting__guide-item {
    background-color: #17191F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #FFA53A;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__item-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFA53A;
    margin-bottom: 10px;
}

.page-cockfighting__item-description {
    font-size: 1rem;
    color: #FFF3E6;
}

.page-cockfighting__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__btn--small {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-top: 20px;
}

.page-cockfighting__why-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting__why-item {
    background-color: #17191F;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #A84F0C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__faq-item {
    background-color: #17191F;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #A84F0C;
}

.page-cockfighting__faq-question {
    width: 100%;
    background-color: #FF8C1A;
    color: #0D0E12;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #FFA53A;
}

.page-cockfighting__faq-question::after {
    content: '\25B6'; /* Right arrow */
    float: right;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-question.active::after {
    content: '\25BC'; /* Down arrow */
    transform: rotate(90deg);
}

.page-cockfighting__faq-answer {
    padding: 0 25px;
    background-color: #17191F;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #FFF3E6;
}

.page-cockfighting__faq-answer p {
    padding: 15px 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .page-cockfighting__section-title {
        font-size: 2rem;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 15px;
    }
    .page-cockfighting__hero-content {
        padding: 0 15px 30px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-cockfighting__hero-description {
        font-size: 1rem;
    }
    .page-cockfighting__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__btn {
        width: 100%;
        padding: 10px 20px;
    }
    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-cockfighting__paragraph {
        font-size: 0.95rem;
    }
    .page-cockfighting__feature-card,
    .page-cockfighting__promo-card,
    .page-cockfighting__why-item {
        padding: 20px;
    }
    .page-cockfighting__card-title {
        font-size: 1.3rem;
    }
    .page-cockfighting__item-title {
        font-size: 1.15rem;
    }
    .page-cockfighting__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-cockfighting__image,
    .page-cockfighting__promo-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
    /* Mobile content area images */
    .page-cockfighting__introduction-section img,
    .page-cockfighting__features-section img,
    .page-cockfighting__guide-section img,
    .page-cockfighting__promotions-section img,
    .page-cockfighting__why-choose-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-actions {
        flex-direction: column;
    }
    .page-cockfighting__btn {
        width: 100%;
    }
    .page-cockfighting__section-title {
        font-size: 1.6rem;
    }
    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 15px;
    }
}