/* style/game-introduction-live-streaming.css */
.page-game-introduction-live-streaming {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark blue background */
}

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

.page-game-introduction-live-streaming__hero-section {
    background: linear-gradient(135deg, #0A192F, #1a345e);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
}

.page-game-introduction-live-streaming__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-game-introduction-live-streaming__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5e6d0;
}

.page-game-introduction-live-streaming__link-inline {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-introduction-live-streaming__link-inline:hover {
    color: #e6c200;
}

.page-game-introduction-live-streaming__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold CTA button */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-introduction-live-streaming__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-game-introduction-live-streaming__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-introduction-live-streaming__content-section,
.page-game-introduction-live-streaming__guide-section,
.page-game-introduction-live-streaming__info-section,
.page-game-introduction-live-streaming__promotion-section,
.page-game-introduction-live-streaming__app-download-section,
.page-game-introduction-live-streaming__faq-section,
.page-game-introduction-live-streaming__final-cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-game-introduction-live-streaming__content-section {
    background-color: #0F213D;
}

.page-game-introduction-live-streaming__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-game-introduction-live-streaming__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-introduction-live-streaming__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-live-streaming__feature-card {
    background-color: #1a345e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introduction-live-streaming__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-game-introduction-live-streaming__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(30deg) brightness(1.2); /* Tint icons gold */
}

.page-game-introduction-live-streaming__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-introduction-live-streaming__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f5e6d0;
}

.page-game-introduction-live-streaming__guide-section {
    background-color: #0A192F;
}

.page-game-introduction-live-streaming__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introduction-live-streaming__step-card {
    background-color: #1a345e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #FFD700;
}

.page-game-introduction-live-streaming__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-game-introduction-live-streaming__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-game-introduction-live-streaming__step-button:hover {
    background-color: #e6c200;
}

.page-game-introduction-live-streaming__info-section {
    background-color: #0F213D;
}

.page-game-introduction-live-streaming__info-section--image-left .page-game-introduction-live-streaming__info-grid {
    grid-template-columns: 1fr 2fr;
}

.page-game-introduction-live-streaming__info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-game-introduction-live-streaming__info-grid--reverse {
    grid-template-columns: 2fr 1fr;
}

.page-game-introduction-live-streaming__info-grid--reverse .page-game-introduction-live-streaming__info-image-wrapper {
    order: 2;
}

.page-game-introduction-live-streaming__info-grid--reverse .page-game-introduction-live-streaming__info-content {
    order: 1;
}

.page-game-introduction-live-streaming__info-image-wrapper {
    text-align: center;
}

.page-game-introduction-live-streaming__info-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-introduction-live-streaming__info-content {
    text-align: left;
}

.page-game-introduction-live-streaming__info-content .page-game-introduction-live-streaming__section-title {
    text-align: left;
    margin-bottom: 30px;
}

.page-game-introduction-live-streaming__info-content .page-game-introduction-live-streaming__section-title::after {
    margin-left: 0;
}

.page-game-introduction-live-streaming__text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-game-introduction-live-streaming__subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-introduction-live-streaming__bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-game-introduction-live-streaming__bullet-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #f5e6d0;
}

.page-game-introduction-live-streaming__bullet-list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-game-introduction-live-streaming__list-strong {
    color: #FFD700;
}

.page-game-introduction-live-streaming__promotion-section {
    background-color: #0A192F;
    text-align: center;
}

.page-game-introduction-live-streaming__app-download-section {
    background-color: #0F213D;
    padding: 80px 0;
}

.page-game-introduction-live-streaming__app-content {
    text-align: center;
}

.page-game-introduction-live-streaming__app-download-section .page-game-introduction-live-streaming__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-game-introduction-live-streaming__app-content,
.page-game-introduction-live-streaming__app-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-game-introduction-live-streaming__app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-game-introduction-live-streaming__app-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #0A192F;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-introduction-live-streaming__app-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-game-introduction-live-streaming__app-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%); /* Make icon dark */
}

.page-game-introduction-live-streaming__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-introduction-live-streaming__faq-section {
    background-color: #0A192F;
}

.page-game-introduction-live-streaming__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-game-introduction-live-streaming__faq-item {
    background-color: #1a345e;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-live-streaming__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-introduction-live-streaming__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-introduction-live-streaming__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-introduction-live-streaming__faq-answer {
    font-size: 1.05em;
    line-height: 1.7;
    color: #f5e6d0;
    display: none;
    padding-top: 10px;
}

.page-game-introduction-live-streaming__faq-answer.active {
    display: block;
}

.page-game-introduction-live-streaming__final-cta-section {
    background-color: #0F213D;
    text-align: center;
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-introduction-live-streaming__hero-title {
        font-size: 2.8em;
    }
    .page-game-introduction-live-streaming__section-title {
        font-size: 2em;
    }
    .page-game-introduction-live-streaming__info-grid {
        grid-template-columns: 1fr;
    }
    .page-game-introduction-live-streaming__info-grid--reverse .page-game-introduction-live-streaming__info-image-wrapper {
        order: initial;
    }
    .page-game-introduction-live-streaming__info-grid--reverse .page-game-introduction-live-streaming__info-content {
        order: initial;
    }
    .page-game-introduction-live-streaming__info-content .page-game-introduction-live-streaming__section-title {
        text-align: center;
    }
    .page-game-introduction-live-streaming__info-content .page-game-introduction-live-streaming__section-title::after {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-live-streaming__hero-section {
        padding: 80px 0;
    }
    .page-game-introduction-live-streaming__hero-title {
        font-size: 2.2em;
    }
    .page-game-introduction-live-streaming__hero-description {
        font-size: 1em;
    }
    .page-game-introduction-live-streaming__section-title {
        font-size: 1.8em;
    }
    .page-game-introduction-live-streaming__content-section,
    .page-game-introduction-live-streaming__guide-section,
    .page-game-introduction-live-streaming__info-section,
    .page-game-introduction-live-streaming__promotion-section,
    .page-game-introduction-live-streaming__app-download-section,
    .page-game-introduction-live-streaming__faq-section,
    .page-game-introduction-live-streaming__final-cta-section {
        padding: 40px 0;
    }
    .page-game-introduction-live-streaming__app-download-section .page-game-introduction-live-streaming__container {
        flex-direction: column;
    }
    .page-game-introduction-live-streaming__app-image-wrapper {
        order: -1; /* Image above text on mobile */
    }
}

@media (max-width: 480px) {
    .page-game-introduction-live-streaming__hero-title {
        font-size: 1.8em;
    }
    .page-game-introduction-live-streaming__section-title {
        font-size: 1.5em;
    }
    .page-game-introduction-live-streaming__feature-grid,
    .page-game-introduction-live-streaming__guide-steps {
        grid-template-columns: 1fr;
    }
    .page-game-introduction-live-streaming__app-buttons {
        flex-direction: column;
    }
}