/* style/live-streaming-how-to-watch.css */

/* Variables for colors */
:root {
    --page-live-streaming-how-to-watch-primary-color: #0A244A;
    --page-live-streaming-how-to-watch-secondary-color: #FFD700;
    --page-live-streaming-how-to-watch-text-light: #FFFFFF;
    --page-live-streaming-how-to-watch-text-dark: #333333;
    --page-live-streaming-how-to-watch-bg-alt: #F8F8F8; /* A very light gray for contrast */
    --page-live-streaming-how-to-watch-link-hover: #CCAA00;
}

.page-live-streaming-how-to-watch {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-live-streaming-how-to-watch-text-dark);
    background-color: var(--page-live-streaming-how-to-watch-text-light);
}

.page-live-streaming-how-to-watch__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-live-streaming-how-to-watch__hero {
    background-color: var(--page-live-streaming-how-to-watch-primary-color);
    color: var(--page-live-streaming-how-to-watch-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-live-streaming-how-to-watch__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-live-streaming-how-to-watch__hero .page-live-streaming-how-to-watch__container {
    position: relative;
    z-index: 1;
}

.page-live-streaming-how-to-watch__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-live-streaming-how-to-watch-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-streaming-how-to-watch__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-live-streaming-how-to-watch__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;
    white-space: nowrap;
}

.page-live-streaming-how-to-watch__btn--primary {
    background-color: var(--page-live-streaming-how-to-watch-secondary-color);
    color: var(--page-live-streaming-how-to-watch-primary-color);
    border: 2px solid var(--page-live-streaming-how-to-watch-secondary-color);
}

.page-live-streaming-how-to-watch__btn--primary:hover {
    background-color: var(--page-live-streaming-how-to-watch-link-hover);
    color: var(--page-live-streaming-how-to-watch-primary-color);
    border-color: var(--page-live-streaming-how-to-watch-link-hover);
}

.page-live-streaming-how-to-watch__btn--secondary {
    background-color: var(--page-live-streaming-how-to-watch-primary-color);
    color: var(--page-live-streaming-how-to-watch-secondary-color);
    border: 2px solid var(--page-live-streaming-how-to-watch-secondary-color);
    margin-right: 15px;
}

.page-live-streaming-how-to-watch__btn--secondary:hover {
    background-color: #051A36;
    color: var(--page-live-streaming-how-to-watch-secondary-color);
}

.page-live-streaming-how-to-watch__btn--outline {
    background-color: transparent;
    color: var(--page-live-streaming-how-to-watch-primary-color);
    border: 2px solid var(--page-live-streaming-how-to-watch-primary-color);
}

.page-live-streaming-how-to-watch__btn--outline:hover {
    background-color: var(--page-live-streaming-how-to-watch-primary-color);
    color: var(--page-live-streaming-how-to-watch-text-light);
}

.page-live-streaming-how-to-watch__section {
    padding: 60px 0;
}

.page-live-streaming-how-to-watch__section--alt-bg {
    background-color: var(--page-live-streaming-how-to-watch-bg-alt);
}

.page-live-streaming-how-to-watch__section-title {
    font-size: 2.5em;
    color: var(--page-live-streaming-how-to-watch-primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-live-streaming-how-to-watch__list,
.page-live-streaming-how-to-watch__numbered-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-live-streaming-how-to-watch__numbered-list {
    list-style-type: decimal;
}

.page-live-streaming-how-to-watch__list li,
.page-live-streaming-how-to-watch__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--page-live-streaming-how-to-watch-text-dark);
}

.page-live-streaming-how-to-watch__link {
    color: var(--page-live-streaming-how-to-watch-primary-color);
    text-decoration: underline;
}

.page-live-streaming-how-to-watch__link:hover {
    color: var(--page-live-streaming-how-to-watch-link-hover);
}

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

.page-live-streaming-how-to-watch__grid-item {
    background-color: var(--page-live-streaming-how-to-watch-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live-streaming-how-to-watch__grid-title {
    font-size: 1.8em;
    color: var(--page-live-streaming-how-to-watch-primary-color);
    margin-bottom: 20px;
}

.page-live-streaming-how-to-watch__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-live-streaming-how-to-watch__faq {
    margin-top: 30px;
}

.page-live-streaming-how-to-watch__faq-item {
    background-color: var(--page-live-streaming-how-to-watch-text-light);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live-streaming-how-to-watch__faq-question {
    font-size: 1.3em;
    color: var(--page-live-streaming-how-to-watch-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-live-streaming-how-to-watch__faq-answer {
    font-size: 1.05em;
    color: var(--page-live-streaming-how-to-watch-text-dark);
    margin-top: 10px;
    display: none; /* Hidden by default, JS will toggle */
}

.page-live-streaming-how-to-watch__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-live-streaming-how-to-watch__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-live-streaming-how-to-watch__faq-question.active + .page-live-streaming-how-to-watch__faq-answer {
    display: block;
}

.page-live-streaming-how-to-watch__section--cta {
    background-color: var(--page-live-streaming-how-to-watch-primary-color);
    color: var(--page-live-streaming-how-to-watch-text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-live-streaming-how-to-watch__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-live-streaming-how-to-watch__section--cta .page-live-streaming-how-to-watch__container {
    position: relative;
    z-index: 1;
}

.page-live-streaming-how-to-watch__cta-title {
    font-size: 2.8em;
    color: var(--page-live-streaming-how-to-watch-secondary-color);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-live-streaming-how-to-watch__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-live-streaming-how-to-watch__section--responsible {
    padding: 40px 0;
    background-color: #f0f0f0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

.page-live-streaming-how-to-watch__section--responsible .page-live-streaming-how-to-watch__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--page-live-streaming-how-to-watch-primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-live-streaming-how-to-watch__hero {
        padding: 60px 20px;
    }
    .page-live-streaming-how-to-watch__hero-title {
        font-size: 2.2em;
    }
    .page-live-streaming-how-to-watch__hero-description {
        font-size: 1em;
    }
    .page-live-streaming-how-to-watch__section-title {
        font-size: 2em;
    }
    .page-live-streaming-how-to-watch__grid {
        grid-template-columns: 1fr;
    }
    .page-live-streaming-how-to-watch__cta-title {
        font-size: 2.2em;
    }
    .page-live-streaming-how-to-watch__btn {
        margin-bottom: 15px;
        margin-right: 0;
    }
    .page-live-streaming-how-to-watch__btn + .page-live-streaming-how-to-watch__btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-live-streaming-how-to-watch__hero {
        padding: 40px 15px;
    }
    .page-live-streaming-how-to-watch__hero-title {
        font-size: 1.8em;
    }
    .page-live-streaming-how-to-watch__section {
        padding: 30px 0;
    }
    .page-live-streaming-how-to-watch__section-title {
        font-size: 1.6em;
    }
    .page-live-streaming-how-to-watch__cta-title {
        font-size: 1.8em;
    }
    .page-live-streaming-how-to-watch__grid-title {
        font-size: 1.5em;
    }
    .page-live-streaming-how-to-watch__faq-question {
        font-size: 1.1em;
    }
    .page-live-streaming-how-to-watch__faq-answer {
        font-size: 0.95em;
    }
}