/* style/match-schedule-today.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-color: #EA7C07;
    --background-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-match-schedule-today {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
}

.page-match-schedule-today__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-match-schedule-today__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #007bff 100%); /* Slightly darker blue for hero background */
    color: var(--text-light);
    overflow: hidden;
}

.page-match-schedule-today__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-match-schedule-today__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-match-schedule-today__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-match-schedule-today__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-match-schedule-today__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-match-schedule-today__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-match-schedule-today__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-match-schedule-today__cta-button:hover {
    background: darken(var(--login-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-match-schedule-today__cta-button--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content; /* Adjust width to content for centered block */
}

/* Section Titles and Descriptions */
.page-match-schedule-today__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-match-schedule-today__section-title--white {
    color: var(--text-light);
}

.page-match-schedule-today__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-match-schedule-today__section-description--white {
    color: rgba(255, 255, 255, 0.9);
}

/* Intro Section */
.page-match-schedule-today__intro-section {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-match-schedule-today__intro-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify;
}

/* Schedule Section */
.page-match-schedule-today__schedule-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-match-schedule-today__match-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-match-schedule-today__match-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.page-match-schedule-today__match-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.page-match-schedule-today__match-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-match-schedule-today__match-card p {
    margin-bottom: 8px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
}

.page-match-schedule-today__match-status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.page-match-schedule-today__match-status--live {
    background-color: #EA7C07; /* Login color for live status */
    color: var(--text-light);
}

.page-match-schedule-today__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--login-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-match-schedule-today__btn-primary:hover {
    background: darken(var(--login-color), 10%);
    transform: translateY(-2px);
}

.page-match-schedule-today__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-match-schedule-today__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.page-match-schedule-today__additional-info {
    margin-top: 30px;
    font-size: 1.05em;
    text-align: center;
}

.page-match-schedule-today__additional-info a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-match-schedule-today__additional-info a:hover {
    color: lighten(var(--secondary-color), 10%);
}

/* Analysis Section */
.page-match-schedule-today__analysis-section {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-match-schedule-today__analysis-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-match-schedule-today__analysis-text {
    flex: 2;
}

.page-match-schedule-today__analysis-subtitle {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-match-schedule-today__analysis-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.page-match-schedule-today__tips-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-match-schedule-today__tips-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-match-schedule-today__tips-list li strong {
    color: var(--primary-color);
}

.page-match-schedule-today__analysis-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-match-schedule-today__analysis-text a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Guide Section */
.page-match-schedule-today__guide-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-match-schedule-today__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-match-schedule-today__step-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-match-schedule-today__step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.page-match-schedule-today__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-match-schedule-today__step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.page-match-schedule-today__step-card a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-match-schedule-today__step-card a:hover {
    color: lighten(var(--secondary-color), 10%);
}

/* Promotions Section */
.page-match-schedule-today__promotions-section {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-match-schedule-today__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-match-schedule-today__promo-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-match-schedule-today__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-match-schedule-today__promo-title {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-match-schedule-today__promo-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FAQ Section */
.page-match-schedule-today__faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-match-schedule-today__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-match-schedule-today__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-match-schedule-today__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-match-schedule-today__faq-item.active .page-match-schedule-today__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-match-schedule-today__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-match-schedule-today__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-match-schedule-today__faq-question:active {
    background: #eeeeee;
}

.page-match-schedule-today__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-match-schedule-today__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-match-schedule-today__faq-item.active .page-match-schedule-today__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-match-schedule-today__faq-answer p {
    margin-bottom: 0;
    line-height: 1.6;
}

.page-match-schedule-today__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-match-schedule-today__faq-answer a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Related News Section */
.page-match-schedule-today__related-news-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-match-schedule-today__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-match-schedule-today__news-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-match-schedule-today__news-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.page-match-schedule-today__news-card img {
    width: 100%;
    height: 225px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-match-schedule-today__news-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-match-schedule-today__news-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-match-schedule-today__news-title a:hover {
    color: var(--secondary-color);
}

.page-match-schedule-today__news-excerpt {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.page-match-schedule-today__btn-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-match-schedule-today__btn-link:hover {
    color: lighten(var(--secondary-color), 10%);
    border-color: lighten(var(--secondary-color), 10%);
}

.page-match-schedule-today__view-all-news {
    text-align: center;
    margin-top: 50px;
}

/* Image Wrapper */
.page-match-schedule-today__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-match-schedule-today__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-match-schedule-today__image-wrapper--center {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-match-schedule-today__hero-title {
        font-size: 2.2em;
    }
    .page-match-schedule-today__section-title {
        font-size: 1.8em;
    }
    .page-match-schedule-today__analysis-content {
        flex-direction: column;
        align-items: center;
    }
    .page-match-schedule-today__analysis-text, .page-match-schedule-today__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-match-schedule-today__image-wrapper img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-match-schedule-today__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-match-schedule-today__hero-title {
        font-size: 1.8em;
    }
    .page-match-schedule-today__hero-description {
        font-size: 1em;
    }
    .page-match-schedule-today__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-match-schedule-today__section-title {
        font-size: 1.6em;
    }
    .page-match-schedule-today__section-description {
        font-size: 0.95em;
    }
    .page-match-schedule-today__intro-section, 
    .page-match-schedule-today__schedule-section, 
    .page-match-schedule-today__analysis-section, 
    .page-match-schedule-today__guide-section, 
    .page-match-schedule-today__promotions-section, 
    .page-match-schedule-today__faq-section, 
    .page-match-schedule-today__related-news-section {
        padding: 40px 0;
    }
    .page-match-schedule-today__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-match-schedule-today img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-match-schedule-today__image-wrapper img {
        max-width: 100%;
    }
    .page-match-schedule-today__match-list, 
    .page-match-schedule-today__guide-steps, 
    .page-match-schedule-today__promo-cards, 
    .page-match-schedule-today__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-match-schedule-today__match-card, 
    .page-match-schedule-today__step-card, 
    .page-match-schedule-today__promo-card, 
    .page-match-schedule-today__news-card {
        padding: 20px;
    }
    .page-match-schedule-today__match-title, 
    .page-match-schedule-today__step-title, 
    .page-match-schedule-today__promo-title, 
    .page-match-schedule-today__news-title {
        font-size: 1.2em;
    }
    .page-match-schedule-today__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-match-schedule-today__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-match-schedule-today__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-match-schedule-today__faq-answer {
        padding: 0 15px;
    }
    .page-match-schedule-today__faq-item.active .page-match-schedule-today__faq-answer {
        padding: 15px !important;
    }
    .page-match-schedule-today__btn-primary, .page-match-schedule-today__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-match-schedule-today__hero-title {
        font-size: 1.5em;
    }
    .page-match-schedule-today__hero-description {
        font-size: 0.9em;
    }
    .page-match-schedule-today__section-title {
        font-size: 1.4em;
    }
}