.page-cockfighting {
    background-color: #0a0909; /* Deep red/wine red theme as per 3WIN style */
    color: #f0f0f0; /* Light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
}

.page-cockfighting__container {
    max-width: 1280px; /* Centered content area */
    margin: 0 auto;
    padding: 20px;
}

.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, #0a0909 0%, #2d0000 100%); /* Dark gradient for hero */
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure hero image is wide */
    margin-bottom: 20px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.page-cockfighting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #d6d604; /* Yellow-green accent for H1 */
    margin-bottom: 15px;
}

.page-cockfighting__hero-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

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

.page-cockfighting__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-cockfighting__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

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

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

.page-cockfighting__button--secondary:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__section-title {
    font-size: 2.2em;
    color: #d6d604; /* Yellow-green accent */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
}

.page-cockfighting__sub-title {
    font-size: 1.6em;
    color: #6FA3FF; /* Auxiliary blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__paragraph {
    font-size: 1.05em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-cockfighting__about-section,
.page-cockfighting__features-section,
.page-cockfighting__cta-section,
.page-cockfighting__faq-section {
    padding: 60px 0;
}

.page-cockfighting__image-text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #1a1a1a; /* Slightly lighter dark background for card-like effect */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-cockfighting__text-content {
    flex: 1;
    min-width: 300px;
}

.page-cockfighting__button--link {
    background-color: transparent;
    border: 2px solid #d6d604; /* Yellow-green border for link buttons */
    color: #d6d604;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-cockfighting__button--link:hover {
    background-color: #d6d604;
    color: #0a0909;
    box-shadow: 0 4px 10px rgba(214, 214, 4, 0.4);
}

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

.page-cockfighting__feature-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-cockfighting__feature-item:hover {
    transform: translateY(-5px);
}

.page-cockfighting__feature-title {
    color: #6FA3FF;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-cockfighting__feature-description {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-cockfighting__cta-section {
    text-align: center;
    background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue gradient for CTA */
    padding: 80px 20px;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1280px;
}

.page-cockfighting__cta-title {
    color: #FFFFFF;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__cta-description {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-cockfighting__faq-section {
    padding-bottom: 80px;
}

.page-cockfighting__faq-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__faq-question {
    color: #d6d604; /* Yellow-green accent */
    font-size: 1.2em;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-cockfighting__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: 2.5em;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-bottom: 30px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em); /* Using clamp for H1 font size */
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-cockfighting__sub-title {
        font-size: 1.4em;
    }
    .page-cockfighting__image-text-block {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .page-cockfighting__content-image {
        max-width: 100%; /* Ensures image doesn't overflow */
        min-width: 200px; /* Minimum size requirement */
    }
    .page-cockfighting__feature-list {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__cta-section {
        padding: 60px 20px;
        margin: 40px auto;
    }
    .page-cockfighting__cta-title {
        font-size: 1.8em;
    }
    .page-cockfighting__cta-description {
        font-size: 1em;
    }
    .page-cockfighting__faq-item {
        padding: 20px;
    }
    .page-cockfighting__faq-question {
        font-size: 1.1em;
    }
    /* Mobile content area image overflow prevention */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__button {
        width: 95%;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-cockfighting__section-title {
        font-size: 1.6em;
    }
    .page-cockfighting__cta-title {
        font-size: 1.6em;
    }
}