.page-cockfighting {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --text-black-color: #000000; /* Custom Color_1776249996415 */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;

    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
}

.page-cockfighting__hero-section {
    background-color: var(--background-color);
    padding: 10px 0 40px 0; /* Small top padding, larger bottom padding */
    text-align: center;
    max-width: 1390px; /* Boxed layout */
    margin: 0 auto;
}

.page-cockfighting__hero-image {
    width: 100%;
    max-width: 1200px; /* Example display width for hero */
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-cockfighting__hero-content {
    padding: 0 20px;
}

.page-cockfighting__hero-content h1 {
    color: var(--text-black-color); /* H1 using Custom Color_1776249996415 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    /* Using clamp for font-size as per rule */
    font-size: clamp(2.2rem, 4vw, 3.2rem); 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-cockfighting__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: var(--button-gradient);
    color: var(--card-bg); /* White text on button */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 107, 255, 0.4);
}

/* General section styling */
.page-cockfighting__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__section h2 {
    color: var(--text-black-color);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-cockfighting__section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-cockfighting__image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
}

.page-cockfighting__content-image {
    width: 100%;
    max-width: 600px; /* Example display width */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

.page-cockfighting__features-list li {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main-color);
    text-align: left;
    transition: transform 0.2s ease;
}

.page-cockfighting__features-list li:hover {
    transform: translateY(-5px);
}

.page-cockfighting__how-to-play-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.page-cockfighting__how-to-play-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-cockfighting__how-to-play-list li strong {
    color: var(--text-black-color);
}

.page-cockfighting__cta-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--primary-color);
    color: var(--card-bg);
    border-radius: 12px;
    max-width: 1200px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__cta-section h2 {
    color: var(--card-bg);
    margin-bottom: 25px;
    padding-top: 0;
}

.page-cockfighting__cta-section p {
    color: var(--card-bg);
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .page-cockfighting__hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-cockfighting__button {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

    .page-cockfighting__section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-cockfighting__features-list {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__how-to-play-list {
        padding-left: 20px;
    }
    
    .page-cockfighting__content-image,
    .page-cockfighting__hero-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    /* All images within .page-cockfighting must be responsive */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
        display: block; /* Prevent inline-block issues */
    }
    
    .page-cockfighting__cta-section {
        padding: 40px 15px;
        margin: 40px auto;
    }
}

/* Ensure no image filter */
.page-cockfighting img {
    filter: none !important;
}

/* Ensure content area images CSS dimensions are not less than 200px */
/* This rule targets all img elements within .page-cockfighting */
.page-cockfighting img:not(.shared-logo):not(.shared-icon) { /* Exclude shared icons */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}
/* Override specific width/height if set smaller in other rules */
.page-cockfighting__content-image,
.page-cockfighting__hero-image {
    width: auto; /* Allow max-width to control */
    height: auto; /* Allow height auto */
    max-width: 100%; /* Ensure responsiveness */
}