/* style/cockfighting-live-events-analysis.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg-color: #11271B;
    --background-color-page: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-cockfighting-live-events-analysis {
    background-color: var(--background-color-page); /* Dark background */
    color: var(--text-main-color); /* Light text for contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-cockfighting-live-events-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-cockfighting-live-events-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-cockfighting-live-events-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; /* Space between image and content */
}

.page-cockfighting-live-events-analysis__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-cockfighting-live-events-analysis__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-cockfighting-live-events-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-cockfighting-live-events-analysis__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-cockfighting-live-events-analysis__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cockfighting-live-events-analysis__btn-primary,
.page-cockfighting-live-events-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting-live-events-analysis__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: 2px solid transparent;
}

.page-cockfighting-live-events-analysis__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-events-analysis__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-cockfighting-live-events-analysis__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-cockfighting-live-events-analysis__introduction-section,
.page-cockfighting-live-events-analysis__features-section,
.page-cockfighting-live-events-analysis__analysis-tools-section,
.page-cockfighting-live-events-analysis__why-bwing-section,
.page-cockfighting-live-events-analysis__promotions-section,
.page-cockfighting-live-events-analysis__faq-section,
.page-cockfighting-live-events-analysis__cta-bottom-section {
    padding: 60px 0;
}

.page-cockfighting-live-events-analysis__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-cockfighting-live-events-analysis p {
    font-size: 1.05rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-cockfighting-live-events-analysis__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting-live-events-analysis__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-cockfighting-live-events-analysis__list li {
    font-size: 1.05rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
}

.page-cockfighting-live-events-analysis__list li strong {
    color: var(--gold-color);
}

/* Feature Grid */
.page-cockfighting-live-events-analysis__feature-grid,
.page-cockfighting-live-events-analysis__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-events-analysis__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--text-main-color);
}

.page-cockfighting-live-events-analysis__card:hover {
    transform: translateY(-5px);
}

.page-cockfighting-live-events-analysis__card-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting-live-events-analysis__card-title a {
    color: var(--gold-color);
    text-decoration: none;
}

.page-cockfighting-live-events-analysis__card-title a:hover {
    text-decoration: underline;
}

.page-cockfighting-live-events-analysis__card p {
    font-size: 1rem;
    color: var(--text-secondary-color);
}

/* Promotions Section */
.page-cockfighting-live-events-analysis__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-events-analysis__promotion-card {
    text-align: left;
    padding: 20px;
}

.page-cockfighting-live-events-analysis__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting-live-events-analysis__promotion-card .page-cockfighting-live-events-analysis__card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.page-cockfighting-live-events-analysis__promotion-card .page-cockfighting-live-events-analysis__btn-secondary {
    margin-top: 15px;
    font-size: 0.95rem;
    padding: 10px 20px;
    width: auto;
}

.page-cockfighting-live-events-analysis__btn-view-all {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

/* FAQ Section */
.page-cockfighting-live-events-analysis__faq-list {
    margin-top: 40px;
}

.page-cockfighting-live-events-analysis__faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    padding: 0;
}

.page-cockfighting-live-events-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--deep-green-color);
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main-color);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
}

.page-cockfighting-live-events-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-cockfighting-live-events-analysis__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--gold-color);
}

.page-cockfighting-live-events-analysis__faq-item[open] .page-cockfighting-live-events-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting-live-events-analysis__faq-answer {
    padding: 20px 30px;
    background-color: var(--card-bg-color);
    color: var(--text-secondary-color);
    font-size: 1rem;
}

.page-cockfighting-live-events-analysis__faq-answer p {
    margin-bottom: 10px;
    color: var(--text-secondary-color);
}

.page-cockfighting-live-events-analysis__faq-answer .page-cockfighting-live-events-analysis__btn-secondary {
    margin-top: 15px;
    font-size: 0.95rem;
    padding: 10px 20px;
}

/* CTA Bottom Section */
.page-cockfighting-live-events-analysis__cta-bottom-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: var(--deep-green-color);
}

.page-cockfighting-live-events-analysis__cta-bottom-section .page-cockfighting-live-events-analysis__section-title {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.page-cockfighting-live-events-analysis__cta-bottom-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-secondary-color);
}

.page-cockfighting-live-events-analysis__btn-join-now {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-live-events-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-cockfighting-live-events-analysis__hero-description {
        font-size: 1.1rem;
    }

    .page-cockfighting-live-events-analysis__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live-events-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-cockfighting-live-events-analysis__hero-section {
        padding-bottom: 40px;
    }

    .page-cockfighting-live-events-analysis__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 30px;
    }

    .page-cockfighting-live-events-analysis__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-cockfighting-live-events-analysis__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-cockfighting-live-events-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-cockfighting-live-events-analysis__btn-primary,
    .page-cockfighting-live-events-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting-live-events-analysis__introduction-section,
    .page-cockfighting-live-events-analysis__features-section,
    .page-cockfighting-live-events-analysis__analysis-tools-section,
    .page-cockfighting-live-events-analysis__why-bwing-section,
    .page-cockfighting-live-events-analysis__promotions-section,
    .page-cockfighting-live-events-analysis__faq-section,
    .page-cockfighting-live-events-analysis__cta-bottom-section {
        padding: 40px 0;
    }

    .page-cockfighting-live-events-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-cockfighting-live-events-analysis p,
    .page-cockfighting-live-events-analysis__list li {
        font-size: 0.95rem;
    }

    .page-cockfighting-live-events-analysis__card {
        padding: 20px;
    }

    .page-cockfighting-live-events-analysis__card-title {
        font-size: 1.2rem;
    }

    .page-cockfighting-live-events-analysis__card-image {
        height: 200px;
    }

    .page-cockfighting-live-events-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-cockfighting-live-events-analysis__faq-answer {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* Mobile image and video responsiveness */
    .page-cockfighting-live-events-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting-live-events-analysis video,
    .page-cockfighting-live-events-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting-live-events-analysis__section,
    .page-cockfighting-live-events-analysis__card,
    .page-cockfighting-live-events-analysis__container,
    .page-cockfighting-live-events-analysis__video-section,
    .page-cockfighting-live-events-analysis__video-container,
    .page-cockfighting-live-events-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-cockfighting-live-events-analysis__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
    
    .page-cockfighting-live-events-analysis__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-live-events-analysis__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .page-cockfighting-live-events-analysis__cta-buttons {
        gap: 10px;
    }

    .page-cockfighting-live-events-analysis__btn-primary,
    .page-cockfighting-live-events-analysis__btn-secondary {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .page-cockfighting-live-events-analysis__section-title {
        font-size: 1.6rem;
    }

    .page-cockfighting-live-events-analysis__card-title {
        font-size: 1.1rem;
    }

    .page-cockfighting-live-events-analysis__faq-question {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}