/* style/live-match-analysis-football-hot-matches.css */

/* Variables */
:root {
    --primary-color: #004AAD;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #003380;
    --border-color: #e0e0e0;
}

.page-live-match-analysis-football-hot-matches {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-live-match-analysis-football-hot-matches .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-live-match-analysis-football-hot-matches__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-live-match-analysis-football-hot-matches__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-live-match-analysis-football-hot-matches__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-live-match-analysis-football-hot-matches__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    font-weight: 700;
}

.page-live-match-analysis-football-hot-matches__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-live-match-analysis-football-hot-matches__hero-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-match-analysis-football-hot-matches__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-live-match-analysis-football-hot-matches__hero-image-wrapper {
    max-width: 500px;
}

.page-live-match-analysis-football-hot-matches__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-live-match-analysis-football-hot-matches__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-live-match-analysis-football-hot-matches__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-live-match-analysis-football-hot-matches__section-description {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-dark);
}

/* About Analysis Section */
.page-live-match-analysis-football-hot-matches__about-analysis {
    padding: 60px 0;
    background-color: var(--background-light);
}

/* Features Section */
.page-live-match-analysis-football-hot-matches__features {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__features .page-live-match-analysis-football-hot-matches__section-title {
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__features .page-live-match-analysis-football-hot-matches__section-title::after {
    background-color: var(--secondary-color);
}

.page-live-match-analysis-football-hot-matches__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-match-analysis-football-hot-matches__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live-match-analysis-football-hot-matches__feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-live-match-analysis-football-hot-matches__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-live-match-analysis-football-hot-matches__feature-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-live-match-analysis-football-hot-matches__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

/* How It Works Section */
.page-live-match-analysis-football-hot-matches__how-it-works {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-live-match-analysis-football-hot-matches__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-match-analysis-football-hot-matches__step-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 60px;
}

.page-live-match-analysis-football-hot-matches__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live-match-analysis-football-hot-matches__step-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-live-match-analysis-football-hot-matches__step-text {
    font-size: 0.95em;
    color: var(--text-dark);
}

/* Tips Section */
.page-live-match-analysis-football-hot-matches__tips {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__tips .page-live-match-analysis-football-hot-matches__section-title {
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__tips .page-live-match-analysis-football-hot-matches__section-title::after {
    background-color: var(--secondary-color);
}

.page-live-match-analysis-football-hot-matches__tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-match-analysis-football-hot-matches__tip-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-live-match-analysis-football-hot-matches__tip-item:hover {
    transform: translateY(-10px);
}

.page-live-match-analysis-football-hot-matches__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-live-match-analysis-football-hot-matches__tip-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-live-match-analysis-football-hot-matches__tip-text {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* Popular Leagues Section */
.page-live-match-analysis-football-hot-matches__popular-leagues {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-live-match-analysis-football-hot-matches__league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.page-live-match-analysis-football-hot-matches__league-item {
    background-color: var(--text-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-live-match-analysis-football-hot-matches__league-item:hover {
    transform: translateY(-5px);
}

.page-live-match-analysis-football-hot-matches__league-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.page-live-match-analysis-football-hot-matches__league-name {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
}

/* CTA Section */
.page-live-match-analysis-football-hot-matches__cta {
    background: linear-gradient(45deg, var(--primary-color) 0%, #002266 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-live-match-analysis-football-hot-matches__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-live-match-analysis-football-hot-matches__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-live-match-analysis-football-hot-matches__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-match-analysis-football-hot-matches__cta-btn.primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-live-match-analysis-football-hot-matches__cta-btn.primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-live-match-analysis-football-hot-matches__cta-btn.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-live-match-analysis-football-hot-matches__cta-btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-live-match-analysis-football-hot-matches__cta-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-live-match-analysis-football-hot-matches__faq {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-live-match-analysis-football-hot-matches__faq-item {
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-match-analysis-football-hot-matches__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-live-match-analysis-football-hot-matches__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-live-match-analysis-football-hot-matches__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-live-match-analysis-football-hot-matches__faq-answer {
    font-size: 1em;
    color: var(--text-dark);
    display: none;
    padding-top: 10px;
}

.page-live-match-analysis-football-hot-matches__faq-answer.active {
    display: block;
}

/* Contact Section */
.page-live-match-analysis-football-hot-matches__contact {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-live-match-analysis-football-hot-matches__contact .page-live-match-analysis-football-hot-matches__section-title {
    color: var(--text-light);
}

.page-live-match-analysis-football-hot-matches__contact .page-live-match-analysis-football-hot-matches__section-title::after {
    background-color: var(--secondary-color);
}

.page-live-match-analysis-football-hot-matches__contact-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-match-analysis-football-hot-matches__contact-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-match-analysis-football-hot-matches__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-live-match-analysis-football-hot-matches__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-live-match-analysis-football-hot-matches__hero-title {
        font-size: 2.5em;
    }

    .page-live-match-analysis-football-hot-matches__hero-subtitle {
        font-size: 1.1em;
    }

    .page-live-match-analysis-football-hot-matches__hero-image-wrapper {
        margin-top: 30px;
    }

    .page-live-match-analysis-football-hot-matches__section-title {
        font-size: 2em;
    }

    .page-live-match-analysis-football-hot-matches__feature-grid, 
    .page-live-match-analysis-football-hot-matches__steps, 
    .page-live-match-analysis-football-hot-matches__tip-grid, 
    .page-live-match-analysis-football-hot-matches__league-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .page-live-match-analysis-football-hot-matches__cta-title {
        font-size: 2.2em;
    }

    .page-live-match-analysis-football-hot-matches__cta-text {
        font-size: 1em;
    }

    .page-live-match-analysis-football-hot-matches__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-live-match-analysis-football-hot-matches__cta-btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-live-match-analysis-football-hot-matches__hero-title {
        font-size: 2em;
    }

    .page-live-match-analysis-football-hot-matches__section-title {
        font-size: 1.8em;
    }

    .page-live-match-analysis-football-hot-matches__section-description {
        font-size: 1em;
    }

    .page-live-match-analysis-football-hot-matches__feature-grid, 
    .page-live-match-analysis-football-hot-matches__steps, 
    .page-live-match-analysis-football-hot-matches__tip-grid, 
    .page-live-match-analysis-football-hot-matches__league-grid {
        grid-template-columns: 1fr;
    }

    .page-live-match-analysis-football-hot-matches__cta-title {
        font-size: 1.8em;
    }

    .page-live-match-analysis-football-hot-matches__cta-text {
        font-size: 0.95em;
    }

    .page-live-match-analysis-football-hot-matches__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-live-match-analysis-football-hot-matches__hero-title {
        font-size: 1.8em;
    }

    .page-live-match-analysis-football-hot-matches__hero-subtitle {
        font-size: 0.9em;
    }

    .page-live-match-analysis-football-hot-matches__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-live-match-analysis-football-hot-matches__section-title {
        font-size: 1.6em;
    }

    .page-live-match-analysis-football-hot-matches__feature-title, 
    .page-live-match-analysis-football-hot-matches__step-title, 
    .page-live-match-analysis-football-hot-matches__tip-title {
        font-size: 1.2em;
    }

    .page-live-match-analysis-football-hot-matches__cta-title {
        font-size: 1.6em;
    }

    .page-live-match-analysis-football-hot-matches__cta-btn {
        width: 90%;
    }
}