/* style/m88-expert-predictions-football.css */

/* General Styles for the Page */
.page-m88-expert-predictions-football {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931;
    line-height: 1.6;
}

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

.page-m88-expert-predictions-football__section {
    padding: 80px 0;
    text-align: center;
}

.page-m88-expert-predictions-football__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-m88-expert-predictions-football__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-m88-expert-predictions-football__section-subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-m88-expert-predictions-football__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-m88-expert-predictions-football__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

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

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

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

.page-m88-expert-predictions-football__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Hero Section */
.page-m88-expert-predictions-football__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-m88-expert-predictions-football__hero-section .page-m88-expert-predictions-football__container {
    position: relative;
    z-index: 1;
}

.page-m88-expert-predictions-football__hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-m88-expert-predictions-football__hero-description {
    font-size: 1.4em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-m88-expert-predictions-football__hero-cta-group {
    margin-top: 30px;
}

/* About Predictions Section */
.page-m88-expert-predictions-football__about-predictions {
    background-color: #122340;
    text-align: left;
}

.page-m88-expert-predictions-football__about-predictions .page-m88-expert-predictions-football__section-title {
    text-align: center;
}

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

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

.page-m88-expert-predictions-football__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

/* How It Works Section */
.page-m88-expert-predictions-football__how-it-works {
    background-color: #0A1931;
}

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

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

.page-m88-expert-predictions-football__step-item:hover {
    transform: translateY(-10px);
}

.page-m88-expert-predictions-football__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-m88-expert-predictions-football__step-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-m88-expert-predictions-football__step-item p {
    color: #e0e0e0;
}

.page-m88-expert-predictions-football__cta-center {
    margin-top: 50px;
}

/* Leagues Section */
.page-m88-expert-predictions-football__leagues {
    background-color: #122340;
}

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

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

.page-m88-expert-predictions-football__league-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-m88-expert-predictions-football__league-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(20%) brightness(120%);
}

.page-m88-expert-predictions-football__league-item h4 {
    font-size: 1.2em;
    color: #FFD700;
}

/* Betting Guide Section */
.page-m88-expert-predictions-football__betting-guide {
    background-color: #0A1931;
}

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

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

.page-m88-expert-predictions-football__guide-item:hover {
    transform: translateY(-10px);
}

.page-m88-expert-predictions-football__guide-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-m88-expert-predictions-football__guide-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-m88-expert-predictions-football__guide-item p {
    color: #e0e0e0;
}

/* Promotions Section */
.page-m88-expert-predictions-football__promotions {
    background-color: #122340;
    text-align: left;
}

.page-m88-expert-predictions-football__promotions .page-m88-expert-predictions-football__section-title {
    text-align: center;
}

.page-m88-expert-predictions-football__promotion-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: row-reverse; /* Image on left, text on right */
}

.page-m88-expert-predictions-football__promotions ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-m88-expert-predictions-football__promotions ul li {
    background-color: #0A1931;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-m88-expert-predictions-football__promotions ul li strong {
    color: #FFD700;
}

/* CTA Download Section */
.page-m88-expert-predictions-football__cta-download {
    background: linear-gradient(90deg, #0A1931 0%, #1a2a47 100%);
    padding: 100px 0;
}

.page-m88-expert-predictions-football__cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-m88-expert-predictions-football__app-image {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-m88-expert-predictions-football__cta-download .page-m88-expert-predictions-football__text-content {
    flex: 2;
}

.page-m88-expert-predictions-football__cta-download .page-m88-expert-predictions-football__section-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-m88-expert-predictions-football__cta-download .page-m88-expert-predictions-football__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-m88-expert-predictions-football__cta-download p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-m88-expert-predictions-football__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Safety Commitment Section */
.page-m88-expert-predictions-football__safety-commitment {
    background-color: #0A1931;
}

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

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

.page-m88-expert-predictions-football__feature-item:hover {
    transform: translateY(-10px);
}

.page-m88-expert-predictions-football__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-m88-expert-predictions-football__feature-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-m88-expert-predictions-football__feature-item p {
    color: #e0e0e0;
}

/* Final CTA Section */
.page-m88-expert-predictions-football__final-cta {
    background: linear-gradient(45deg, #0A1931 0%, #34496b 100%);
    padding: 100px 0;
}

.page-m88-expert-predictions-football__final-cta .page-m88-expert-predictions-football__section-title {
    color: #FFD700;
}

.page-m88-expert-predictions-football__final-cta .page-m88-expert-predictions-football__section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-m88-expert-predictions-football__hero-title {
        font-size: 3em;
    }
    .page-m88-expert-predictions-football__hero-description {
        font-size: 1.2em;
    }
    .page-m88-expert-predictions-football__section-title {
        font-size: 2.2em;
    }
    .page-m88-expert-predictions-football__content-grid,
    .page-m88-expert-predictions-football__promotion-content,
    .page-m88-expert-predictions-football__cta-content {
        flex-direction: column;
        text-align: center;
    }
    .page-m88-expert-predictions-football__cta-download .page-m88-expert-predictions-football__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-m88-expert-predictions-football__app-image {
        max-width: 300px;
    }
    .page-m88-expert-predictions-football__cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-m88-expert-predictions-football__hero-title {
        font-size: 2.5em;
    }
    .page-m88-expert-predictions-football__section-title {
        font-size: 1.8em;
    }
    .page-m88-expert-predictions-football__section {
        padding: 60px 0;
    }
    .page-m88-expert-predictions-football__steps-grid,
    .page-m88-expert-predictions-football__league-grid,
    .page-m88-expert-predictions-football__guide-steps,
    .page-m88-expert-predictions-football__safety-features {
        grid-template-columns: 1fr;
    }
    .page-m88-expert-predictions-football__text-content h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-m88-expert-predictions-football__hero-title {
        font-size: 2em;
    }
    .page-m88-expert-predictions-football__hero-description {
        font-size: 1em;
    }
    .page-m88-expert-predictions-football__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-m88-expert-predictions-football__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-m88-expert-predictions-football__section-title {
        font-size: 1.5em;
    }
    .page-m88-expert-predictions-football__section-subtitle {
        font-size: 1em;
    }
    .page-m88-expert-predictions-football__league-logo {
        width: 80px;
    }
}