/* style/resources-today-cockfighting-analysis.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --accent-color: #C30808; /* For Register/Login buttons */
    --text-color-light-bg: #333333;
    --text-color-dark-bg: #ffffff;
    --text-color-register-login: #FFFF00;
    --background-color-page: #FFFFFF;
}

.page-resources-today-cockfighting-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-light-bg);
    background-color: var(--background-color-page);
}

.page-resources-today-cockfighting-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    min-height: 600px;
    color: var(--text-color-dark-bg);
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
}

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

.page-resources-today-cockfighting-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly dim the image for text readability */
}

.page-resources-today-cockfighting-analysis__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-today-cockfighting-analysis__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-today-cockfighting-analysis__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-resources-today-cockfighting-analysis__btn-primary,
.page-resources-today-cockfighting-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-today-cockfighting-analysis__btn-primary {
    background-color: var(--accent-color); /* Register/Login color */
    color: var(--text-color-register-login);
    border: 2px solid var(--accent-color);
}

.page-resources-today-cockfighting-analysis__btn-primary:hover {
    background-color: darken(var(--accent-color), 10%);
    border-color: darken(var(--accent-color), 10%);
}

.page-resources-today-cockfighting-analysis__btn-secondary {
    background-color: transparent;
    color: var(--text-color-dark-bg);
    border: 2px solid var(--text-color-dark-bg);
}

.page-resources-today-cockfighting-analysis__btn-secondary:hover {
    background-color: var(--text-color-dark-bg);
    color: var(--primary-color);
}

.page-resources-today-cockfighting-analysis__intro-section,
.page-resources-today-cockfighting-analysis__betting-tips,
.page-resources-today-cockfighting-analysis__faq-section {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
}

.page-resources-today-cockfighting-analysis__analysis-methods,
.page-resources-today-cockfighting-analysis__live-stream,
.page-resources-today-cockfighting-analysis__cta-bottom {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-resources-today-cockfighting-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-today-cockfighting-analysis__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-today-cockfighting-analysis__dark-bg .page-resources-today-cockfighting-analysis__section-title {
    color: var(--text-color-dark-bg);
}

.page-resources-today-cockfighting-analysis__light-bg .page-resources-today-cockfighting-analysis__section-title {
    color: var(--text-color-light-bg);
}

.page-resources-today-cockfighting-analysis__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-today-cockfighting-analysis__text-block a {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-resources-today-cockfighting-analysis__text-block a:hover {
    color: darken(var(--accent-color), 10%);
}

.page-resources-today-cockfighting-analysis__highlight {
    font-weight: bold;
    color: var(--accent-color);
}

.page-resources-today-cockfighting-analysis__dark-bg .page-resources-today-cockfighting-analysis__highlight {
    color: var(--text-color-register-login);
}

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

.page-resources-today-cockfighting-analysis__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark-bg);
}

.page-resources-today-cockfighting-analysis__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-today-cockfighting-analysis__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-color-dark-bg);
}

.page-resources-today-cockfighting-analysis__card-text {
    font-size: 1em;
    line-height: 1.5;
}

.page-resources-today-cockfighting-analysis__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-today-cockfighting-analysis__list-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    color: var(--text-color-light-bg);
}

.page-resources-today-cockfighting-analysis__list-item::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-resources-today-cockfighting-analysis__list-item strong {
    color: var(--primary-color);
}

.page-resources-today-cockfighting-analysis__cta-buttons--center {
    margin-top: 40px;
}

.page-resources-today-cockfighting-analysis__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #000;
    border-radius: 10px;
}

.page-resources-today-cockfighting-analysis__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-resources-today-cockfighting-analysis__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-resources-today-cockfighting-analysis__faq-list {
    margin-top: 30px;
}

.page-resources-today-cockfighting-analysis__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-color-light-bg);
}

.page-resources-today-cockfighting-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    color: var(--primary-color);
}

.page-resources-today-cockfighting-analysis__faq-item[open] > .page-resources-today-cockfighting-analysis__faq-question {
    border-bottom: 1px solid transparent;
}

.page-resources-today-cockfighting-analysis__faq-item[open] > .page-resources-today-cockfighting-analysis__faq-question .page-resources-today-cockfighting-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-today-cockfighting-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-today-cockfighting-analysis__faq-question::marker {
    display: none;
}

.page-resources-today-cockfighting-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-today-cockfighting-analysis__faq-answer {
    padding: 15px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color-light-bg);
    background-color: var(--secondary-color);
}

.page-resources-today-cockfighting-analysis__faq-answer p {
    margin: 0;
}

.page-resources-today-cockfighting-analysis__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-resources-today-cockfighting-analysis__faq-answer a:hover {
    color: darken(var(--primary-color), 10%);
}

.page-resources-today-cockfighting-analysis__cta-bottom .page-resources-today-cockfighting-analysis__cta-buttons {
    margin-top: 40px;
}

.page-resources-today-cockfighting-analysis__cta-container {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-today-cockfighting-analysis__main-title {
        font-size: 2.8em;
    }
    .page-resources-today-cockfighting-analysis__hero-description {
        font-size: 1.2em;
    }
    .page-resources-today-cockfighting-analysis__section-title {
        font-size: 2em;
    }
    .page-resources-today-cockfighting-analysis__card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-resources-today-cockfighting-analysis__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }
    .page-resources-today-cockfighting-analysis__main-title {
        font-size: 2.2em;
    }
    .page-resources-today-cockfighting-analysis__hero-description {
        font-size: 1em;
    }
    .page-resources-today-cockfighting-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-today-cockfighting-analysis__btn-primary,
    .page-resources-today-cockfighting-analysis__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-today-cockfighting-analysis__container,
    .page-resources-today-cockfighting-analysis__section,
    .page-resources-today-cockfighting-analysis__card,
    .page-resources-today-cockfighting-analysis__list-item,
    .page-resources-today-cockfighting-analysis__video-wrapper,
    .page-resources-today-cockfighting-analysis__faq-item,
    .page-resources-today-cockfighting-analysis__cta-container,
    .page-resources-today-cockfighting-analysis__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-today-cockfighting-analysis__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-today-cockfighting-analysis__card-image {
        height: auto;
        min-height: 200px;
    }
    .page-resources-today-cockfighting-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-today-cockfighting-analysis video,
    .page-resources-today-cockfighting-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-today-cockfighting-analysis__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-today-cockfighting-analysis__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-today-cockfighting-analysis__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-today-cockfighting-analysis__main-title {
        font-size: 1.8em;
    }
    .page-resources-today-cockfighting-analysis__hero-description {
        font-size: 0.9em;
    }
    .page-resources-today-cockfighting-analysis__section-title {
        font-size: 1.8em;
    }
    .page-resources-today-cockfighting-analysis__text-block,
    .page-resources-today-cockfighting-analysis__list-item,
    .page-resources-today-cockfighting-analysis__card-text {
        font-size: 0.95em;
    }
}