.page-app-highlights {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

.page-app-highlights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-app-highlights__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #26A9E0;
    color: #ffffff;
}

.page-app-highlights__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-app-highlights__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-app-highlights__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-app-highlights__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-app-highlights__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-app-highlights__btn-primary,
.page-app-highlights__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-app-highlights__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-app-highlights__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

.page-app-highlights__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-app-highlights__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

/* General Section Styles */
.page-app-highlights__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-app-highlights__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-app-highlights__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-app-highlights__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 60px 0;
}

.page-app-highlights__dark-section .page-app-highlights__section-title {
    color: #ffffff;
}

.page-app-highlights__dark-section .page-app-highlights__text-block {
    color: #f0f0f0;
}

/* Features Section */
.page-app-highlights__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-app-highlights__feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.page-app-highlights__feature-image {
    width: 100%; /* Ensure images take full width of card */
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-app-highlights__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-app-highlights__feature-description {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

/* Game Showcase Section */
.page-app-highlights__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-app-highlights__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-app-highlights__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-highlights__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-app-highlights__game-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin: 15px 15px 10px;
    font-weight: bold;
}

.page-app-highlights__game-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px 20px;
    text-align: justify;
    flex-grow: 1;
}

/* Promotions Section */
.page-app-highlights__promotions-section .page-app-highlights__btn-primary {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #EA7C07; /* Login color for primary action */
    border-color: #EA7C07;
}

.page-app-highlights__promotions-section .page-app-highlights__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

/* Download Section */
.page-app-highlights__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-app-highlights__download-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #333333;
}

.page-app-highlights__download-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-app-highlights__download-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-app-highlights__download-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-app-highlights__download-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555555;
}

.page-app-highlights__download-list li::before {
    content: '✓';
    color: #EA7C07;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-app-highlights__download-cta {
    margin-top: 40px;
    text-align: center;
}

.page-app-highlights__download-cta .page-app-highlights__btn-primary {
    background-color: #26A9E0;
    border-color: #26A9E0;
}

.page-app-highlights__download-cta .page-app-highlights__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

/* FAQ Section */
.page-app-highlights__faq-list {
    margin-top: 40px;
}

.page-app-highlights__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: #333333;
}

.page-app-highlights__faq-item summary {
    list-style: none;
}

.page-app-highlights__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-app-highlights__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eaf6fc; /* Lighter shade of primary for question background */
    border-bottom: 1px solid #d0e8f8;
}

.page-app-highlights__faq-question:hover {
    background-color: #d0e8f8;
}

.page-app-highlights__faq-qtext {
    flex-grow: 1;
}

.page-app-highlights__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #EA7C07;
}

.page-app-highlights__faq-answer {
    padding: 15px 25px;
    background-color: #ffffff;
    color: #555555;
    font-size: 1em;
    border-top: 1px solid #eee;
}

.page-app-highlights__faq-item[open] .page-app-highlights__faq-question {
    border-bottom: none;
}

.page-app-highlights__faq-item[open] .page-app-highlights__faq-toggle {
    content: '−';
}

/* Conclusion Section */
.page-app-highlights__conclusion-section .page-app-highlights__btn-primary {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #EA7C07; /* Login color for primary action */
    border-color: #EA7C07;
}

.page-app-highlights__conclusion-section .page-app-highlights__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-app-highlights__section-title {
        font-size: 2em;
    }
    .page-app-highlights__hero-description {
        font-size: 1.1em;
    }
    .page-app-highlights__features-grid,
    .page-app-highlights__game-categories,
    .page-app-highlights__download-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-app-highlights__container {
        padding: 15px;
    }

    /* HERO 主图区域 */
    .page-app-highlights__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 30px;
    }

    .page-app-highlights__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-app-highlights__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-app-highlights__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .page-app-highlights__btn-primary,
    .page-app-highlights__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-app-highlights img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-app-highlights__section,
    .page-app-highlights__card,
    .page-app-highlights__container,
    .page-app-highlights__features-section,
    .page-app-highlights__game-showcase-section,
    .page-app-highlights__download-section,
    .page-app-highlights__promotions-section,
    .page-app-highlights__conclusion-section,
    .page-app-highlights__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-app-highlights__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* 产品展示图区域 (features-grid, game-categories, download-steps) */
    .page-app-highlights__features-grid,
    .page-app-highlights__game-categories,
    .page-app-highlights__download-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-app-highlights__feature-card,
    .page-app-highlights__game-card,
    .page-app-highlights__download-card {
        padding: 20px;
    }

    .page-app-highlights__game-image {
        height: 150px;
    }

    /* FAQ */
    .page-app-highlights__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-app-highlights__faq-answer {
        padding: 10px 20px;
    }

    .page-app-highlights__faq-toggle {
        font-size: 1.2em;
    }

    /* 按钮与按钮容器 */
    .page-app-highlights__hero-cta-buttons,
    .page-app-highlights__download-cta,
    .page-app-highlights__promotions-section .page-app-highlights__btn-primary,
    .page-app-highlights__conclusion-section .page-app-highlights__btn-primary {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }

    .page-app-highlights__promotions-section .page-app-highlights__btn-primary,
    .page-app-highlights__conclusion-section .page-app-highlights__btn-primary {
        width: 100% !important;
        margin: 20px auto 0 auto !important;
    }
}