:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login: #EA7C07;
    --background-color: #FFFFFF; /* Matches body background from shared.css */
    --border-color: #e0e0e0;
}

.page-resources-how-to-watch-cockfighting-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-color); /* Ensures content area matches body if not explicitly set */
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-resources-how-to-watch-cockfighting-live__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-how-to-watch-cockfighting-live__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #87CEEB); /* Light blue gradient */
    color: var(--text-light); /* Light text for dark/primary background */
    padding-top: 0; /* Already handled by main, or for specific hero offset */
}

.page-resources-how-to-watch-cockfighting-live__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-how-to-watch-cockfighting-live__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-how-to-watch-cockfighting-live__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
}

.page-resources-how-to-watch-cockfighting-live__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-how-to-watch-cockfighting-live__hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-resources-how-to-watch-cockfighting-live__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-how-to-watch-cockfighting-live__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-login); /* Specific color for login/register CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}

.page-resources-how-to-watch-cockfighting-live__cta-button:hover {
    background: #D46E06; /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-resources-how-to-watch-cockfighting-live__section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-resources-how-to-watch-cockfighting-live__section--why {
    background-color: #f9f9f9;
}

.page-resources-how-to-watch-cockfighting-live__section--platforms {
    background-color: var(--background-color);
}

.page-resources-how-to-watch-cockfighting-live__section--guide {
    background-color: #f9f9f9;
}

.page-resources-how-to-watch-cockfighting-live__section--tips {
    background-color: var(--background-color);
}

.page-resources-how-to-watch-cockfighting-live__section--troubleshooting {
    background-color: #f9f9f9;
}

.page-resources-how-to-watch-cockfighting-live__section--faq {
    background-color: var(--background-color);
}

.page-resources-how-to-watch-cockfighting-live__section--conclusion {
    background: linear-gradient(135deg, var(--primary-color), #87CEEB);
    color: var(--text-light);
    text-align: center;
}

.page-resources-how-to-watch-cockfighting-live__heading {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-how-to-watch-cockfighting-live__section--conclusion .page-resources-how-to-watch-cockfighting-live__heading {
    color: var(--text-light);
}

.page-resources-how-to-watch-cockfighting-live__sub-heading {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-how-to-watch-cockfighting-live__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-how-to-watch-cockfighting-live__section--conclusion .page-resources-how-to-watch-cockfighting-live__paragraph {
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-how-to-watch-cockfighting-live__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-how-to-watch-cockfighting-live__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Image specific styles */
.page-resources-how-to-watch-cockfighting-live__image-wrapper {
    margin: 30px 0;
    text-align: center;
    max-width: 100%; /* Ensure image wrapper doesn't overflow */
    overflow: hidden; /* Ensure content inside doesn't overflow */
    box-sizing: border-box;
}

.page-resources-how-to-watch-cockfighting-live__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block; /* Important for responsive images */
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
}

/* Step Cards */
.page-resources-how-to-watch-cockfighting-live__step-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-resources-how-to-watch-cockfighting-live__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-watch-cockfighting-live__step-description {
    font-size: 1.05em;
    margin-bottom: 20px;
}

.page-resources-how-to-watch-cockfighting-live__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-how-to-watch-cockfighting-live__btn-primary:hover {
    background: #2299CC;
    transform: translateY(-1px);
}

.page-resources-how-to-watch-cockfighting-live__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-how-to-watch-cockfighting-live__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-1px);
}

/* Card Styles */
.page-resources-how-to-watch-cockfighting-live__card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-watch-cockfighting-live__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-how-to-watch-cockfighting-live__card-text {
    font-size: 1.05em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-resources-how-to-watch-cockfighting-live__faq-list {
    margin-top: 30px;
}

.page-resources-how-to-watch-cockfighting-live__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-resources-how-to-watch-cockfighting-live__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-resources-how-to-watch-cockfighting-live__faq-item.active .page-resources-how-to-watch-cockfighting-live__faq-answer {
    max-height: 2000px !important; /* Use !important to ensure priority, large value for content */
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-resources-how-to-watch-cockfighting-live__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-how-to-watch-cockfighting-live__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-how-to-watch-cockfighting-live__faq-question:active {
    background: #eeeeee;
}

.page-resources-how-to-watch-cockfighting-live__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Prevent h3 from blocking click events */
    color: var(--text-dark);
}

.page-resources-how-to-watch-cockfighting-live__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click events */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-how-to-watch-cockfighting-live__faq-item.active .page-resources-how-to-watch-cockfighting-live__faq-toggle {
    color: #333;
    transform: rotate(45deg); /* Plus to X effect */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-watch-cockfighting-live__hero-content h1 {
        font-size: 2.8em;
    }
    .page-resources-how-to-watch-cockfighting-live__intro-text {
        font-size: 1.1em;
    }
    .page-resources-how-to-watch-cockfighting-live__heading {
        font-size: 2em;
    }
    .page-resources-how-to-watch-cockfighting-live__sub-heading {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-watch-cockfighting-live {
        padding-top: var(--header-offset, 120px) !important; /* Mobile specific header offset */
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-how-to-watch-cockfighting-live__hero-section {
        padding: 40px 15px;
    }

    .page-resources-how-to-watch-cockfighting-live__hero-content h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-resources-how-to-watch-cockfighting-live__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-resources-how-to-watch-cockfighting-live__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-how-to-watch-cockfighting-live__section {
        padding: 40px 0;
    }

    .page-resources-how-to-watch-cockfighting-live__container {
        padding: 0 15px;
    }

    .page-resources-how-to-watch-cockfighting-live__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-how-to-watch-cockfighting-live__sub-heading {
        font-size: 1.4em;
    }

    .page-resources-how-to-watch-cockfighting-live__paragraph {
        font-size: 1em;
    }

    .page-resources-how-to-watch-cockfighting-live__list {
        margin-left: 20px;
    }

    .page-resources-how-to-watch-cockfighting-live__list-item {
        font-size: 1em;
    }

    /* Images responsive */
    .page-resources-how-to-watch-cockfighting-live img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-resources-how-to-watch-cockfighting-live__section,
    .page-resources-how-to-watch-cockfighting-live__card,
    .page-resources-how-to-watch-cockfighting-live__container,
    .page-resources-how-to-watch-cockfighting-live__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsive */
    .page-resources-how-to-watch-cockfighting-live__btn-primary,
    .page-resources-how-to-watch-cockfighting-live__btn-secondary,
    .page-resources-how-to-watch-cockfighting-live a[class*="button"],
    .page-resources-how-to-watch-cockfighting-live a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-resources-how-to-watch-cockfighting-live__step-card {
        padding: 20px;
    }

    .page-resources-how-to-watch-cockfighting-live__card {
        padding: 20px;
    }

    /* FAQ Mobile */
    .page-resources-how-to-watch-cockfighting-live__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-how-to-watch-cockfighting-live__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-how-to-watch-cockfighting-live__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-how-to-watch-cockfighting-live__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-how-to-watch-cockfighting-live__faq-item.active .page-resources-how-to-watch-cockfighting-live__faq-answer {
        padding: 15px !important;
    }
}

/* Color Contrast Fixes (as per requirements) */
.page-resources-how-to-watch-cockfighting-live__dark-section {
    background: var(--primary-color);
    color: var(--text-light); /* Forced white text */
}

/* Ensure no image filters are used */
.page-resources-how-to-watch-cockfighting-live img {
    filter: none; /* Explicitly disable any potential filters */
}