/* style/expert-predictions.css */
.page-expert-predictions {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Main text color, dark blue */
    line-height: 1.6;
}

.page-expert-predictions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-expert-predictions-hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8C 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-expert-predictions-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-expert-predictions-hero > .page-expert-predictions-container {
    position: relative;
    z-index: 1;
}

.page-expert-predictions-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-expert-predictions-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

/* General Buttons */
.page-expert-predictions-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-expert-predictions-btn-primary {
    background-color: #E3B505; /* Gold */
    color: #0A2463; /* Dark blue */
}

.page-expert-predictions-btn-primary:hover {
    background-color: #FFD700; /* Lighter gold */
    transform: translateY(-2px);
}

.page-expert-predictions-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #E3B505; /* Gold border */
}

.page-expert-predictions-btn-secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-expert-predictions-btn-text {
    background-color: transparent;
    color: #E3B505;
    padding: 8px 0;
    font-size: 1em;
    font-weight: normal;
    border-radius: 0;
    border: none;
}

.page-expert-predictions-btn-text:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Sections */
.page-expert-predictions-section {
    padding: 60px 0;
}

.page-expert-predictions-section:nth-of-type(odd) {
    background-color: #F8F9FA; /* Light background */
}

.page-expert-predictions-section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-expert-predictions-section-description {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-expert-predictions .highlight {
    color: #E3B505;
}

/* Features Grid */
.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-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #E3B505;
}

.page-expert-predictions-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-expert-predictions-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-expert-predictions-feature-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-feature-text {
    color: #555555;
    font-size: 1em;
}

/* Prediction Areas */
.page-expert-predictions-area-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-expert-predictions-area-item:last-child {
    margin-bottom: 0;
}

.page-expert-predictions-area-item.reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-area-image {
    width: 50%;
    min-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-expert-predictions-area-content {
    width: 45%;
    min-width: 300px;
}

.page-expert-predictions-area-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-area-text {
    color: #555555;
    font-size: 1.1em;
    margin-bottom: 15px;
}

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

.page-expert-predictions-method-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0A2463;
}

.page-expert-predictions-method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-expert-predictions-method-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-expert-predictions-method-text {
    color: #555555;
    font-size: 1em;
}

.page-expert-predictions-full-width-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* How to Use */
.page-expert-predictions-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-expert-predictions-list li {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #E3B505;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
    font-size: 1.1em;
}

.page-expert-predictions-list-strong {
    color: #0A2463;
}

/* CTA Register */
.page-expert-predictions-cta-register {
    background: linear-gradient(90deg, #0A2463 0%, #1A3E8A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-cta-content {
    position: relative;
    z-index: 1;
}

.page-expert-predictions-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-expert-predictions-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-expert-predictions-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

/* Related Articles */
.page-expert-predictions-related-articles {
    background-color: #F0F2F5;
}

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

.page-expert-predictions-article-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-article-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-expert-predictions-article-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-expert-predictions-article-title a:hover {
    color: #E3B505;
    text-decoration: underline;
}

.page-expert-predictions-article-description {
    color: #555555;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-expert-predictions-hero-title {
        font-size: 2.8em;
    }
    .page-expert-predictions-section-title {
        font-size: 2em;
    }
    .page-expert-predictions-area-item, .page-expert-predictions-area-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions-area-image, .page-expert-predictions-area-content {
        width: 100%;
        min-width: unset;
    }
    .page-expert-predictions-area-image {
        margin-bottom: 20px;
    }
    .page-expert-predictions-cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-hero {
        padding: 60px 0;
    }
    .page-expert-predictions-hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-hero-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-predictions-btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions-section {
        padding: 40px 0;
    }
    .page-expert-predictions-section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-section-description {
        font-size: 0.95em;
    }
    .page-expert-predictions-features-grid, .page-expert-predictions-method-grid, .page-expert-predictions-article-list {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-feature-item, .page-expert-predictions-method-item, .page-expert-predictions-article-item {
        padding: 20px;
    }
    .page-expert-predictions-feature-title, .page-expert-predictions-method-title {
        font-size: 1.4em;
    }
    .page-expert-predictions-area-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-cta-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-container {
        padding: 0 15px;
    }
    .page-expert-predictions-hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-section-title {
        font-size: 1.5em;
    }
    .page-expert-predictions-cta-title {
        font-size: 1.6em;
    }
}