/* style/cockfighting.css */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-cockfighting__section-title--gold {
    color: #ffc107;
}

.page-cockfighting__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

/* Hero Section */
.page-cockfighting__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.page-cockfighting__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffc107;
}

.page-cockfighting__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__hero-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-cockfighting__hero-button--primary {
    background-color: #ffc107;
    color: #007bff;
    border: 2px solid #ffc107;
}

.page-cockfighting__hero-button--primary:hover {
    background-color: #e0a800;
    color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-3px);
}

.page-cockfighting__hero-button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-cockfighting__hero-button--secondary:hover {
    background-color: #ffffff;
    color: #007bff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.page-cockfighting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtly visible background image */
}

/* Introduction Section */
.page-cockfighting__introduction-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-cockfighting__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.page-cockfighting__image-wrapper {
    text-align: center;
}

.page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-cockfighting__feature-card {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-cockfighting__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-cockfighting__cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting__cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Gameplay Guide Section */
.page-cockfighting__gameplay-guide-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.page-cockfighting__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__step-title {
    font-size: 1.6em;
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-cockfighting__step-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-cockfighting__step-button:hover {
    background-color: #0056b3;
}

.page-cockfighting__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    min-width: 200px;
    min-height: 200px;
}

/* Bonus Highlight Section */
.page-cockfighting__bonus-highlight-section {
    padding: 80px 0;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
}

.page-cockfighting__bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-cockfighting__bonus-image {
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__bonus-button {
    display: inline-block;
    background-color: #ffc107;
    color: #007bff;
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.page-cockfighting__bonus-button:hover {
    background-color: #e0a800;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-cockfighting__bonus-link {
    display: block;
    color: #ffffff;
    text-decoration: underline;
    margin-top: 20px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-cockfighting__bonus-link:hover {
    color: #ffc107;
}

/* Responsible Gambling Section */
.page-cockfighting__responsible-gambling-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-cockfighting__read-more-link {
    display: inline-block;
    color: #007bff;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-cockfighting__read-more-link:hover {
    color: #0056b3;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-cockfighting__faq-list {
    display: grid;
    gap: 20px;
}

.page-cockfighting__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-cockfighting__faq-answer {
    font-size: 1em;
    color: #555555;
    display: block; /* Ensure answer is visible by default */
}

.page-cockfighting__faq-cta {
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting__faq-button {
    display: inline-block;
    background-color: #ffc107;
    color: #007bff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-button:hover {
    background-color: #e0a800;
    color: #0056b3;
}

/* Final CTA Section */
.page-cockfighting__final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #ffffff;
    text-align: center;
}

.page-cockfighting__final-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-cockfighting__final-cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-cockfighting__final-cta-button--primary {
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #ffffff;
}

.page-cockfighting__final-cta-button--primary:hover {
    background-color: #f0f0f0;
    color: #0056b3;
    border-color: #f0f0f0;
    transform: translateY(-3px);
}

.page-cockfighting__final-cta-button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-cockfighting__final-cta-button--secondary:hover {
    background-color: #ffffff;
    color: #007bff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .page-cockfighting__content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-cockfighting__bonus-content {
        flex-direction: row;
        text-align: left;
    }

    .page-cockfighting__bonus-content .page-cockfighting__text-content {
        text-align: left;
    }

    .page-cockfighting__hero-title {
        font-size: 4.5em;
    }

    .page-cockfighting__hero-description {
        font-size: 1.8em;
    }

    .page-cockfighting__feature-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .page-cockfighting__hero-title {
        font-size: 2.5em;
    }

    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }

    .page-cockfighting__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__hero-button {
        width: 100%;
        max-width: 300px;
    }

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

    .page-cockfighting__feature-icon {
        width: 100px;
        height: 100px;
    }

    .page-cockfighting__bonus-image {
        max-width: 300px;
    }

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

    .page-cockfighting__final-cta-button {
        width: 100%;
        max-width: 300px;
    }
}