/* style/today-matches-predictions-football.css */

/* Variables */
:root {
    --page-today-matches-predictions-football-primary-color: #003366;
    --page-today-matches-predictions-football-accent-color: #FFCC00;
    --page-today-matches-predictions-football-text-light: #FFFFFF;
    --page-today-matches-predictions-football-text-dark: #001a33; /* Darker shade of primary for contrast */
    --page-today-matches-predictions-football-background-light: #f4f7f6;
    --page-today-matches-predictions-football-border-color: #e0e0e0;
}

.page-today-matches-predictions-football {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--page-today-matches-predictions-football-text-dark);
    background-color: var(--page-today-matches-predictions-football-background-light);
}

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

/* Hero Section */
.page-today-matches-predictions-football__hero-section {
    background: linear-gradient(135deg, var(--page-today-matches-predictions-football-primary-color), #004d99);
    color: var(--page-today-matches-predictions-football-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-today-matches-predictions-football__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:football,stadium_abstract]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-today-matches-predictions-football__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-today-matches-predictions-football-accent-color);
    position: relative;
    z-index: 1;
}

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

.page-today-matches-predictions-football__cta-button {
    display: inline-block;
    background-color: var(--page-today-matches-predictions-football-accent-color);
    color: var(--page-today-matches-predictions-football-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-today-matches-predictions-football__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-today-matches-predictions-football__cta-button--dark {
    background-color: var(--page-today-matches-predictions-football-primary-color);
    color: var(--page-today-matches-predictions-football-accent-color);
    border: 2px solid var(--page-today-matches-predictions-football-accent-color);
}

.page-today-matches-predictions-football__cta-button--dark:hover {
    background-color: #001a33; /* Even darker blue */
    border-color: #e6b800;
}

/* Content Sections */
.page-today-matches-predictions-football__content-section {
    padding: 60px 0;
    text-align: left;
}

.page-today-matches-predictions-football__content-section:nth-of-type(even) {
    background-color: #eef1f3;
}

.page-today-matches-predictions-football__section-title {
    font-size: 2.5em;
    color: var(--page-today-matches-predictions-football-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-today-matches-predictions-football__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-today-matches-predictions-football-accent-color);
    border-radius: 2px;
}

.page-today-matches-predictions-football h3 {
    font-size: 1.8em;
    color: var(--page-today-matches-predictions-football-primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-today-matches-predictions-football p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-today-matches-predictions-football ul,
.page-today-matches-predictions-football ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-today-matches-predictions-football ul li,
.page-today-matches-predictions-football ol li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-today-matches-predictions-football__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

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

.page-today-matches-predictions-football__inline-cta {
    color: var(--page-today-matches-predictions-football-primary-color);
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-today-matches-predictions-football__inline-cta:hover {
    color: var(--page-today-matches-predictions-football-accent-color);
}

/* Grid for Leagues */
.page-today-matches-predictions-football__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-today-matches-predictions-football__grid-item {
    background-color: var(--page-today-matches-predictions-football-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-today-matches-predictions-football__grid-item:hover {
    transform: translateY(-5px);
}

.page-today-matches-predictions-football__grid-item h3 {
    color: var(--page-today-matches-predictions-football-accent-color);
    margin-top: 0;
    font-size: 1.5em;
}

.page-today-matches-predictions-football__grid-item ul {
    padding-left: 20px;
    list-style: disc;
}

/* Promo Background */
.page-today-matches-predictions-football .good88-promo-bg {
    background-color: var(--page-today-matches-predictions-football-primary-color);
    color: var(--page-today-matches-predictions-football-text-light);
}

.page-today-matches-predictions-football .good88-promo-bg .page-today-matches-predictions-football__section-title {
    color: var(--page-today-matches-predictions-football-accent-color);
}

.page-today-matches-predictions-football .good88-promo-bg .page-today-matches-predictions-football__section-title::after {
    background-color: var(--page-today-matches-predictions-football-text-light);
}

.page-today-matches-predictions-football .good88-promo-bg h3 {
    color: var(--page-today-matches-predictions-football-accent-color);
}

.page-today-matches-predictions-football .good88-promo-bg ul li {
    color: var(--page-today-matches-predictions-football-text-light);
}

/* FAQ Section */
.page-today-matches-predictions-football__faq-item {
    background-color: var(--page-today-matches-predictions-football-text-light);
    border: 1px solid var(--page-today-matches-predictions-football-border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-today-matches-predictions-football__faq-item h3 {
    margin-top: 0;
    color: var(--page-today-matches-predictions-football-primary-color);
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-today-matches-predictions-football__faq-item p {
    margin-top: 15px;
    font-size: 1em;
    color: #444;
}

/* App Download Section */
.page-today-matches-predictions-football__app-image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Bottom CTA */
.page-today-matches-predictions-football__cta-bottom {
    background-color: var(--page-today-matches-predictions-football-accent-color);
    color: var(--page-today-matches-predictions-football-primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-today-matches-predictions-football__cta-bottom .page-today-matches-predictions-football__section-title {
    color: var(--page-today-matches-predictions-football-primary-color);
}

.page-today-matches-predictions-football__cta-bottom .page-today-matches-predictions-football__section-title::after {
    background-color: var(--page-today-matches-predictions-football-primary-color);
}

.page-today-matches-predictions-football__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--page-today-matches-predictions-football-text-dark);
}

.page-today-matches-predictions-football__cta-bottom .page-today-matches-predictions-football__cta-button {
    background-color: var(--page-today-matches-predictions-football-primary-color);
    color: var(--page-today-matches-predictions-football-accent-color);
}

.page-today-matches-predictions-football__cta-bottom .page-today-matches-predictions-football__cta-button:hover {
    background-color: #001a33;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-today-matches-predictions-football__hero-title {
        font-size: 2.5em;
    }

    .page-today-matches-predictions-football__hero-description {
        font-size: 1em;
    }

    .page-today-matches-predictions-football__section-title {
        font-size: 2em;
    }

    .page-today-matches-predictions-football h3 {
        font-size: 1.5em;
    }

    .page-today-matches-predictions-football__grid {
        grid-template-columns: 1fr;
    }

    .page-today-matches-predictions-football__content-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-today-matches-predictions-football__hero-title {
        font-size: 2em;
    }

    .page-today-matches-predictions-football__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-today-matches-predictions-football__section-title {
        font-size: 1.8em;
    }

    .page-today-matches-predictions-football p,
    .page-today-matches-predictions-football ul li,
    .page-today-matches-predictions-football ol li {
        font-size: 0.95em;
    }
}