.page-cockfighting {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
}

.page-cockfighting__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    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;
    object-position: center;
    border-radius: 8px;
}

.page-cockfighting__hero-content {
    padding: 0 20px 40px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-cockfighting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFF1E8;
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise default h1 size */
}

.page-cockfighting__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 106, 20, 0.4);
    min-width: 180px;
    text-align: center;
}

.page-cockfighting__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(216, 106, 20, 0.6);
}

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

.page-cockfighting__section-title {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #F3C54D; /* Gold color for section titles */
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-cockfighting__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__about-section {
    background-color: #2A1212;
    padding: 60px 0;
    border-radius: 10px;
    margin: 40px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.page-cockfighting__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-cockfighting__feature-item {
    background-color: #6A1E1E;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.05em;
    font-weight: 600;
    color: #FFF1E8;
    text-align: center;
    flex-shrink: 0;
}

.page-cockfighting__secondary-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 25px;
    background-color: #C61F1F;
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-cockfighting__secondary-cta:hover {
    background-color: #E53030;
}

.page-cockfighting__game-types-section {
    padding: 60px 0;
}

.page-cockfighting__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
}

.page-cockfighting__game-tile {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background-color: #2A1212;
}

.page-cockfighting__game-tile:hover {
    transform: translateY(-5px) scale(1.02);
}

.page-cockfighting__game-tile img {
    width: 100%;
    height: 285px; /* Fixed height for game images */
    object-fit: cover;
    display: block;
}

.page-cockfighting__why-choose-us {
    background-color: #2A1212;
    padding: 60px 0;
    margin-top: 40px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

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

.page-cockfighting__advantage-card {
    background-color: #140C0C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid #6A1E1E;
    transition: background-color 0.3s ease;
}

.page-cockfighting__advantage-card:hover {
    background-color: #2A1212;
}

.page-cockfighting__advantage-icon {
    width: 100%; /* Ensure images are not small icons */
    height: auto;
    max-width: 200px; /* Example max-width for smaller content images */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-cockfighting__advantage-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-cockfighting__advantage-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-cockfighting__cta-banner {
    background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-cockfighting__cta-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFF1E8;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.page-cockfighting__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #FFF1E8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-cockfighting__cta-button--large {
    padding: 16px 40px;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-cockfighting__cta-link {
    color: #FFF1E8;
    text-decoration: underline;
    font-size: 1em;
    transition: color 0.3s ease;
}

.page-cockfighting__cta-link:hover {
    color: #F3C54D;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 0;
    }

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

    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-cockfighting__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .page-cockfighting__cta-title {
        font-size: 2em;
    }

    .page-cockfighting__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 30px 15px;
    }
    .page-cockfighting__hero-image,
    .page-cockfighting__game-tile img,
    .page-cockfighting__advantage-icon {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-content {
        padding: 15px 15px 25px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }

    .page-cockfighting__description {
        font-size: 0.95em;
    }

    .page-cockfighting__cta-button {
        width: 100%;
        max-width: 280px;
    }

    .page-cockfighting__section-title {
        font-size: 1.6em;
    }

    .page-cockfighting__feature-item {
        font-size: 0.95em;
        padding: 10px 20px;
    }

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

    .page-cockfighting__advantage-card {
        padding: 25px;
    }

    .page-cockfighting__cta-title {
        font-size: 1.8em;
    }

    .page-cockfighting__cta-button--large {
        width: 100%;
        max-width: 280px;
        font-size: 1em;
    }

    .page-cockfighting__cta-banner {
        padding: 50px 15px;
    }
}

.page-cockfighting__container {
    overflow-x: hidden;
}