/* style/live-stream-schedule-today.css */

:root {
    --primary-color: #CC0000;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #1a1a1a;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
}

.page-live-stream-schedule-today {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark);
}

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

.page-live-stream-schedule-today__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Highlight titles with gold */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-live-stream-schedule-today__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-live-stream-schedule-today__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00000 100%);
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}

.page-live-stream-schedule-today__hero-container {
    max-width: 900px;
    z-index: 1;
}

.page-live-stream-schedule-today__main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-live-stream-schedule-today__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-live-stream-schedule-today__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-live-stream-schedule-today__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-live-stream-schedule-today__btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.page-live-stream-schedule-today__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-live-stream-schedule-today__btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-live-stream-schedule-today__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Video Showcase Section */
.page-live-stream-schedule-today__video-showcase-section {
    background-color: var(--background-dark);
    padding: 60px 20px;
    color: var(--text-light);
    text-align: center;
}

.page-live-stream-schedule-today__video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-live-stream-schedule-today__video-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-live-stream-schedule-today__video-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-live-stream-schedule-today__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-stream-schedule-today__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    object-fit: cover;
    pointer-events: none;
}

.page-live-stream-schedule-today__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.page-live-stream-schedule-today__video-link:hover .page-live-stream-schedule-today__video-overlay {
    opacity: 1;
}

.page-live-stream-schedule-today__video-click-hint {
    color: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    background: rgba(var(--primary-color-rgb, 204, 0, 0), 0.8);
    border-radius: 10px;
    white-space: nowrap;
}

.page-live-stream-schedule-today__video-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-live-stream-schedule-today__play-now-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-live-stream-schedule-today__play-now-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Schedule Section */
.page-live-stream-schedule-today__schedule-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-live-stream-schedule-today__schedule-section .page-live-stream-schedule-today__section-title {
    color: var(--primary-color);
}

.page-live-stream-schedule-today__schedule-section .page-live-stream-schedule-today__section-description {
    color: var(--text-dark);
}

.page-live-stream-schedule-today__schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-live-stream-schedule-today__schedule-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-live-stream-schedule-today__schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-live-stream-schedule-today__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-live-stream-schedule-today__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-live-stream-schedule-today__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-live-stream-schedule-today__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-live-stream-schedule-today__card-title a:hover {
    color: var(--secondary-color);
}

.page-live-stream-schedule-today__card-meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.page-live-stream-schedule-today__card-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live-stream-schedule-today__card-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    background: var(--primary-color);
    color: var(--text-light);
}

.page-live-stream-schedule-today__card-button:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-stream-schedule-today__view-all-button-wrapper {
    text-align: center;
}

.page-live-stream-schedule-today__view-all-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-live-stream-schedule-today__view-all-button:hover {
    background: #a00000;
    border-color: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-live-stream-schedule-today__faq-section .page-live-stream-schedule-today__section-title {
    color: var(--secondary-color);
}

.page-live-stream-schedule-today__faq-section .page-live-stream-schedule-today__section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.page-live-stream-schedule-today__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live-stream-schedule-today__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-live-stream-schedule-today__faq-item.active .page-live-stream-schedule-today__faq-question {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-live-stream-schedule-today__faq-question:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-live-stream-schedule-today__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-light);
    pointer-events: none;
}

.page-live-stream-schedule-today__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    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: 32px;
    height: 32px;
}

.page-live-stream-schedule-today__faq-item.active .page-live-stream-schedule-today__faq-toggle {
    color: var(--text-light);
    transform: rotate(45deg);
}

.page-live-stream-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, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 10px 10px;
}

.page-live-stream-schedule-today__faq-item.active .page-live-stream-schedule-today__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
}

.page-live-stream-schedule-today__faq-answer p {
    margin-bottom: 15px;
}

.page-live-stream-schedule-today__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-live-stream-schedule-today__faq-button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    color: var(--text-dark);
}

.page-live-stream-schedule-today__faq-button:hover {
    background: #e6c200;
}

/* Brand Section */
.page-live-stream-schedule-today__brand-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-live-stream-schedule-today__brand-section .page-live-stream-schedule-today__section-title {
    color: var(--primary-color);
}

.page-live-stream-schedule-today__brand-section .page-live-stream-schedule-today__section-description {
    color: var(--text-dark);
}

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

.page-live-stream-schedule-today__brand-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-stream-schedule-today__brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-live-stream-schedule-today__brand-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.page-live-stream-schedule-today__brand-item-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-live-stream-schedule-today__brand-item-text {
    font-size: 16px;
    color: #555;
}

.page-live-stream-schedule-today__view-more-about-us {
    text-align: center;
    margin-top: 40px;
}

/* Blog Section */
.page-live-stream-schedule-today__blog-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-live-stream-schedule-today__blog-section .page-live-stream-schedule-today__section-title {
    color: var(--secondary-color);
}

.page-live-stream-schedule-today__blog-section .page-live-stream-schedule-today__section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.page-live-stream-schedule-today__blog-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-live-stream-schedule-today__blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-stream-schedule-today__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-live-stream-schedule-today__blog-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-live-stream-schedule-today__blog-item-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-live-stream-schedule-today__blog-item-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-live-stream-schedule-today__blog-item-title a:hover {
    color: var(--primary-color);
}

.page-live-stream-schedule-today__blog-item-excerpt {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-live-stream-schedule-today__blog-item-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.page-live-stream-schedule-today__blog-read-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live-stream-schedule-today__blog-read-more:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live-stream-schedule-today__main-title {
        font-size: 40px;
    }
    .page-live-stream-schedule-today__hero-description {
        font-size: 18px;
    }
    .page-live-stream-schedule-today__section-title {
        font-size: 30px;
    }
    .page-live-stream-schedule-today__schedule-grid,
    .page-live-stream-schedule-today__brand-content,
    .page-live-stream-schedule-today__blog-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-live-stream-schedule-today {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-live-stream-schedule-today__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-live-stream-schedule-today__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
        min-height: 300px;
    }
    .page-live-stream-schedule-today__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-live-stream-schedule-today__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-live-stream-schedule-today__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-live-stream-schedule-today__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-live-stream-schedule-today__section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .page-live-stream-schedule-today__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-live-stream-schedule-today__video-showcase-section {
        padding: 40px 15px;
    }
    .page-live-stream-schedule-today__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-live-stream-schedule-today__video-link {
        margin-bottom: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-live-stream-schedule-today__video-wrapper {
        border-radius: 8px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-live-stream-schedule-today__video {
        border-radius: 8px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain; /* Ensure video fits within bounds */
    }
    .page-live-stream-schedule-today__video-click-hint {
        font-size: 18px;
        padding: 10px 20px;
    }
    .page-live-stream-schedule-today__play-now-button {
        padding: 15px 30px;
        font-size: 18px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-live-stream-schedule-today__schedule-section,
    .page-live-stream-schedule-today__faq-section,
    .page-live-stream-schedule-today__brand-section,
    .page-live-stream-schedule-today__blog-section {
        padding: 40px 15px;
    }
    .page-live-stream-schedule-today__schedule-grid,
    .page-live-stream-schedule-today__brand-content,
    .page-live-stream-schedule-today__blog-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-live-stream-schedule-today__card-image,
    .page-live-stream-schedule-today__brand-image,
    .page-live-stream-schedule-today__blog-item-image {
        height: 180px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-live-stream-schedule-today__card-title,
    .page-live-stream-schedule-today__blog-item-title {
        font-size: 20px;
    }
    .page-live-stream-schedule-today__card-meta,
    .page-live-stream-schedule-today__card-text,
    .page-live-stream-schedule-today__blog-item-excerpt,
    .page-live-stream-schedule-today__blog-item-date {
        font-size: 15px;
    }
    .page-live-stream-schedule-today__card-button,
    .page-live-stream-schedule-today__view-all-button,
    .page-live-stream-schedule-today__faq-button {
        padding: 10px 20px;
        font-size: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-live-stream-schedule-today__faq-question {
        padding: 15px 20px;
    }
    .page-live-stream-schedule-today__faq-question h3 {
        font-size: 16px;
    }
    .page-live-stream-schedule-today__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-live-stream-schedule-today__faq-answer {
        padding: 0 20px;
    }
    .page-live-stream-schedule-today__faq-item.active .page-live-stream-schedule-today__faq-answer {
        padding: 15px 20px !important;
    }
    .page-live-stream-schedule-today img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-live-stream-schedule-today video {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-live-stream-schedule-today__main-title {
        font-size: 28px;
    }
    .page-live-stream-schedule-today__section-title {
        font-size: 22px;
    }
    .page-live-stream-schedule-today__hero-description {
        font-size: 15px;
    }
    .page-live-stream-schedule-today__video-click-hint {
        font-size: 16px;
        padding: 8px 15px;
    }
    .page-live-stream-schedule-today__play-now-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .page-live-stream-schedule-today__card-title,
    .page-live-stream-schedule-today__blog-item-title {
        font-size: 18px;
    }
    .page-live-stream-schedule-today__faq-question h3 {
        font-size: 15px;
    }
}