/* style/expert-predictions-accuracy-stats.css */
.page-expert-predictions-accuracy-stats {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-expert-predictions-accuracy-stats__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-expert-predictions-accuracy-stats__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-expert-predictions-accuracy-stats__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-expert-predictions-accuracy-stats__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-accuracy-stats__hero-title .highlight {
    color: #f0f0f0;
}

.page-expert-predictions-accuracy-stats__hero-subtitle {
    font-size: 1.5em;
    color: #d0d0d0;
    margin-bottom: 40px;
    font-weight: 300;
}

.page-expert-predictions-accuracy-stats__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: -50px; /* Adjust as needed */
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
    display: none; /* Hide by default for smaller screens */
}

@media (min-width: 768px) {
    .page-expert-predictions-accuracy-stats__hero-image-wrapper {
        display: block;
    }
}

.page-expert-predictions-accuracy-stats__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-expert-predictions-accuracy-stats__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-expert-predictions-accuracy-stats__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-expert-predictions-accuracy-stats__cta-button--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-expert-predictions-accuracy-stats__cta-button--secondary:hover {
    background-color: #1A3F6C;
    border-color: #e6c200;
}

.page-expert-predictions-accuracy-stats__cta-button--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-expert-predictions-accuracy-stats__cta-button--tertiary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-expert-predictions-accuracy-stats__section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-expert-predictions-accuracy-stats__section:nth-of-type(even) {
    background-color: #1A3F6C; /* Slightly lighter dark blue for alternating sections */
}

.page-expert-predictions-accuracy-stats__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-expert-predictions-accuracy-stats__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: justify;
}

.page-expert-predictions-accuracy-stats__paragraph .keyword {
    color: #FFD700;
    font-weight: bold;
}

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

.page-expert-predictions-accuracy-stats__metric-card {
    background-color: #0A2342;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-accuracy-stats__metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-accuracy-stats__metric-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-expert-predictions-accuracy-stats__metric-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-expert-predictions-accuracy-stats__metric-description {
    font-size: 1em;
    color: #d0d0d0;
}

.page-expert-predictions-accuracy-stats__chart-area {
    background-color: #0A2342;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-accuracy-stats__chart-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-expert-predictions-accuracy-stats__chart-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-expert-predictions-accuracy-stats__chart-caption {
    font-size: 0.9em;
    color: #a0a0a0;
    text-align: center;
}

.page-expert-predictions-accuracy-stats__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-expert-predictions-accuracy-stats__list li {
    background-color: #1A3F6C;
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-accuracy-stats__list li strong {
    color: #FFD700;
}

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

.page-expert-predictions-accuracy-stats__review-card {
    background-color: #0A2342;
    border: 1px solid #1A3F6C;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-expert-predictions-accuracy-stats__review-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

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

.page-expert-predictions-accuracy-stats__review-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-top: auto;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-expert-predictions-accuracy-stats__quote-card {
    background-color: #1A3F6C;
    border-left: 5px solid #FFD700;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-expert-predictions-accuracy-stats__expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
}

.page-expert-predictions-accuracy-stats__quote {
    font-size: 1.2em;
    font-style: italic;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-expert-predictions-accuracy-stats__author {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
}

.page-expert-predictions-accuracy-stats__accordion {
    margin-top: 30px;
}

.page-expert-predictions-accuracy-stats__accordion-item {
    margin-bottom: 10px;
    border: 1px solid #1A3F6C;
    border-radius: 8px;
    overflow: hidden;
}

.page-expert-predictions-accuracy-stats__accordion-header {
    background-color: #1A3F6C;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.page-expert-predictions-accuracy-stats__accordion-header:hover {
    background-color: #2A5D94;
}

.page-expert-predictions-accuracy-stats__accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
}

.page-expert-predictions-accuracy-stats__accordion-header.active::after {
    content: '-';
}

.page-expert-predictions-accuracy-stats__accordion-content {
    padding: 0 25px;
    background-color: #0A2342;
    color: #f0f0f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-expert-predictions-accuracy-stats__accordion-content p {
    padding: 15px 0;
    margin: 0;
    font-size: 1em;
}

.page-expert-predictions-accuracy-stats__accordion-header.active + .page-expert-predictions-accuracy-stats__accordion-content {
    max-height: 200px; /* Adjust as needed for content height */
    padding: 15px 25px;
}

.page-expert-predictions-accuracy-stats__call-to-action {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-expert-predictions-accuracy-stats__hero-title {
        font-size: 3em;
    }
    .page-expert-predictions-accuracy-stats__hero-subtitle {
        font-size: 1.3em;
    }
    .page-expert-predictions-accuracy-stats__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-accuracy-stats__hero {
        padding: 80px 0 60px;
    }
    .page-expert-predictions-accuracy-stats__hero-title {
        font-size: 2.5em;
    }
    .page-expert-predictions-accuracy-stats__hero-subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions-accuracy-stats__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions-accuracy-stats__cta-button--secondary,
    .page-expert-predictions-accuracy-stats__cta-button--tertiary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-expert-predictions-accuracy-stats__metrics-grid,
    .page-expert-predictions-accuracy-stats__review-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-accuracy-stats__section {
        padding: 40px 0;
    }
    .page-expert-predictions-accuracy-stats__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-accuracy-stats__paragraph {
        font-size: 1em;
    }
    .page-expert-predictions-accuracy-stats__quote-card {
        padding: 20px;
    }
    .page-expert-predictions-accuracy-stats__quote {
        font-size: 1.1em;
    }
    .page-expert-predictions-accuracy-stats__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
        padding-right: 40px;
    }
    .page-expert-predictions-accuracy-stats__accordion-header::after {
        font-size: 1.2em;
        right: 15px;
    }
    .page-expert-predictions-accuracy-stats__accordion-content {
        padding: 0 20px;
    }
    .page-expert-predictions-accuracy-stats__accordion-content p {
        padding: 10px 0;
    }
}