/* style/expert-predictions-football.css */
.page-expert-predictions-football {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-expert-predictions-football__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-football__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:football_field,stadium,abstract]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-expert-predictions-football__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 2;
}

.page-expert-predictions-football__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.page-expert-predictions-football__hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.page-expert-predictions-football__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-expert-predictions-football__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-expert-predictions-football__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-expert-predictions-football__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-expert-predictions-football__btn--dark {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #0A2463;
}

.page-expert-predictions-football__btn--dark:hover {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.page-expert-predictions-football__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-expert-predictions-football__section {
    padding: 80px 0;
}

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

.page-expert-predictions-football__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-expert-predictions-football__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-football__text-content {
    flex: 1;
}

.page-expert-predictions-football__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-expert-predictions-football__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-expert-predictions-football__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-football__section--dark-bg {
    background-color: #0A2463;
    color: #fff;
}

.page-expert-predictions-football__section--dark-bg .page-expert-predictions-football__section-title,
.page-expert-predictions-football__section--dark-bg .page-expert-predictions-football__section-subtitle {
    color: #FFD700;
}

.page-expert-predictions-football__section--dark-bg .page-expert-predictions-football__text-content p {
    color: #eee;
}

.page-expert-predictions-football__league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-expert-predictions-football__league-item {
    background-color: #1a3c7c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-expert-predictions-football__league-item:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-football__league-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-expert-predictions-football__league-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-expert-predictions-football__league-item p {
    color: #ccc;
    font-size: 0.95em;
}

.page-expert-predictions-football__analysis-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-expert-predictions-football__analysis-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #0A2463;
}

.page-expert-predictions-football__analysis-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #0A2463;
    filter: invert(10%) sepia(80%) saturate(2000%) hue-rotate(200deg) brightness(80%); /* Example filter to tint icon */
}

.page-expert-predictions-football__analysis-item h3 {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-expert-predictions-football__analysis-item p {
    color: #666;
    font-size: 1em;
}

.page-expert-predictions-football__section--gold-bg {
    background-color: #FFD700;
    color: #0A2463;
}

.page-expert-predictions-football__section--gold-bg .page-expert-predictions-football__section-title,
.page-expert-predictions-football__section--gold-bg .page-expert-predictions-football__section-subtitle {
    color: #0A2463;
}

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

.page-expert-predictions-football__tip-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0A2463;
}

.page-expert-predictions-football__tip-item h3 {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-expert-predictions-football__tip-item p {
    color: #444;
    font-size: 1em;
}

.page-expert-predictions-football__cta-center {
    text-align: center;
}

.page-expert-predictions-football__inline-ctas {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-expert-predictions-football__faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.page-expert-predictions-football__faq-item {
    margin-bottom: 15px;
    border: 1px solid #1a3c7c;
    border-radius: 8px;
    overflow: hidden;
}

.page-expert-predictions-football__faq-question {
    background-color: #1a3c7c;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-expert-predictions-football__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-expert-predictions-football__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-expert-predictions-football__faq-question:hover {
    background-color: #2a4d8d;
}

.page-expert-predictions-football__faq-answer {
    background-color: #0A2463;
    color: #eee;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-expert-predictions-football__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px;
}

.page-expert-predictions-football__faq-answer p {
    margin: 0;
    color: #eee;
}

.page-expert-predictions-football__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-expert-predictions-football__cta-section {
    background: linear-gradient(45deg, #0A2463, #1a3c7c);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

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

.page-expert-predictions-football__cta-description {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-football__hero-title {
        font-size: 2.8em;
    }
    .page-expert-predictions-football__hero-description {
        font-size: 1.1em;
    }
    .page-expert-predictions-football__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-football__content-grid {
        flex-direction: column;
    }
    .page-expert-predictions-football__content-grid--reverse {
        flex-direction: column;
    }
    .page-expert-predictions-football__league-grid,
    .page-expert-predictions-football__analysis-points,
    .page-expert-predictions-football__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-expert-predictions-football__hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-predictions-football__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-expert-predictions-football__inline-ctas {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-football__hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-football__hero-description {
        font-size: 1em;
    }
    .page-expert-predictions-football__section {
        padding: 60px 0;
    }
    .page-expert-predictions-football__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-football__section-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-football__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions-football__cta-title {
        font-size: 2.5em;
    }
    .page-expert-predictions-football__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-football__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-football__hero-description {
        font-size: 0.9em;
    }
    .page-expert-predictions-football__hero-ctas {
        flex-direction: column;
    }
    .page-expert-predictions-football__btn {
        width: 100%;
        padding: 10px 20px;
    }
    .page-expert-predictions-football__league-grid,
    .page-expert-predictions-football__analysis-points,
    .page-expert-predictions-football__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-football__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-expert-predictions-football__faq-answer {
        padding: 10px 20px;
    }
    .page-expert-predictions-football__cta-title {
        font-size: 2em;
    }
    .page-expert-predictions-football__cta-description {
        font-size: 1em;
    }
    .page-expert-predictions-football__inline-ctas {
        flex-direction: column;
    }
}