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

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

.page-live-scores__hero-section {
    background: linear-gradient(135deg, #1A2E4E, #3A5F8C);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-live-scores__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-live-scores__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-live-scores__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-live-scores__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-live-scores__btn--primary {
    background-color: #FFD700;
    color: #1A2E4E;
}

.page-live-scores__btn--primary:hover {
    background-color: #E6C200;
    color: #1A2E4E;
}

.page-live-scores__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-live-scores__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E4E;
}

.page-live-scores__section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-live-scores__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__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-live-scores__features-section,
.page-live-scores__sports-section,
.page-live-scores__guide-section,
.page-live-scores__benefits-section,
.page-live-scores__responsibility-section,
.page-live-scores__related-pages {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-live-scores__features-section:nth-of-type(odd),
.page-live-scores__guide-section:nth-of-type(odd),
.page-live-scores__benefits-section:nth-of-type(odd),
.page-live-scores__related-pages:nth-of-type(odd) {
    background-color: #fff;
}

.page-live-scores__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live-scores__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-live-scores__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-live-scores__feature-title {
    font-size: 1.6em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-live-scores__feature-text {
    color: #666;
    font-size: 1em;
}

.page-live-scores__sport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-live-scores__sport-item {
    background-color: #1A2E4E;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-live-scores__sport-item:hover {
    transform: translateY(-10px);
}

.page-live-scores__sport-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-live-scores__sport-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 15px 10px 15px;
}

.page-live-scores__sport-text {
    color: #E0E0E0;
    padding: 0 15px 20px 15px;
    font-size: 0.95em;
}

.page-live-scores__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-bottom: 20px;
    background-color: #FFD700;
    color: #1A2E4E;
}

.page-live-scores__btn--small:hover {
    background-color: #E6C200;
    color: #1A2E4E;
}

.page-live-scores__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-live-scores__step-item {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #FFD700;
}

.page-live-scores__step-number {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-live-scores__step-title {
    font-size: 1.8em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-live-scores__step-text {
    color: #666;
    font-size: 1em;
}

.page-live-scores__step-text a {
    color: #1A2E4E;
    text-decoration: underline;
}

.page-live-scores__step-text a:hover {
    color: #FFD700;
}

.page-live-scores__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-live-scores__benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-live-scores__benefits-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    color: #333;
    font-size: 1.1em;
}

.page-live-scores__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-live-scores__benefits-list li strong {
    color: #1A2E4E;
}

.page-live-scores__benefits-list li a {
    color: #1A2E4E;
    font-weight: bold;
    text-decoration: underline;
}

.page-live-scores__benefits-list li a:hover {
    color: #FFD700;
}

.page-live-scores__responsibility-section {
    background-color: #1A2E4E;
    color: #E0E0E0;
    padding: 60px 0;
}

.page-live-scores__responsibility-section .page-live-scores__section-title {
    color: #FFD700;
}

.page-live-scores__responsibility-section .page-live-scores__section-title::after {
    background-color: #FFD700;
}

.page-live-scores__responsibility-section .page-live-scores__section-description {
    color: #E0E0E0;
}

.page-live-scores__detail-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-scores__detail-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1A2E4E;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-live-scores__detail-card:hover {
    border-left-color: #FFD700;
    transform: translateY(-5px);
}

.page-live-scores__detail-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-live-scores__detail-title a {
    color: #1A2E4E;
    text-decoration: none;
    font-weight: bold;
}

.page-live-scores__detail-title a:hover {
    color: #FFD700;
}

.page-live-scores__detail-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-live-scores .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

    .page-live-scores__hero-description {
        font-size: 1em;
    }

    .page-live-scores__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-live-scores__btn {
        width: 100%;
    }

    .page-live-scores__section-title {
        font-size: 2em;
    }

    .page-live-scores__section-description {
        font-size: 0.95em;
    }

    .page-live-scores__feature-grid,
    .page-live-scores__sport-grid,
    .page-live-scores__guide-steps,
    .page-live-scores__detail-pages-grid {
        grid-template-columns: 1fr;
    }

    .page-live-scores__feature-item,
    .page-live-scores__sport-item,
    .page-live-scores__step-item,
    .page-live-scores__detail-card {
        padding: 20px;
    }

    .page-live-scores__sport-image {
        height: 150px;
    }

    .page-live-scores__sport-title {
        font-size: 1.5em;
    }

    .page-live-scores__list-icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }

    .page-live-scores__benefits-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-live-scores__hero-title {
        font-size: 2em;
    }

    .page-live-scores__hero-description {
        font-size: 0.9em;
    }

    .page-live-scores__section-title {
        font-size: 1.8em;
    }

    .page-live-scores__section-description {
        font-size: 0.9em;
    }

    .page-live-scores__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-live-scores__feature-title,
    .page-live-scores__step-title,
    .page-live-scores__detail-title {
        font-size: 1.3em;
    }

    .page-live-scores__step-number {
        font-size: 2em;
    }
}