/* style/expert-predictions.css */
.page-expert-predictions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0d123f; /* Slightly lighter dark blue for overall background */
}

.page-expert-predictions__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d123f 100%);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

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

.page-expert-predictions__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-expert-predictions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.15;
}

.page-expert-predictions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(50%);
    transform: scale(1.1);
}

.page-expert-predictions__section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-expert-predictions__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-expert-predictions__section-subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

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

.page-expert-predictions__grid-item {
    background-color: #1A237E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD70033;
}

.page-expert-predictions__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions__grid-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-expert-predictions__grid-item p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
}

.page-expert-predictions__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2);
}

.page-expert-predictions__content-text {
    text-align: left;
    line-height: 1.8;
}

.page-expert-predictions__content-text p {
    font-size: 1.15em;
    color: #d0d0d0;
    margin-bottom: 25px;
}

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

.page-expert-predictions__list-item {
    background-color: #1A237E;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD70033;
    display: flex;
    flex-direction: column;
}

.page-expert-predictions__list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-expert-predictions__list-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: saturate(1.1) brightness(0.9);
}

.page-expert-predictions__list-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-expert-predictions__list-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-expert-predictions__list-title a:hover {
    color: #ffe066;
    text-decoration: underline;
}

.page-expert-predictions__list-description {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-expert-predictions__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
    margin-top: 20px;
}

.page-expert-predictions__btn--primary {
    background-color: #FFD700;
    color: #1A237E;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-expert-predictions__btn--primary:hover {
    background-color: #ffe066;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-expert-predictions__btn--secondary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
    margin-left: 20px;
}

.page-expert-predictions__btn--secondary:hover {
    background-color: #2e3b8f;
    color: #ffe066;
    border-color: #ffe066;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.6);
}

.page-expert-predictions__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: auto; /* Push button to bottom */
}

.page-expert-predictions__btn--outline:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-expert-predictions__cta {
    background-color: #1A237E;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD70055;
}

.page-expert-predictions__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-expert-predictions__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .page-expert-predictions__hero {
        padding: 80px 15px;
    }
    .page-expert-predictions__hero-title {
        font-size: 2.5em;
    }
    .page-expert-predictions__hero-description {
        font-size: 1.1em;
    }
    .page-expert-predictions__section {
        padding: 60px 15px;
    }
    .page-expert-predictions__section-title {
        font-size: 2em;
    }
    .page-expert-predictions__grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__list-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-expert-predictions__cta-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__hero-title {
        font-size: 2em;
    }
    .page-expert-predictions__hero-description {
        font-size: 1em;
    }
    .page-expert-predictions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions__cta-title {
        font-size: 1.5em;
    }
    .page-expert-predictions__cta-description {
        font-size: 0.95em;
    }
    .page-expert-predictions__hero-content .page-expert-predictions__btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .page-expert-predictions__hero-content .page-expert-predictions__btn--secondary {
        margin-left: 0;
    }
}