/* style/cockfighting-live-streaming.css */
.page-cockfighting-live-streaming {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--black-color); /* Inherit from shared.css */
}

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

/* Header offset for main content */
.page-cockfighting-live-streaming__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-cockfighting-live-streaming__hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero_bg:1920x1080:cockfighting,arena,crowd,excitement,live_betting]') center center / cover no-repeat;
    text-align: center;
    padding-bottom: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden; /* Prevent background image overflow */
}

.page-cockfighting-live-streaming__main-title {
    font-size: 3.5em;
    color: #26A9E0; /* Brand color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-streaming__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-cockfighting-live-streaming__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Max width for video */
    margin: 30px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-streaming__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.page-cockfighting-live-streaming__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}


.page-cockfighting-live-streaming__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-cockfighting-live-streaming__btn-primary,
.page-cockfighting-live-streaming__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for mobile button responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-cockfighting-live-streaming__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-cockfighting-live-streaming__btn-primary:hover {
    background-color: #1a7bb0;
    border-color: #1a7bb0;
    transform: translateY(-2px);
}

.page-cockfighting-live-streaming__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-cockfighting-live-streaming__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-cockfighting-live-streaming__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* General Section Styling */
.page-cockfighting-live-streaming__section {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting-live-streaming__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for section titles */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-streaming__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Why Choose Section */
.page-cockfighting-live-streaming__why-choose {
    background-color: #1a1a1a; /* Dark background for contrast */
    color: #ffffff;
}

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

.page-cockfighting-live-streaming__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-cockfighting-live-streaming__feature-icon {
    width: 100%; /* Ensure image fills card */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area */
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Min size for images */
    min-height: 200px; /* Min size for images */
}

.page-cockfighting-live-streaming__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-cockfighting-live-streaming__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

/* How to Access Section */
.page-cockfighting-live-streaming__how-to-access {
    background-color: #0d0d0d; /* Darker background */
    color: #ffffff;
}

.page-cockfighting-live-streaming__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting-live-streaming__step-item {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 80px; /* Space for step number */
}

.page-cockfighting-live-streaming__step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-cockfighting-live-streaming__step-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-cockfighting-live-streaming__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

.page-cockfighting-live-streaming__step-description a {
    color: #26A9E0;
    text-decoration: underline;
}

/* Promotions Section */
.page-cockfighting-live-streaming__promotions {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-cockfighting-live-streaming__promo-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-cockfighting-live-streaming__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min size for images */
    min-height: 200px; /* Min size for images */
}

.page-cockfighting-live-streaming__promo-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    flex-grow: 1; /* Push button to bottom */
}

.page-cockfighting-live-streaming__promo-title a {
    color: #26A9E0;
    text-decoration: none;
}

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

.page-cockfighting-live-streaming__promo-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* Security Section */
.page-cockfighting-live-streaming__security {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-cockfighting-live-streaming__security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-cockfighting-live-streaming__security-image {
    flex: 1;
    min-width: 300px; /* Min width for image on smaller screens */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 200px; /* Min size for images */
}

.page-cockfighting-live-streaming__security-text {
    flex: 2;
    text-align: left;
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1.1em;
}

.page-cockfighting-live-streaming__security-text p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-cockfighting-live-streaming__security-text a {
    color: #26A9E0;
    text-decoration: underline;
}

/* FAQ Section */
.page-cockfighting-live-streaming__faq {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-cockfighting-live-streaming__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-cockfighting-live-streaming__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-cockfighting-live-streaming__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #26A9E0;
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-live-streaming__faq-item[open] .page-cockfighting-live-streaming__faq-question {
    border-bottom: none;
}

.page-cockfighting-live-streaming__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
    color: #ffffff;
}

.page-cockfighting-live-streaming__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    line-height: 1;
}

.page-cockfighting-live-streaming__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

.page-cockfighting-live-streaming__faq-answer p {
    margin-bottom: 10px;
    color: #cccccc;
}

/* Remove default details arrow */
.page-cockfighting-live-streaming__faq-item summary {
    list-style: none;
}
.page-cockfighting-live-streaming__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Final CTA Section */
.page-cockfighting-live-streaming__cta-final {
    background-color: #26A9E0; /* Brand color background */
    color: #ffffff;
    padding: 60px 0;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__section-title {
    color: #ffffff;
    text-shadow: none;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__section-description {
    color: #f0f0f0;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    border-color: #EA7C07;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__btn-primary:hover {
    background-color: #c76a06;
    border-color: #c76a06;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border-color: #ffffff;
}

.page-cockfighting-live-streaming__cta-final .page-cockfighting-live-streaming__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #26A9E0;
    border-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-live-streaming__main-title {
        font-size: 3em;
    }
    .page-cockfighting-live-streaming__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live-streaming__hero-section {
        padding-bottom: 40px;
    }
    .page-cockfighting-live-streaming__main-title {
        font-size: 2.5em;
    }
    .page-cockfighting-live-streaming__intro-text {
        font-size: 1em;
    }
    .page-cockfighting-live-streaming__section {
        padding: 60px 0;
    }
    .page-cockfighting-live-streaming__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-live-streaming__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Mobile image responsiveness */
    .page-cockfighting-live-streaming img {
        max-width: 100% !important;
        width: 100% !important; /* Ensure width is 100% */
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min size even on mobile */
        min-height: 200px !important; /* Enforce min size even on mobile */
    }
    
    /* Mobile video responsiveness */
    .page-cockfighting-live-streaming video,
    .page-cockfighting-live-streaming__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video section padding-top for mobile */
    .page-cockfighting-live-streaming__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    
    /* Mobile container responsiveness */
    .page-cockfighting-live-streaming__container,
    .page-cockfighting-live-streaming__video-wrapper,
    .page-cockfighting-live-streaming__cta-buttons,
    .page-cockfighting-live-streaming__promo-grid,
    .page-cockfighting-live-streaming__security-content,
    .page-cockfighting-live-streaming__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Mobile button responsiveness */
    .page-cockfighting-live-streaming__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }
    .page-cockfighting-live-streaming__btn-primary,
    .page-cockfighting-live-streaming__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting-live-streaming__security-content {
        flex-direction: column;
    }
    .page-cockfighting-live-streaming__security-image {
        width: 100%;
        min-width: unset; /* Allow it to scale down */
    }
    .page-cockfighting-live-streaming__security-text {
        width: 100%;
        text-align: center;
    }
    .page-cockfighting-live-streaming__steps-grid,
    .page-cockfighting-live-streaming__features-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-live-streaming__step-item {
        padding-left: 60px;
    }
    .page-cockfighting-live-streaming__step-number {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
    .page-cockfighting-live-streaming__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-cockfighting-live-streaming__faq-answer {
        padding: 10px 20px 15px 20px;
        font-size: 0.95em;
    }
}