/* style/expert-predictions-upcoming-matches.css */

.page-expert-predictions-upcoming-matches {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark sections */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

.page-expert-predictions-upcoming-matches__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #302B63 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-upcoming-matches__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.page-expert-predictions-upcoming-matches__cta-button {
    display: inline-block;
    background-color: #E0B92B; /* Accent color for buttons */
    color: #0A192F; /* Dark text on accent background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-expert-predictions-upcoming-matches__cta-button:hover {
    background-color: #F0D45A; /* Slightly lighter accent on hover */
    transform: translateY(-3px);
}

.page-expert-predictions-upcoming-matches__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-expert-predictions-upcoming-matches__section-title {
    font-size: 2.5em;
    color: #E0B92B; /* Accent color for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-expert-predictions-upcoming-matches__section-title .highlight {
    color: #FFFFFF;
}

.page-expert-predictions-upcoming-matches__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B92B;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-predictions-upcoming-matches__intro-section,
.page-expert-predictions-upcoming-matches__matches-section,
.page-expert-predictions-upcoming-matches__methodology-section,
.page-expert-predictions-upcoming-matches__responsible-gaming-section,
.page-expert-predictions-upcoming-matches__cta-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-expert-predictions-upcoming-matches__intro-section .page-expert-predictions-upcoming-matches__text-block,
.page-expert-predictions-upcoming-matches__methodology-section .page-expert-predictions-upcoming-matches__text-block,
.page-expert-predictions-upcoming-matches__responsible-gaming-section .page-expert-predictions-upcoming-matches__text-block,
.page-expert-predictions-upcoming-matches__cta-section .page-expert-predictions-upcoming-matches__text-block {
    color: #E0E0E0;
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
}

.page-expert-predictions-upcoming-matches__inline-link {
    color: #E0B92B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-expert-predictions-upcoming-matches__inline-link:hover {
    color: #F0D45A;
    text-decoration: underline;
}

.page-expert-predictions-upcoming-matches__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-expert-predictions-upcoming-matches__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-upcoming-matches__match-card {
    background-color: #1A2A44; /* Slightly lighter dark background for cards */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-expert-predictions-upcoming-matches__match-card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-upcoming-matches__match-title {
    font-size: 2em;
    color: #E0B92B;
    margin-bottom: 15px;
    text-align: left;
}

.page-expert-predictions-upcoming-matches__match-info {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 20px;
    text-align: left;
}

.page-expert-predictions-upcoming-matches__analysis-heading {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-expert-predictions-upcoming-matches__analysis-list,
.page-expert-predictions-upcoming-matches__methodology-list,
.page-expert-predictions-upcoming-matches__responsible-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-expert-predictions-upcoming-matches__analysis-list li,
.page-expert-predictions-upcoming-matches__methodology-list li,
.page-expert-predictions-upcoming-matches__responsible-list li {
    background-color: #2A3B50; /* Slightly different background for list items */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    position: relative;
    padding-left: 40px;
    text-align: justify;
}

.page-expert-predictions-upcoming-matches__analysis-list li::before,
.page-expert-predictions-upcoming-matches__methodology-list li::before,
.page-expert-predictions-upcoming-matches__responsible-list li::before {
    content: '•';
    color: #E0B92B;
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-expert-predictions-upcoming-matches__methodology-section {
    background-color: #0F1F35; /* Slightly different dark background */
}

.page-expert-predictions-upcoming-matches__responsible-gaming-section {
    background-color: #0A192F;
}

.page-expert-predictions-upcoming-matches__cta-section {
    background-color: #1A2A44;
    text-align: center;
}

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

.page-expert-predictions-upcoming-matches__cta-item {
    background-color: #0F1F35;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-expert-predictions-upcoming-matches__cta-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #E0B92B;
    padding: 10px;
}

.page-expert-predictions-upcoming-matches__cta-item-title {
    font-size: 1.8em;
    color: #E0B92B;
    margin-bottom: 15px;
}

.page-expert-predictions-upcoming-matches__cta-item-description {
    color: #C0C0C0;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-expert-predictions-upcoming-matches__hero-title {
        font-size: 2.5em;
    }

    .page-expert-predictions-upcoming-matches__hero-subtitle {
        font-size: 1.2em;
    }

    .page-expert-predictions-upcoming-matches__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-upcoming-matches__match-title {
        font-size: 1.6em;
    }

    .page-expert-predictions-upcoming-matches__analysis-heading {
        font-size: 1.3em;
    }

    .page-expert-predictions-upcoming-matches__analysis-list li,
    .page-expert-predictions-upcoming-matches__methodology-list li,
    .page-expert-predictions-upcoming-matches__responsible-list li {
        font-size: 1em;
        padding: 12px 15px 12px 35px;
    }

    .page-expert-predictions-upcoming-matches__analysis-list li::before,
    .page-expert-predictions-upcoming-matches__methodology-list li::before,
    .page-expert-predictions-upcoming-matches__responsible-list li::before {
        font-size: 1.2em;
        left: 10px;
    }

    .page-expert-predictions-upcoming-matches__cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-upcoming-matches__hero-title {
        font-size: 2em;
    }

    .page-expert-predictions-upcoming-matches__hero-subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-upcoming-matches__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-upcoming-matches__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-expert-predictions-upcoming-matches__match-card,
    .page-expert-predictions-upcoming-matches__cta-item {
        padding: 20px;
    }
}