/* style/live-scores-match-schedule.css */
.page-live-scores-match-schedule {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #F8F8F8;
}

.page-live-scores-match-schedule__hero {
    background: linear-gradient(135deg, #1A2E4E 0%, #3a5b8d 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-live-scores-match-schedule__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-live-scores-match-schedule__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-live-scores-match-schedule__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700;
}

.page-live-scores-match-schedule__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-live-scores-match-schedule__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E4E;
    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;
    border: none;
    cursor: pointer;
}

.page-live-scores-match-schedule__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-live-scores-match-schedule__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-live-scores-match-schedule__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-live-scores-match-schedule__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
}

.page-live-scores-match-schedule__section:nth-of-type(even) {
    background-color: #F8F8F8;
}

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

.page-live-scores-match-schedule__section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-live-scores-match-schedule__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-live-scores-match-schedule__introduction p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-live-scores-match-schedule__introduction p strong {
    color: #1A2E4E;
}

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

.page-live-scores-match-schedule__match-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-live-scores-match-schedule__match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-live-scores-match-schedule__match-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-live-scores-match-schedule__match-card h3 {
    font-size: 1.4em;
    color: #1A2E4E;
    padding: 20px 20px 10px;
    margin: 0;
    font-weight: bold;
}

.page-live-scores-match-schedule__match-info {
    font-size: 0.95em;
    color: #666;
    padding: 0 20px;
    margin-bottom: 10px;
}

.page-live-scores-match-schedule__match-description {
    font-size: 1em;
    color: #777;
    padding: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.page-live-scores-match-schedule__card-button {
    display: block;
    background-color: #1A2E4E;
    color: #FFD700;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border-radius: 0 0 12px 12px;
    transition: background-color 0.3s ease;
}

.page-live-scores-match-schedule__card-button:hover {
    background-color: #0d1e3a;
    color: #FFFFFF;
}

.page-live-scores-match-schedule__view-all {
    text-align: center;
    margin-top: 50px;
}

.page-live-scores-match-schedule__view-all-button {
    background-color: #FFD700;
    color: #1A2E4E;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live-scores-match-schedule__view-all-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-live-scores-match-schedule__feature-item {
    background-color: #F0F4F8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-live-scores-match-schedule__feature-item:hover {
    background-color: #E2EAF2;
}

.page-live-scores-match-schedule__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-live-scores-match-schedule__feature-item h3 {
    font-size: 1.5em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-live-scores-match-schedule__feature-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

.page-live-scores-match-schedule__cta-row {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-live-scores-match-schedule__cta-button--secondary {
    background-color: #1A2E4E;
    color: #FFD700;
}

.page-live-scores-match-schedule__cta-button--secondary:hover {
    background-color: #0d1e3a;
    color: #FFFFFF;
}

.page-live-scores-match-schedule__betting-guide ol {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
    margin-top: 30px;
}

.page-live-scores-match-schedule__betting-guide ol li {
    counter-increment: guide-counter;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    color: #444;
}

.page-live-scores-match-schedule__betting-guide ol li::before {
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1A2E4E;
    color: #FFD700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-live-scores-match-schedule__betting-guide ol li a {
    color: #1A2E4E;
    text-decoration: underline;
    font-weight: bold;
}

.page-live-scores-match-schedule__betting-guide ol li a:hover {
    color: #FFD700;
}

.page-live-scores-match-schedule__mobile-app {
    background-color: #1A2E4E;
    color: #FFFFFF;
    padding: 80px 0;
}

.page-live-scores-match-schedule__mobile-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-live-scores-match-schedule__mobile-app-text {
    flex: 1;
    min-width: 300px;
}

.page-live-scores-match-schedule__mobile-app-text .page-live-scores-match-schedule__section-title {
    color: #FFD700;
    text-align: left;
    margin-bottom: 25px;
}

.page-live-scores-match-schedule__mobile-app-text .page-live-scores-match-schedule__section-title::after {
    margin-left: 0;
}

.page-live-scores-match-schedule__mobile-app-text p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-live-scores-match-schedule__mobile-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-live-scores-match-schedule__mobile-features li {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #E0E0E0;
}

.page-live-scores-match-schedule__mobile-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-live-scores-match-schedule__mobile-app-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-live-scores-match-schedule__mobile-app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live-scores-match-schedule__responsible-betting p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-live-scores-match-schedule__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-live-scores-match-schedule__responsible-list li {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: #444;
}

.page-live-scores-match-schedule__responsible-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-live-scores-match-schedule__faq-item {
    background-color: #F0F4F8;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-live-scores-match-schedule__faq-item h3 {
    font-size: 1.3em;
    color: #1A2E4E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-scores-match-schedule__faq-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #666;
}

.page-live-scores-match-schedule__faq-item p a {
    color: #1A2E4E;
    text-decoration: underline;
}

.page-live-scores-match-schedule__faq-item p a:hover {
    color: #FFD700;
}

.page-live-scores-match-schedule__final-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #1A2E4E;
    color: #FFFFFF;
}

.page-live-scores-match-schedule__final-cta .page-live-scores-match-schedule__section-title {
    color: #FFD700;
}

.page-live-scores-match-schedule__final-cta .page-live-scores-match-schedule__section-title::after {
    background-color: #FFD700;
}

.page-live-scores-match-schedule__final-cta p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-live-scores-match-schedule__final-cta p a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-live-scores-match-schedule__final-cta p a:hover {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-scores-match-schedule__title {
        font-size: 2.8em;
    }
    .page-live-scores-match-schedule__section-title {
        font-size: 2em;
    }
    .page-live-scores-match-schedule__match-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-live-scores-match-schedule__mobile-app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-live-scores-match-schedule__mobile-app-text .page-live-scores-match-schedule__section-title {
        text-align: center;
    }
    .page-live-scores-match-schedule__mobile-app-text .page-live-scores-match-schedule__section-title::after {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .page-live-scores-match-schedule__hero {
        padding: 60px 15px;
    }
    .page-live-scores-match-schedule__title {
        font-size: 2.2em;
    }
    .page-live-scores-match-schedule__subtitle {
        font-size: 1.1em;
    }
    .page-live-scores-match-schedule__section {
        padding: 40px 0;
    }
    .page-live-scores-match-schedule__section-title {
        font-size: 1.8em;
    }
    .page-live-scores-match-schedule__introduction p,
    .page-live-scores-match-schedule__betting-guide ol li,
    .page-live-scores-match-schedule__mobile-app-text p,
    .page-live-scores-match-schedule__responsible-betting p,
    .page-live-scores-match-schedule__faq-item p {
        font-size: 1em;
    }
    .page-live-scores-match-schedule__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-scores-match-schedule__card-button {
        font-size: 0.95em;
    }
    .page-live-scores-match-schedule__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-live-scores-match-schedule__cta-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-live-scores-match-schedule__title {
        font-size: 1.8em;
    }
    .page-live-scores-match-schedule__subtitle {
        font-size: 0.95em;
    }
    .page-live-scores-match-schedule__section-title {
        font-size: 1.5em;
    }
    .page-live-scores-match-schedule__match-grid {
        grid-template-columns: 1fr;
    }
    .page-live-scores-match-schedule__betting-guide ol li {
        padding-left: 40px;
    }
    .page-live-scores-match-schedule__betting-guide ol li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}