:root {
    --page-expert-predictions-primary: #11A84E;
    --page-expert-predictions-accent: #22C768;
    --page-expert-predictions-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-expert-predictions-card-bg: #11271B;
    --page-expert-predictions-background: #08160F;
    --page-expert-predictions-text-main: #F2FFF6;
    --page-expert-predictions-text-secondary: #A7D9B8;
    --page-expert-predictions-border: #2E7A4E;
    --page-expert-predictions-glow: #57E38D;
    --page-expert-predictions-gold: #F2C14E;
    --page-expert-predictions-divider: #1E3A2A;
    --page-expert-predictions-deep-green: #0A4B2C;
}

.page-expert-predictions {
    background-color: var(--page-expert-predictions-background);
    color: var(--page-expert-predictions-text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.page-expert-predictions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding for the first section in main */
    background-color: var(--page-expert-predictions-deep-green);
    overflow: hidden;
}

.page-expert-predictions__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-expert-predictions__hero-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-expert-predictions__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    color: var(--page-expert-predictions-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-expert-predictions__subtitle {
    font-size: 1.2em;
    color: var(--page-expert-predictions-text-secondary);
    margin-bottom: 30px;
}

.page-expert-predictions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--page-expert-predictions-button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
}

.page-expert-predictions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions__cta-button--bottom {
    margin-top: 40px;
}

.page-expert-predictions__cta-button--video {
    margin-top: 20px;
}

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

.page-expert-predictions__section-title {
    font-size: 2.5em;
    color: var(--page-expert-predictions-primary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-expert-predictions__introduction-section,
.page-expert-predictions__methods-section,
.page-expert-predictions__faq-section {
    background-color: var(--page-expert-predictions-background);
    color: var(--page-expert-predictions-text-main);
    padding: 60px 0;
}

.page-expert-predictions__why-trust-section,
.page-expert-predictions__how-to-section,
.page-expert-predictions__types-section,
.page-expert-predictions__conclusion-section {
    background-color: var(--page-expert-predictions-card-bg);
    color: var(--page-expert-predictions-text-main);
    padding: 60px 0;
}

.page-expert-predictions__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-expert-predictions__content-grid .page-expert-predictions__text-block {
    flex: 1;
}

.page-expert-predictions__content-grid .page-expert-predictions__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-expert-predictions__content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-expert-predictions__image-full-width {
    width: 100%;
    height: auto;
    margin-top: 40px;
}

.page-expert-predictions__text-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-expert-predictions-text-secondary);
}

.page-expert-predictions__text-block a {
    color: var(--page-expert-predictions-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-expert-predictions__text-block a:hover {
    text-decoration: underline;
}

.page-expert-predictions__feature-grid,
.page-expert-predictions__method-grid,
.page-expert-predictions__step-grid,
.page-expert-predictions__types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions__feature-card,
.page-expert-predictions__method-card,
.page-expert-predictions__step-card,
.page-expert-predictions__type-card {
    background-color: var(--page-expert-predictions-deep-green);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-expert-predictions-border);
    transition: transform 0.3s ease;
}

.page-expert-predictions__feature-card:hover,
.page-expert-predictions__method-card:hover,
.page-expert-predictions__step-card:hover,
.page-expert-predictions__type-card:hover {
    transform: translateY(-5px);
}

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

.page-expert-predictions__feature-title,
.page-expert-predictions__method-title,
.page-expert-predictions__step-title,
.page-expert-predictions__type-title {
    font-size: 1.5em;
    color: var(--page-expert-predictions-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions__step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--page-expert-predictions-primary);
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.page-expert-predictions__type-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-expert-predictions__video-section {
    background-color: var(--page-expert-predictions-background);
    padding: 60px 0;
    text-align: center;
}

.page-expert-predictions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%; /* Important for desktop */
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-expert-predictions__video-description {
    margin-top: 25px;
    font-size: 1.1em;
    color: var(--page-expert-predictions-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-expert-predictions__faq-item {
    background-color: var(--page-expert-predictions-deep-green);
    border: 1px solid var(--page-expert-predictions-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-expert-predictions-text-main);
}

.page-expert-predictions__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    color: var(--page-expert-predictions-gold);
}

.page-expert-predictions__faq-item summary::-webkit-details-marker {
    display: none;
}

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

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

.page-expert-predictions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: var(--page-expert-predictions-text-secondary);
}

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

.page-expert-predictions__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-expert-predictions__conclusion-section .page-expert-predictions__text-block {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--page-expert-predictions-text-secondary);
}

.page-expert-predictions p,
.page-expert-predictions li,
.page-expert-predictions .page-expert-predictions__text-block {
    color: var(--page-expert-predictions-text-secondary);
}

.page-expert-predictions h1,
.page-expert-predictions h2,
.page-expert-predictions h3 {
    color: var(--page-expert-predictions-text-main);
}

.page-expert-predictions h1.page-expert-predictions__main-title,
.page-expert-predictions h2.page-expert-predictions__section-title,
.page-expert-predictions h3.page-expert-predictions__feature-title,
.page-expert-predictions h3.page-expert-predictions__method-title,
.page-expert-predictions h3.page-expert-predictions__step-title,
.page-expert-predictions h3.page-expert-predictions__type-title {
    color: var(--page-expert-predictions-gold); /* Gold for prominent titles */
}

.page-expert-predictions a {
    color: var(--page-expert-predictions-primary);
    text-decoration: none;
}

.page-expert-predictions a:hover {
    text-decoration: underline;
    color: var(--page-expert-predictions-accent);
}

@media (max-width: 1024px) {
    .page-expert-predictions__hero-content {
        max-width: 700px;
    }

    .page-expert-predictions__main-title {
        font-size: clamp(1.8em, 6vw, 3em);
    }

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

    .page-expert-predictions__content-grid {
        flex-direction: column;
    }

    .page-expert-predictions__content-grid .page-expert-predictions__image-block {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero-section {
        padding-bottom: 40px;
    }

    .page-expert-predictions__hero-content {
        margin-top: 20px;
    }

    .page-expert-predictions__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
    }

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

    .page-expert-predictions__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-expert-predictions__container {
        padding: 20px 15px;
    }

    .page-expert-predictions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-expert-predictions__feature-grid,
    .page-expert-predictions__method-grid,
    .page-expert-predictions__step-grid,
    .page-expert-predictions__types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-expert-predictions__feature-card,
    .page-expert-predictions__method-card,
    .page-expert-predictions__step-card,
    .page-expert-predictions__type-card {
        padding: 20px;
    }

    .page-expert-predictions__feature-title,
    .page-expert-predictions__method-title,
    .page-expert-predictions__step-title,
    .page-expert-predictions__type-title {
        font-size: 1.3em;
    }

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

    .page-expert-predictions__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-expert-predictions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95em;
    }

    .page-expert-predictions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-expert-predictions__hero-image-wrapper,
    .page-expert-predictions__image-block,
    .page-expert-predictions__feature-icon,
    .page-expert-predictions__type-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .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__video-section {
        padding-top: 10px !important;
    }

    .page-expert-predictions__cta-button,
    .page-expert-predictions a[class*="button"],
    .page-expert-predictions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-expert-predictions__cta-buttons,
    .page-expert-predictions__button-group,
    .page-expert-predictions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
}