/* style/resources-cockfighting-betting-tips.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #111111; /* Body background from shared.css */
    --bg-light: #ffffff;
    --btn-login: #EA7C07;
}

.page-resources-cockfighting-betting-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Ensure consistency with body background */
}

.page-resources-cockfighting-betting-tips__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-cockfighting-betting-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-cockfighting-betting-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-cockfighting-betting-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-resources-cockfighting-betting-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-cockfighting-betting-tips__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-cockfighting-betting-tips__content-section {
    padding: 60px 0;
}

.page-resources-cockfighting-betting-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-cockfighting-betting-tips__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-cockfighting-betting-tips__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light); /* Default for dark sections */
}

.page-resources-cockfighting-betting-tips__list,
.page-resources-cockfighting-betting-tips__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light); /* Default for dark sections */
}

.page-resources-cockfighting-betting-tips__list li,
.page-resources-cockfighting-betting-tips__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-cockfighting-betting-tips__btn-primary,
.page-resources-cockfighting-betting-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-cockfighting-betting-tips__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-cockfighting-betting-tips__btn-primary:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
}

.page-resources-cockfighting-betting-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-cockfighting-betting-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-resources-cockfighting-betting-tips__cta-buttons--center {
    text-align: center;
}

/* Color contrast specific styles */
.page-resources-cockfighting-betting-tips__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-cockfighting-betting-tips__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__section-title,
.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__subsection-title {
    color: var(--primary-color);
}

.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__text-block,
.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__list li,
.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__ordered-list li {
    color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__card {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-tips__card:hover {
    transform: translateY(-5px);
}

.page-resources-cockfighting-betting-tips__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-cockfighting-betting-tips__card-text {
    font-size: 1em;
    color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-resources-cockfighting-betting-tips__image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 8px;
}

.page-resources-cockfighting-betting-tips__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-resources-cockfighting-betting-tips__image-full-width {
    margin: 40px auto;
    max-width: 100%;
}

.page-resources-cockfighting-betting-tips__image-content-section {
    padding: 60px 0;
}

.page-resources-cockfighting-betting-tips__grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-resources-cockfighting-betting-tips__text-content {
    padding: 20px;
}

.page-resources-cockfighting-betting-tips__image-center {
    margin: 0 auto;
}

/* Video specific styles */
.page-resources-cockfighting-betting-tips__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 8px;
}

.page-resources-cockfighting-betting-tips__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-resources-cockfighting-betting-tips__video-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: var(--secondary-color);
}

/* FAQ Section */
.page-resources-cockfighting-betting-tips__faq-section {
    padding: 60px 0;
}

.page-resources-cockfighting-betting-tips__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-resources-cockfighting-betting-tips__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

.page-resources-cockfighting-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-resources-cockfighting-betting-tips__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-cockfighting-betting-tips__faq-title {
    margin: 0;
    color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-cockfighting-betting-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1.1em;
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px;
}

.page-resources-cockfighting-betting-tips__faq-answer p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* CTA Section */
.page-resources-cockfighting-betting-tips__cta-section {
    text-align: center;
    padding: 80px 0;
}

.page-resources-cockfighting-betting-tips__cta-image {
    margin-top: 40px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: none; /* Ensure no CSS filter is applied */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-cockfighting-betting-tips__hero-title {
        font-size: 3em;
    }
    .page-resources-cockfighting-betting-tips__hero-description {
        font-size: 1.2em;
    }
    .page-resources-cockfighting-betting-tips__grid-two-columns {
        grid-template-columns: 1fr;
    }
    .page-resources-cockfighting-betting-tips__text-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-resources-cockfighting-betting-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-cockfighting-betting-tips__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    }
    .page-resources-cockfighting-betting-tips__hero-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-betting-tips__hero-description {
        font-size: 1em;
    }
    .page-resources-cockfighting-betting-tips__section-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-betting-tips__subsection-title {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-betting-tips__btn-primary,
    .page-resources-cockfighting-betting-tips__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 10px 0 !important;
    }
    .page-resources-cockfighting-betting-tips__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-resources-cockfighting-betting-tips__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-cockfighting-betting-tips__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .page-resources-cockfighting-betting-tips__image,
    .page-resources-cockfighting-betting-tips__cta-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-cockfighting-betting-tips__image-container,
    .page-resources-cockfighting-betting-tips__video-wrapper,
    .page-resources-cockfighting-betting-tips__container,
    .page-resources-cockfighting-betting-tips__content-section,
    .page-resources-cockfighting-betting-tips__faq-section,
    .page-resources-cockfighting-betting-tips__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    .page-resources-cockfighting-betting-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-cockfighting-betting-tips__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}