.page--g-live-streaming {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
}

.page--g-live-streaming__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #64748b);
    overflow: hidden;
}

.page--g-live-streaming__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.page--g-live-streaming__main-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page--g-live-streaming__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page--g-live-streaming__hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.page--g-live-streaming__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page--g-live-streaming__section {
    padding: 60px 0;
}

.page--g-live-streaming__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page--g-live-streaming__dark-bg {
    background-color: #2563eb;
    color: #ffffff;
}

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

.page--g-live-streaming__section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: inherit;
}

.page--g-live-streaming__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
}

.page--g-live-streaming__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    color: inherit;
}

.page--g-live-streaming__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page--g-live-streaming__btn-primary,
.page--g-live-streaming__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page--g-live-streaming__btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.page--g-live-streaming__btn-primary:hover {
    background-color: #1a4aae;
    border-color: #1a4aae;
}

.page--g-live-streaming__btn-secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.page--g-live-streaming__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1a4aae;
    border-color: #1a4aae;
}

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

.page--g-live-streaming__gameshow-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.page--g-live-streaming__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: inherit;
}

.page--g-live-streaming__list-item {
    margin-bottom: 10px;
    font-size: 1em;
    box-sizing: border-box;
    word-wrap: break-word;
}

.page--g-live-streaming__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page--g-live-streaming__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page--g-live-streaming__faq-list {
    margin-top: 40px;
}

.page--g-live-streaming__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page--g-live-streaming__faq-item.active {
    background-color: #e6f0ff;
}

.page--g-live-streaming__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 1.1em;
    color: #2563eb;
    transition: background-color 0.3s ease;
}

.page--g-live-streaming__faq-question:hover {
    background-color: #f0f6ff;
}

.page--g-live-streaming__faq-qtext {
    pointer-events: none;
    flex-grow: 1;
}

.page--g-live-streaming__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    pointer-events: none;
    width: 20px;
    text-align: center;
}

.page--g-live-streaming__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #555555;
}

.page--g-live-streaming__faq-item.active .page--g-live-streaming__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
}

.page--g-live-streaming__faq-answer p {
    margin-bottom: 10px;
}

.page--g-live-streaming__faq-answer a {
    color: #2563eb;
    text-decoration: underline;
}

.page--g-live-streaming__link {
    color: #2563eb;
    text-decoration: underline;
}

.page--g-live-streaming__link:hover {
    color: #1a4aae;
}

.page--g-live-streaming__conclusion-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #2563eb, #64748b);
    color: #ffffff;
}

.page--g-live-streaming__conclusion-section .page--g-live-streaming__section-title,
.page--g-live-streaming__conclusion-section .page--g-live-streaming__text-block {
    color: #ffffff;
}

.page--g-live-streaming__conclusion-section .page--g-live-streaming__link {
    color: #f0f0f0;
}

.page--g-live-streaming__conclusion-section .page--g-live-streaming__link:hover {
    color: #ffffff;
}

.page--g-live-streaming__copyright {
    text-align: center;
    font-size: 0.9em;
    color: #777777;
    padding: 20px 0;
    background-color: #f1f1f1;
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page--g-live-streaming__main-title {
        font-size: 2.5em;
    }

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

    .page--g-live-streaming__sub-title {
        font-size: 1.4em;
    }

    .page--g-live-streaming__gameshow-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page--g-live-streaming__gameshow-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .page--g-live-streaming__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page--g-live-streaming__hero-content {
        padding: 15px;
    }

    .page--g-live-streaming__main-title {
        font-size: 2em !important;
    }

    .page--g-live-streaming__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page--g-live-streaming__section {
        padding: 40px 0;
    }

    .page--g-live-streaming__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page--g-live-streaming__section-title {
        font-size: 1.8em !important;
        margin-bottom: 25px;
    }

    .page--g-live-streaming__sub-title {
        font-size: 1.3em !important;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page--g-live-streaming__text-block {
        font-size: 0.95em;
    }

    .page--g-live-streaming__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page--g-live-streaming__btn-primary,
    .page--g-live-streaming__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page--g-live-streaming__gameshow-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .page--g-live-streaming__gameshow-image {
        height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page--g-live-streaming img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page--g-live-streaming__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 0 15px;
    }

    .page--g-live-streaming__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page--g-live-streaming__list {
        margin-left: 10px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page--g-live-streaming__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page--g-live-streaming__faq-item {
        margin-bottom: 10px;
    }

    .page--g-live-streaming__faq-question {
        padding: 15px;
        font-size: 1em;
    }

    .page--g-live-streaming__faq-answer {
        padding: 0 15px;
    }

    .page--g-live-streaming__faq-item.active .page--g-live-streaming__faq-answer {
        padding: 15px !important;
    }

    .page--g-live-streaming__copyright {
        padding: 15px;
    }
}