/* style/index-new88-mobile-app.css */
.page-index-new88-mobile-app {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-index-new88-mobile-app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-new88-mobile-app__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-new88-mobile-app__section--benefits {
    background-color: #f8f8f8;
}

.page-index-new88-mobile-app__section--download-guide {
    background-color: #fff;
}

.page-index-new88-mobile-app__section--games {
    background-color: #f8f8f8;
}

.page-index-new88-mobile-app__section--faq {
    background-color: #fff;
}

.page-index-new88-mobile-app__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-new88-mobile-app__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-index-new88-mobile-app__section-title--light {
    color: #fff;
}

.page-index-new88-mobile-app__section-title--light::after {
    background-color: #fff;
}

.page-index-new88-mobile-app__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-new88-mobile-app__section-description--light {
    color: #eee;
}

/* Hero Section */
.page-index-new88-mobile-app__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 0;
    text-align: left;
}

.page-index-new88-mobile-app__hero-section .page-index-new88-mobile-app__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page-index-new88-mobile-app__hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.page-index-new88-mobile-app__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00; /* Gold for highlight */
}

.page-index-new88-mobile-app__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-new88-mobile-app__hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-index-new88-mobile-app__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-new88-mobile-app__download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-new88-mobile-app__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-new88-mobile-app__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-index-new88-mobile-app__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-index-new88-mobile-app__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-new88-mobile-app__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-index-new88-mobile-app__btn--accent {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-index-new88-mobile-app__btn--accent:hover {
    background-color: #001a33;
    color: #FFCC00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}

.page-index-new88-mobile-app__btn--hero {
    background-color: #FFCC00;
    color: #003366;
    padding: 18px 35px;
    font-size: 1.2em;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.page-index-new88-mobile-app__btn--hero:hover {
    background-color: #e6b800;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.5);
}

/* Benefits Grid */
.page-index-new88-mobile-app__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-new88-mobile-app__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new88-mobile-app__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-new88-mobile-app__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-new88-mobile-app__benefit-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-index-new88-mobile-app__benefit-text {
    color: #666;
    font-size: 1em;
}

/* Download Guide */
.page-index-new88-mobile-app__download-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    margin-top: 50px;
}

.page-index-new88-mobile-app__step-item {
    flex: 1;
    min-width: 300px;
    background-color: #f0f5f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index-new88-mobile-app__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 20px;
}

.page-index-new88-mobile-app__step-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #444;
}

.page-index-new88-mobile-app__step-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-new88-mobile-app__step-list li strong {
    color: #003366;
}

.page-index-new88-mobile-app__image-wrapper {
    text-align: center;
    margin-top: 20px;
}

.page-index-new88-mobile-app__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-new88-mobile-app__cta-small {
    margin-top: 60px;
    padding: 30px;
    background-color: #e6f0f7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-new88-mobile-app__cta-small p {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 20px;
}

/* Games Grid */
.page-index-new88-mobile-app__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-new88-mobile-app__game-category {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new88-mobile-app__game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-new88-mobile-app__game-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-new88-mobile-app__game-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-index-new88-mobile-app__faq-list {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.page-index-new88-mobile-app__faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-index-new88-mobile-app__faq-question {
    background-color: #003366;
    color: #FFCC00;
    padding: 18px 25px;
    font-size: 1.2em;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-new88-mobile-app__faq-question:hover {
    background-color: #001a33;
}

.page-index-new88-mobile-app__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-new88-mobile-app__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-new88-mobile-app__faq-answer {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-new88-mobile-app__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px;
}

.page-index-new88-mobile-app__faq-answer p {
    color: #444;
    font-size: 1.05em;
    margin: 0;
}

/* Final CTA Section */
.page-index-new88-mobile-app__section--final-cta {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 0;
}

.page-index-new88-mobile-app__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-new88-mobile-app__disclaimer {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-new88-mobile-app__hero-section .page-index-new88-mobile-app__container {
        flex-direction: column;
        text-align: center;
    }

    .page-index-new88-mobile-app__hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .page-index-new88-mobile-app__hero-image {
        text-align: center;
    }

    .page-index-new88-mobile-app__hero-title {
        font-size: 2.8em;
    }

    .page-index-new88-mobile-app__section-title {
        font-size: 2em;
    }

    .page-index-new88-mobile-app__download-steps {
        flex-direction: column;
    }

    .page-index-new88-mobile-app__step-item {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-index-new88-mobile-app__section {
        padding: 40px 0;
    }

    .page-index-new88-mobile-app__hero-title {
        font-size: 2.2em;
    }

    .page-index-new88-mobile-app__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-new88-mobile-app__download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-new88-mobile-app__btn {
        width: 100%;
    }

    .page-index-new88-mobile-app__benefits-grid, .page-index-new88-mobile-app__games-grid {
        grid-template-columns: 1fr;
    }

    .page-index-new88-mobile-app__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-new88-mobile-app__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-new88-mobile-app__hero-title {
        font-size: 1.8em;
    }

    .page-index-new88-mobile-app__section-title {
        font-size: 1.8em;
    }

    .page-index-new88-mobile-app__benefit-title, .page-index-new88-mobile-app__game-title {
        font-size: 1.3em;
    }

    .page-index-new88-mobile-app__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}