/* style/live-scores-football-matches.css */
.page-live-scores-football-matches {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-live-scores-football-matches__hero {
    background: linear-gradient(135deg, #1A2E4E, #3a5c8e);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-live-scores-football-matches__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill="%23FFD700" d="M30 40h40v20H30z" opacity="0.1"/%3E%3C/svg%3E');
    background-size: 50px;
    opacity: 0.1;
    z-index: 0;
}

.page-live-scores-football-matches__hero .page-live-scores-football-matches__container {
    position: relative;
    z-index: 1;
}

.page-live-scores-football-matches__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-live-scores-football-matches__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Buttons */
.page-live-scores-football-matches__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-live-scores-football-matches__btn--primary {
    background-color: #FFD700;
    color: #1A2E4E;
}

.page-live-scores-football-matches__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-live-scores-football-matches__btn--secondary {
    background-color: #1A2E4E;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-live-scores-football-matches__btn--secondary:hover {
    background-color: #0d1e3a;
    transform: translateY(-2px);
}

.page-live-scores-football-matches__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Sections */
.page-live-scores-football-matches__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-live-scores-football-matches__section:nth-child(even) {
    background-color: #f0f2f5;
}

.page-live-scores-football-matches__section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-live-scores-football-matches__introduction p,
.page-live-scores-football-matches__why-ok365 p,
.page-live-scores-football-matches__how-to-use p,
.page-live-scores-football-matches__betting-opportunities p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #4a4a4a;
    text-align: justify;
}

/* Images */
.page-live-scores-football-matches__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-live-scores-football-matches__image--fullwidth {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
}

/* Feature Grid */
.page-live-scores-football-matches__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-scores-football-matches__feature-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-scores-football-matches__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-live-scores-football-matches__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-live-scores-football-matches__feature-title {
    font-size: 1.5em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-live-scores-football-matches__feature-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

/* Lists */
.page-live-scores-football-matches__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-live-scores-football-matches__list li {
    background-color: #f0f2f5;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 4px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-live-scores-football-matches__steps-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-live-scores-football-matches__steps-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.page-live-scores-football-matches__steps-list li strong {
    color: #1A2E4E;
}

/* Call to Action Blocks */
.page-live-scores-football-matches__cta-block {
    background-color: #1A2E4E;
    color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-live-scores-football-matches__cta-block--large {
    padding: 60px;
    margin-top: 60px;
    background: linear-gradient(45deg, #1A2E4E, #3a5c8e);
}

.page-live-scores-football-matches__cta-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-live-scores-football-matches__cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-live-scores-football-matches__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-live-scores-football-matches__faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-scores-football-matches__faq-question {
    font-size: 1.3em;
    color: #1A2E4E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-live-scores-football-matches__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-live-scores-football-matches__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 15px;
    display: none;
}

/* Link button style */
.page-live-scores-football-matches__link-button {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live-scores-football-matches__link-button:hover {
    color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-live-scores-football-matches__title {
        font-size: 2.8em;
    }
    .page-live-scores-football-matches__subtitle {
        font-size: 1.1em;
    }
    .page-live-scores-football-matches__section-title {
        font-size: 2em;
    }
    .page-live-scores-football-matches__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-live-scores-football-matches__image--fullwidth {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-live-scores-football-matches__hero {
        padding: 80px 0;
    }
    .page-live-scores-football-matches__title {
        font-size: 2.2em;
    }
    .page-live-scores-football-matches__subtitle {
        font-size: 1em;
    }
    .page-live-scores-football-matches__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-scores-football-matches__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-live-scores-football-matches__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-live-scores-football-matches__section {
        padding: 40px 0;
    }
    .page-live-scores-football-matches__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-live-scores-football-matches__cta-block {
        padding: 30px;
    }
    .page-live-scores-football-matches__cta-block--large {
        padding: 40px;
    }
    .page-live-scores-football-matches__cta-title {
        font-size: 1.7em;
    }
}

@media (max-width: 480px) {
    .page-live-scores-football-matches__container {
        padding: 0 15px;
    }
    .page-live-scores-football-matches__title {
        font-size: 1.8em;
    }
    .page-live-scores-football-matches__subtitle {
        font-size: 0.9em;
    }
    .page-live-scores-football-matches__btn {
        width: 100%;
        margin: 0;
    }
    .page-live-scores-football-matches__btn--secondary {
        margin-top: 10px;
    }
    .page-live-scores-football-matches__section-title {
        font-size: 1.5em;
    }
    .page-live-scores-football-matches__feature-item {
        padding: 20px;
    }
    .page-live-scores-football-matches__faq-question {
        font-size: 1.1em;
    }
}