/* style/resources-how-to-download-lu88-app.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0;
    --btn-login-color: #EA7C07;
}

/* Base styles for the page content */
.page-resources-how-to-download-lu88-app {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-resources-how-to-download-lu88-app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-how-to-download-lu88-app__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: calc(var(--header-offset, 120px) + 60px); /* Ensure space for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #1a7bb0);
    color: var(--text-light);
    overflow: hidden;
    min-height: 500px;
}

.page-resources-how-to-download-lu88-app__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-resources-how-to-download-lu88-app__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-resources-how-to-download-lu88-app__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-resources-how-to-download-lu88-app__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-how-to-download-lu88-app__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-resources-how-to-download-lu88-app__cta-button {
    display: inline-block;
    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;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-resources-how-to-download-lu88-app__btn-primary {
    background-color: var(--btn-login-color); /* Use login color for primary CTA */
    color: var(--text-light);
    border: 2px solid var(--btn-login-color);
}

.page-resources-how-to-download-lu88-app__btn-primary:hover {
    background-color: #e06c00;
    transform: translateY(-2px);
}

.page-resources-how-to-download-lu88-app__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-download-lu88-app__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-resources-how-to-download-lu88-app__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-download-lu88-app__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-how-to-download-lu88-app__content-section {
    padding: 60px 0;
}

.page-resources-how-to-download-lu88-app__dark-section {
    background-color: rgba(var(--primary-color), 0.1);
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__dark-section .page-resources-how-to-download-lu88-app__section-title {
    color: var(--secondary-color);
}

.page-resources-how-to-download-lu88-app__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__light-bg .page-resources-how-to-download-lu88-app__section-title {
    color: var(--primary-color);
}

.page-resources-how-to-download-lu88-app__light-bg .page-resources-how-to-download-lu88-app__sub-title {
    color: var(--primary-color);
}

.page-resources-how-to-download-lu88-app__light-bg .page-resources-how-to-download-lu88-app__text-block {
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-light);
}

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

.page-resources-how-to-download-lu88-app__feature-card {
    background-color: rgba(var(--secondary-color), 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__feature-card .page-resources-how-to-download-lu88-app__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-download-lu88-app__feature-card p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__download-guide {
    padding: 60px 0;
}

.page-resources-how-to-download-lu88-app__step-by-step {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-how-to-download-lu88-app__platform-guide {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-download-lu88-app__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-how-to-download-lu88-app__step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-how-to-download-lu88-app__step-item {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__step-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.page-resources-how-to-download-lu88-app__step-item p {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__platform-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-download-lu88-app__important-notes {
    margin-top: 60px;
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__important-notes .page-resources-how-to-download-lu88-app__sub-title {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 20px;
}

.page-resources-how-to-download-lu88-app__note-list {
    list-style: disc;
    margin-left: 20px;
    font-size: 1.05em;
}

.page-resources-how-to-download-lu88-app__note-list li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-resources-how-to-download-lu88-app__note-list li strong {
    color: var(--primary-color);
}

.page-resources-how-to-download-lu88-app__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-resources-how-to-download-lu88-app__grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-download-lu88-app__info-block {
    background-color: rgba(var(--secondary-color), 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__info-block .page-resources-how-to-download-lu88-app__sub-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-resources-how-to-download-lu88-app__info-block p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-download-lu88-app__feature-item {
    background-color: rgba(var(--secondary-color), 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__feature-item .page-resources-how-to-download-lu88-app__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-download-lu88-app__feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__features-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-download-lu88-app__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-how-to-download-lu88-app__promo-list li {
    background-color: rgba(var(--secondary-color), 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
}

.page-resources-how-to-download-lu88-app__promo-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.page-resources-how-to-download-lu88-app__promo-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-download-lu88-app__support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-how-to-download-lu88-app__faq-section {
    padding: 60px 0;
}

.page-resources-how-to-download-lu88-app__faq-list {
    margin-top: 40px;
}

.page-resources-how-to-download-lu88-app__faq-item {
    background-color: rgba(var(--secondary-color), 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-resources-how-to-download-lu88-app__faq-question:hover {
    background-color: #1a7bb0;
}

.page-resources-how-to-download-lu88-app__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-how-to-download-lu88-app__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-resources-how-to-download-lu88-app__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-light);
    background-color: rgba(var(--primary-color), 0.05);
}

.page-resources-how-to-download-lu88-app__conclusion-section {
    padding: 60px 0;
    text-align: center;
    background-color: rgba(var(--primary-color), 0.1);
    color: var(--text-light);
}

.page-resources-how-to-download-lu88-app__conclusion-section .page-resources-how-to-download-lu88-app__section-title {
    color: var(--secondary-color);
}

.page-resources-how-to-download-lu88-app__conclusion-section .page-resources-how-to-download-lu88-app__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Image specific styles */
.page-resources-how-to-download-lu88-app img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-how-to-download-lu88-app__main-title {
        font-size: 3em;
    }
    .page-resources-how-to-download-lu88-app__hero-description {
        font-size: 1.2em;
    }
    .page-resources-how-to-download-lu88-app__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-download-lu88-app {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-how-to-download-lu88-app__main-title {
        font-size: 2.5em;
    }
    .page-resources-how-to-download-lu88-app__hero-description {
        font-size: 1em;
    }
    .page-resources-how-to-download-lu88-app__section-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-download-lu88-app__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
        padding-bottom: 60px;
    }
    .page-resources-how-to-download-lu88-app__features-grid,
    .page-resources-how-to-download-lu88-app__grid-2-col,
    .page-resources-how-to-download-lu88-app__step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-resources-how-to-download-lu88-app__platform-guide {
        flex: 1 1 100%;
    }
    .page-resources-how-to-download-lu88-app__cta-button,
    .page-resources-how-to-download-lu88-app__btn-primary,
    .page-resources-how-to-download-lu88-app__btn-secondary,
    .page-resources-how-to-download-lu88-app a[class*="button"],
    .page-resources-how-to-download-lu88-app a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-how-to-download-lu88-app__cta-buttons,
    .page-resources-how-to-download-lu88-app__button-group,
    .page-resources-how-to-download-lu88-app__btn-container,
    .page-resources-how-to-download-lu88-app__support-links {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column;
    }
    .page-resources-how-to-download-lu88-app img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-how-to-download-lu88-app__section,
    .page-resources-how-to-download-lu88-app__card,
    .page-resources-how-to-download-lu88-app__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-download-lu88-app__main-title {
        font-size: 2em;
    }
    .page-resources-how-to-download-lu88-app__hero-description {
        font-size: 0.9em;
    }
    .page-resources-how-to-download-lu88-app__section-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-download-lu88-app__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-how-to-download-lu88-app__sub-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-download-lu88-app__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-how-to-download-lu88-app__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}