/* style/expert-predictions-today-recommendation.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-button-bg: #C30808;
    --login-button-bg: #C30808;
    --register-login-text-color: #FFFF00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-expert-predictions-today-recommendation {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--page-background, #ffffff);
}

.page-expert-predictions-today-recommendation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-expert-predictions-today-recommendation__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-expert-predictions-today-recommendation__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Hero Section */
.page-expert-predictions-today-recommendation__hero-section {
    text-align: center;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-expert-predictions-today-recommendation__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-expert-predictions-today-recommendation__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-expert-predictions-today-recommendation__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-predictions-today-recommendation__btn-primary,
.page-expert-predictions-today-recommendation__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, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-expert-predictions-today-recommendation__btn-primary {
    background-color: var(--register-button-bg);
    color: var(--register-login-text-color);
    border: 2px solid var(--register-button-bg);
}

.page-expert-predictions-today-recommendation__btn-primary:hover {
    background-color: darken(var(--register-button-bg), 10%);
    border-color: darken(var(--register-button-bg), 10%);
}

.page-expert-predictions-today-recommendation__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-expert-predictions-today-recommendation__btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Section Titles */
.page-expert-predictions-today-recommendation__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: inherit; /* Inherit color from parent section */
}

.page-expert-predictions-today-recommendation__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Predictions Overview */
.page-expert-predictions-today-recommendation__predictions-overview {
    padding: 60px 0;
}

.page-expert-predictions-today-recommendation__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-today-recommendation__card {
    background-color: var(--secondary-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.05);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.page-expert-predictions-today-recommendation__card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-today-recommendation__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-today-recommendation__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-expert-predictions-today-recommendation__card-text {
    margin-bottom: 20px;
}

.page-expert-predictions-today-recommendation__prediction-number {
    font-size: 2em;
    font-weight: bold;
    color: var(--register-button-bg);
}

.page-expert-predictions-today-recommendation__disclaimer-text {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-dark);
}

/* Analysis Methods */
.page-expert-predictions-today-recommendation__analysis-methods {
    padding: 60px 0;
}

.page-expert-predictions-today-recommendation__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-today-recommendation__feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions-today-recommendation__feature-icon {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.page-expert-predictions-today-recommendation__feature-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-expert-predictions-today-recommendation__feature-text {
    font-size: 1em;
    color: var(--text-light);
}

/* Tips Section */
.page-expert-predictions-today-recommendation__tips-section {
    padding: 60px 0;
}

.page-expert-predictions-today-recommendation__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-expert-predictions-today-recommendation__tip-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

.page-expert-predictions-today-recommendation__tip-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-expert-predictions-today-recommendation__tip-text {
    font-size: 1em;
}

/* Video Section */
.page-expert-predictions-today-recommendation__video-section {
    padding: 60px 0;
    text-align: center;
}

.page-expert-predictions-today-recommendation__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px; /* Max width for video */
    margin: 40px auto 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-today-recommendation__video,
.page-expert-predictions-today-recommendation__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    cursor: pointer;
}

.page-expert-predictions-today-recommendation__video-link {
    display: block;
}

/* FAQ Section */
.page-expert-predictions-today-recommendation__faq-section {
    padding: 60px 0;
}

.page-expert-predictions-today-recommendation__faq-list {
    margin-top: 40px;
}

.page-expert-predictions-today-recommendation__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-expert-predictions-today-recommendation__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    color: var(--primary-color);
}

.page-expert-predictions-today-recommendation__faq-question:hover {
    background-color: #f0f0f0;
}

.page-expert-predictions-today-recommendation__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-expert-predictions-today-recommendation__faq-item.active .page-expert-predictions-today-recommendation__faq-toggle {
    transform: rotate(45deg);
}

.page-expert-predictions-today-recommendation__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-expert-predictions-today-recommendation__faq-item.active .page-expert-predictions-today-recommendation__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 15px 25px 20px 25px;
}

.page-expert-predictions-today-recommendation__faq-answer p {
    margin: 0;
    color: var(--text-dark);
}

/* CTA Section */
.page-expert-predictions-today-recommendation__cta-section {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-expert-predictions-today-recommendation__main-title {
        font-size: 2.5em;
    }
    .page-expert-predictions-today-recommendation__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-today-recommendation {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-expert-predictions-today-recommendation__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .page-expert-predictions-today-recommendation__main-title {
        font-size: 2em;
    }

    .page-expert-predictions-today-recommendation__intro-text {
        font-size: 1em;
    }

    .page-expert-predictions-today-recommendation__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-expert-predictions-today-recommendation__btn-primary,
    .page-expert-predictions-today-recommendation__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-expert-predictions-today-recommendation__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-today-recommendation__section-description {
        font-size: 1em;
    }

    .page-expert-predictions-today-recommendation__predictions-overview,
    .page-expert-predictions-today-recommendation__analysis-methods,
    .page-expert-predictions-today-recommendation__tips-section,
    .page-expert-predictions-today-recommendation__video-section,
    .page-expert-predictions-today-recommendation__faq-section,
    .page-expert-predictions-today-recommendation__cta-section {
        padding: 40px 0;
    }

    .page-expert-predictions-today-recommendation__card-grid,
    .page-expert-predictions-today-recommendation__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-expert-predictions-today-recommendation__card,
    .page-expert-predictions-today-recommendation__feature-item,
    .page-expert-predictions-today-recommendation__tip-item,
    .page-expert-predictions-today-recommendation__faq-item {
        padding: 20px;
    }

    .page-expert-predictions-today-recommendation__card-image,
    .page-expert-predictions-today-recommendation__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-expert-predictions-today-recommendation__video,
    .page-expert-predictions-today-recommendation__video-link {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-expert-predictions-today-recommendation__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-expert-predictions-today-recommendation__predictions-overview .page-expert-predictions-today-recommendation__container,
    .page-expert-predictions-today-recommendation__analysis-methods .page-expert-predictions-today-recommendation__container,
    .page-expert-predictions-today-recommendation__tips-section .page-expert-predictions-today-recommendation__container,
    .page-expert-predictions-today-recommendation__video-section .page-expert-predictions-today-recommendation__container,
    .page-expert-predictions-today-recommendation__faq-section .page-expert-predictions-today-recommendation__container,
    .page-expert-predictions-today-recommendation__cta-section .page-expert-predictions-today-recommendation__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-expert-predictions-today-recommendation__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-expert-predictions-today-recommendation__faq-answer {
        padding: 0 20px;
    }

    .page-expert-predictions-today-recommendation__faq-item.active .page-expert-predictions-today-recommendation__faq-answer {
        padding: 15px 20px 20px 20px;
    }
    /* Ensure content area images also adhere to 200px minimum in CSS where applicable */
    .page-expert-predictions-today-recommendation img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-today-recommendation__main-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-today-recommendation__section-title {
        font-size: 1.5em;
    }
    .page-expert-predictions-today-recommendation__btn-primary,
    .page-expert-predictions-today-recommendation__btn-secondary {
        font-size: 0.95em;
        padding: 10px 15px;
    }
}