.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #FFFFFF; /* Custom background color is #FFFFFF */
    padding-top: 10px; /* Small top padding for the first section */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-cockfighting__hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    background-color: #26A9E0; /* Main color for hero background */
    padding-bottom: 40px;
}

.page-cockfighting__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative; /* For text below */
}

.page-cockfighting__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
}

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

.page-cockfighting__main-title {
    font-size: clamp(1.5rem, 4.5vw, 2.8rem); /* Adjusted for better readability and length, original was 50-60 chars */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.page-cockfighting__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-cockfighting__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA, as it's a prominent action */
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-cockfighting__cta-button:hover {
    background-color: #d16b06;
}

.page-cockfighting__cta-button--login {
    background-color: #26A9E0; /* Main color for login button */
}

.page-cockfighting__cta-button--login:hover {
    background-color: #1f8ec7;
}

.page-cockfighting__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Main color for section titles */
    position: relative;
    padding-bottom: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #EA7C07; /* Accent color */
    border-radius: 2px;
}

.page-cockfighting__features-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section,
.page-cockfighting__final-cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 15px;
}

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

.page-cockfighting__feature-card,
.page-cockfighting__type-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-cockfighting__feature-card img,
.page-cockfighting__type-card img {
    width: 100%;
    height: 200px; /* Ensure minimum height, will be scaled by object-fit */
    object-fit: cover;
    display: block;
    filter: none; /* No grayscale */
    transition: transform .2s ease;
}

.page-cockfighting__feature-card .page-cockfighting__card-title,
.page-cockfighting__type-card .page-cockfighting__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #26A9E0;
    margin: 20px 20px 10px;
}

.page-cockfighting__feature-card p,
.page-cockfighting__type-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    padding: 0 20px 20px;
    flex-grow: 1; /* Make paragraphs take available space */
}

.page-cockfighting__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-cockfighting__cta-button--secondary {
    background-color: #26A9E0;
}

.page-cockfighting__cta-button--secondary:hover {
    background-color: #1f8ec7;
}

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

.page-cockfighting__step-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__step-number {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.page-cockfighting__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.page-cockfighting__step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-cockfighting__tips-list li {
    background-color: #F8F8F8;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #26A9E0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__tips-list li strong {
    color: #26A9E0;
}

.page-cockfighting__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-cockfighting__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #EBF7FC; /* Lighter shade of main color */
    position: relative;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.page-cockfighting__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    padding: 0 25px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-cockfighting__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content length */
    padding: 15px 25px 20px;
}

.page-cockfighting__final-cta-section {
    background-color: #26A9E0; /* Main color for final CTA background */
    padding: 60px 15px;
    border-radius: 15px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 80px;
}

.page-cockfighting__final-cta-section .page-cockfighting__section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-cockfighting__final-cta-section .page-cockfighting__section-title::after {
    background-color: #FFFFFF;
}

.page-cockfighting__final-cta-description {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.2rem, 6vw, 2.2rem);
    }

    .page-cockfighting__hero-description {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }

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

    .page-cockfighting__features-grid,
    .page-cockfighting__types-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .page-cockfighting__guide-steps {
        grid-template-columns: 1fr; /* Stack steps on mobile */
    }

    .page-cockfighting__feature-card img,
    .page-cockfighting__type-card img {
         /* Slightly smaller on mobile, still > 200px (width is 100%) */
        max-width: 100%; /* Ensure responsiveness */
    }

    /* Content area images must not display smaller than 200px */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min-width for images in content area */
        min-height: 200px; /* Ensure min-height for images in content area */
    }
    .page-cockfighting__hero-banner img {
        min-width: unset; /* Hero can be wider than 200px naturally */
        min-height: unset;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .page-cockfighting__hero-content {
        padding: 15px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.1rem, 7vw, 1.8rem);
        margin-bottom: 10px;
    }

    .page-cockfighting__hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 20px;
    }

    .page-cockfighting__cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-bottom: 30px;
    }

    .page-cockfighting__features-section,
    .page-cockfighting__types-section,
    .page-cockfighting__guide-section,
    .page-cockfighting__tips-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__final-cta-section {
        margin: 40px auto;
        padding: 0 10px;
    }

    .page-cockfighting__feature-card img,
    .page-cockfighting__type-card img {
         /* Even smaller on very small screens, still > 200px for width=100% */
    }

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

/* Ensure content area images (excluding hero) are at least 200x200 */
.page-cockfighting__feature-card img,
.page-cockfighting__type-card img {
    min-width: 200px;
    min-height: 200px;
}
/* Override for hero image, as it's typically full width and aspect-ratio driven */
.page-cockfighting__hero-banner img {
    min-width: unset;
    min-height: unset;
}