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

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for the hero image */
    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 {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
    text-align: center;
    color: #1F2D3D;
}

.page-cockfighting__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    margin-bottom: 15px;
    /* Using clamp for responsive font size, within limits */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example, adjust as needed */
}

.page-cockfighting__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-cockfighting__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-cockfighting__introduction-section {
    background-color: #F4F7FB;
    padding: 60px 0;
}

.page-cockfighting__text-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: justify;
}

.page-cockfighting__text-content strong {
    color: #2F6BFF; /* Highlight brand name */
}

.page-cockfighting__features-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 60px 0;
}

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

.page-cockfighting__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-image {
    width: 100%; /* Ensure image fills card width */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-cockfighting__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-cockfighting__how-to-play-section {
    background-color: #F4F7FB;
    padding: 60px 0;
}

.page-cockfighting__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-cockfighting__step-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    border: 1px solid #D6E2FF;
}

.page-cockfighting__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2F6BFF;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-cockfighting__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-cockfighting__cta-area {
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting__cta-button--large {
    padding: 16px 35px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.page-cockfighting__secondary-link {
    display: block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.page-cockfighting__secondary-link:hover {
    color: #6FA3FF;
    text-decoration: underline;
}

.page-cockfighting__faq-section {
    background-color: #FFFFFF;
    padding: 60px 0 80px 0;
}

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

.page-cockfighting__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-cockfighting__faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2F6BFF;
    transition: transform 0.3s ease;
}

/* For an expandable FAQ, you'd toggle a class like 'active' */
/* .page-cockfighting__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(45deg);
} */

.page-cockfighting__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
    /* max-height: 0; */ /* For JS controlled expansion */
    /* overflow: hidden; */
    /* transition: max-height 0.3s ease-out; */
    padding-top: 5px;
}

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

.page-cockfighting__faq-answer a:hover {
    color: #6FA3FF;
}

.page-cockfighting__support-cta {
    text-align: center;
    margin-top: 50px;
}

.page-cockfighting__support-text {
    font-size: 1.1rem;
    color: #1F2D3D;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-cockfighting__section-title {
        font-size: 2rem;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-content {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-cockfighting__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-cockfighting__container {
        padding: 30px 15px;
    }
    .page-cockfighting__text-content {
        font-size: 0.95rem;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    .page-cockfighting__feature-card,
    .page-cockfighting__step-card,
    .page-cockfighting__faq-item {
        padding: 20px;
    }
    .page-cockfighting__feature-image {
        height: 200px; /* Adjust height for smaller screens */
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
    .page-cockfighting__card-title {
        font-size: 1.2rem;
    }
    .page-cockfighting__step-title {
        font-size: 1.1rem;
    }
    .page-cockfighting__faq-question {
        font-size: 1.1rem;
    }
    .page-cockfighting__faq-answer {
        font-size: 0.95rem;
    }
    .page-cockfighting__cta-button--large {
        padding: 14px 30px;
        font-size: 1.1rem;
    }

    /* Mobile overflow prevention */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure images in content sections meet minimum size requirement for non-mobile */
.page-cockfighting__feature-image,
.page-cockfighting__how-to-play-section img { /* Added a selector for potential images in how-to-play if any */
    min-width: 200px;
    min-height: 200px;
}