/* style/expert-predictions.css */
.page-expert-predictions {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Assuming body background from shared.css is black */
}

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

.page-expert-predictions__dark-bg {
    background-color: #000000;
    color: #ffffff;
}

.page-expert-predictions__light-bg {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.page-expert-predictions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    text-align: center;
    gap: 40px;
}

.page-expert-predictions__hero-content {
    max-width: 900px;
}

.page-expert-predictions__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-expert-predictions__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-expert-predictions__btn-primary,
.page-expert-predictions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-expert-predictions__btn-primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.page-expert-predictions__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-expert-predictions__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-expert-predictions__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-expert-predictions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-expert-predictions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-expert-predictions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-expert-predictions__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-expert-predictions__introduction-section,
.page-expert-predictions__methodology-section,
.page-expert-predictions__benefits-section,
.page-expert-predictions__video-section,
.page-expert-predictions__faq-section,
.page-expert-predictions__cta-final {
    padding: 80px 0;
}

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

.page-expert-predictions__feature-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

.page-expert-predictions__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-expert-predictions__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-expert-predictions__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

.page-expert-predictions__methodology-list,
.page-expert-predictions__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-expert-predictions__list-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__list-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-expert-predictions__list-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

.page-expert-predictions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-expert-predictions__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: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-expert-predictions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

.page-expert-predictions__faq-list {
    margin-top: 40px;
}

.page-expert-predictions__faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    color: #FFD700;
    cursor: pointer;
    background-color: #2a2a2a;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}

.page-expert-predictions__faq-question:hover {
    background-color: #3a3a3a;
}

.page-expert-predictions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page-expert-predictions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
    font-size: 1em;
    line-height: 1.6;
}

.page-expert-predictions__faq-item.active .page-expert-predictions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-expert-predictions__faq-answer p {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Final CTA Section */
.page-expert-predictions__cta-final {
    text-align: center;
}

.page-expert-predictions__cta-final .page-expert-predictions__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-expert-predictions__hero-title {
        font-size: 2.8em;
    }

    .page-expert-predictions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }

    .page-expert-predictions__hero-title {
        font-size: 2.2em;
    }

    .page-expert-predictions__hero-description {
        font-size: 1em;
    }

    .page-expert-predictions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-expert-predictions__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions__text-block {
        font-size: 0.95em;
    }

    .page-expert-predictions__feature-card,
    .page-expert-predictions__list-item {
        padding: 20px;
    }

    .page-expert-predictions__card-title {
        font-size: 1.3em;
    }

    .page-expert-predictions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-expert-predictions__faq-answer {
        padding: 0 20px;
    }

    /* Mobile image responsive adaptation */
    .page-expert-predictions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Mobile video responsive adaptation */
    .page-expert-predictions video,
    .page-expert-predictions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-expert-predictions__video-section,
    .page-expert-predictions__video-container,
    .page-expert-predictions__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__section,
    .page-expert-predictions__card,
    .page-expert-predictions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}