/* style/resources-pg88-mobile-app-download-installation.css */

.page-resources-pg88-mobile-app-download-installation {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-resources-pg88-mobile-app-download-installation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-pg88-mobile-app-download-installation-hero {
    position: relative;
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-resources-pg88-mobile-app-download-installation-hero-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    max-height: 80%;
    width: auto;
    opacity: 0.7;
    filter: grayscale(20%);
    z-index: 0;
}

.page-resources-pg88-mobile-app-download-installation-hero .page-resources-pg88-mobile-app-download-installation-container {
    position: relative;
    z-index: 1;
}

.page-resources-pg88-mobile-app-download-installation-hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-pg88-mobile-app-download-installation-hero-subtitle {
    font-size: 1.5em;
    color: #CBD5E0;
    margin-bottom: 40px;
}

.page-resources-pg88-mobile-app-download-installation-section {
    padding: 60px 0;
    background-color: #1A202C;
    border-bottom: 1px solid #2D3748;
}

.page-resources-pg88-mobile-app-download-installation-section:nth-of-type(even) {
    background-color: #2D3748;
}

.page-resources-pg88-mobile-app-download-installation-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-pg88-mobile-app-download-installation-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-pg88-mobile-app-download-installation-subsection-title {
    font-size: 1.8em;
    color: #CBD5E0;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-pg88-mobile-app-download-installation p {
    margin-bottom: 15px;
    color: #E2E8F0;
}

.page-resources-pg88-mobile-app-download-installation-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-resources-pg88-mobile-app-download-installation-btn-primary {
    background-color: #FFD700;
    color: #1A202C;
    font-size: 1.1em;
}

.page-resources-pg88-mobile-app-download-installation-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-pg88-mobile-app-download-installation-btn-secondary {
    background-color: #2D3748;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.1em;
    margin-left: 20px;
}

.page-resources-pg88-mobile-app-download-installation-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-pg88-mobile-app-download-installation-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-resources-pg88-mobile-app-download-installation-feature-list li {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #FFD700;
    color: #E2E8F0;
}

.page-resources-pg88-mobile-app-download-installation-feature-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-resources-pg88-mobile-app-download-installation-step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-resources-pg88-mobile-app-download-installation-step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    color: #E2E8F0;
}

.page-resources-pg88-mobile-app-download-installation-step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-pg88-mobile-app-download-installation-step-list li strong {
    color: #FFD700;
}

.page-resources-pg88-mobile-app-download-installation-image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-pg88-mobile-app-download-installation-image-half-width {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.page-resources-pg88-mobile-app-download-installation-note {
    font-style: italic;
    color: #A0AEC0;
    margin-top: 20px;
    padding: 15px;
    background-color: #2D3748;
    border-left: 3px solid #FFD700;
    border-radius: 5px;
}

.page-resources-pg88-mobile-app-download-installation-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #2D3748;
}

.page-resources-pg88-mobile-app-download-installation-tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #A0AEC0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.page-resources-pg88-mobile-app-download-installation-tab-button.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.page-resources-pg88-mobile-app-download-installation-tab-button:hover {
    color: #FFD700;
}

.page-resources-pg88-mobile-app-download-installation-tab-content {
    display: none;
}

.page-resources-pg88-mobile-app-download-installation-tab-content.active {
    display: block;
}

.page-resources-pg88-mobile-app-download-installation-accordion {
    margin-top: 30px;
}

.page-resources-pg88-mobile-app-download-installation-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #2D3748;
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-pg88-mobile-app-download-installation-accordion-header {
    background-color: #2D3748;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-resources-pg88-mobile-app-download-installation-accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-pg88-mobile-app-download-installation-accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-pg88-mobile-app-download-installation-accordion-header:hover {
    background-color: #3a475d;
}

.page-resources-pg88-mobile-app-download-installation-accordion-content {
    padding: 0 25px;
    background-color: #1A202C;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-pg88-mobile-app-download-installation-accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #E2E8F0;
}

.page-resources-pg88-mobile-app-download-installation-accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-resources-pg88-mobile-app-download-installation-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-pg88-mobile-app-download-installation-link:hover {
    text-decoration: underline;
}

.highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-pg88-mobile-app-download-installation-hero {
        padding: 80px 0 20px;
    }

    .page-resources-pg88-mobile-app-download-installation-hero-title {
        font-size: 2.5em;
    }

    .page-resources-pg88-mobile-app-download-installation-hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-pg88-mobile-app-download-installation-hero-image {
        position: static;
        max-height: 300px;
        margin-top: 30px;
        opacity: 1;
        filter: grayscale(0%);
    }

    .page-resources-pg88-mobile-app-download-installation-section-title {
        font-size: 2em;
    }

    .page-resources-pg88-mobile-app-download-installation-subsection-title {
        font-size: 1.5em;
    }

    .page-resources-pg88-mobile-app-download-installation-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-pg88-mobile-app-download-installation-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-pg88-mobile-app-download-installation-tabs {
        flex-direction: column;
    }

    .page-resources-pg88-mobile-app-download-installation-tab-button {
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 5px;
    }

    .page-resources-pg88-mobile-app-download-installation-tab-button.active {
        border-bottom-color: transparent;
        border-left-color: #FFD700;
    }

    .page-resources-pg88-mobile-app-download-installation-image-half-width {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-resources-pg88-mobile-app-download-installation-hero-title {
        font-size: 2em;
    }

    .page-resources-pg88-mobile-app-download-installation-hero-subtitle {
        font-size: 1em;
    }

    .page-resources-pg88-mobile-app-download-installation-btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-resources-pg88-mobile-app-download-installation-btn-secondary {
        margin-left: 0;
    }

    .page-resources-pg88-mobile-app-download-installation-feature-list {
        grid-template-columns: 1fr;
    }

    .page-resources-pg88-mobile-app-download-installation-step-list li {
        padding-left: 50px;
    }

    .page-resources-pg88-mobile-app-download-installation-step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}