
    :root {
    --page-188cm-apk-primary-color: #e0b000; /* Gold/Yellow for highlights */
    --page-188cm-apk-secondary-color: #333; /* Dark grey for secondary elements */
    --page-188cm-apk-background-color: #1a1a1a; /* Dark background */
    --page-188cm-apk-text-color: #f0f0f0; /* Light text */
    --page-188cm-apk-light-grey: #cccccc;
    --page-188cm-apk-dark-grey: #2a2a2a;
    --page-188cm-apk-border-color: #444;
}

.page-188cm-apk {
    background-color: var(--page-188cm-apk-background-color);
    color: var(--page-188cm-apk-text-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

/* Fallback for header offset if body doesn't handle it */
.page-188cm-apk {
    padding-top: var(--header-offset, 122px);
}

.page-188cm-apk__section-title {
    text-align: center;
    color: var(--page-188cm-apk-primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    padding: 20px 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-188cm-apk__hero-section {
    background-color: var(--page-188cm-apk-dark-grey);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small decorative top padding */
}

.page-188cm-apk__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-188cm-apk__hero-title {
    font-size: 3em;
    color: var(--page-188cm-apk-primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-188cm-apk__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-188cm-apk-light-grey);
}

.page-188cm-apk__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.page-188cm-apk__download-button,
.page-188cm-apk__register-button,
.page-188cm-apk__view-promos-button,
.page-188cm-apk__final-download-button {
    background-color: var(--page-188cm-apk-primary-color);
    color: var(--page-188cm-apk-background-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-188cm-apk__download-button:hover,
.page-188cm-apk__register-button:hover,
.page-188cm-apk__view-promos-button:hover,
.page-188cm-apk__final-download-button:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
}

.page-188cm-apk__qr-code {
    margin-top: 40px;
    background-color: var(--page-188cm-apk-dark-grey);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.page-188cm-apk__qr-image {
    max-width: 250px;
    height: auto;
    border: 5px solid var(--page-188cm-apk-primary-color);
    border-radius: 5px;
    max-width: 100%; /* For mobile responsiveness */
    height: auto; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
}

.page-188cm-apk__qr-text {
    margin-top: 15px;
    font-size: 1em;
    color: var(--page-188cm-apk-light-grey);
}

.page-188cm-apk__features-section,
.page-188cm-apk__download-guide-section,
.page-188cm-apk__game-showcase-section,
.page-188cm-apk__promotions-section,
.page-188cm-apk__faq-section,
.page-188cm-apk__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-188cm-apk__features-grid,
.page-188cm-apk__game-categories,
.page-188cm-apk__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-188cm-apk__feature-item,
.page-188cm-apk__game-category-item,
.page-188cm-apk__promo-item {
    background-color: var(--page-188cm-apk-dark-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.page-188cm-apk__feature-item:hover,
.page-188cm-apk__game-category-item:hover,
.page-188cm-apk__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-188cm-apk__feature-icon,
.page-188cm-apk__game-image,
.page-188cm-apk__promo-image {
    width: 100%;
    height: auto;
    max-height: 200px; /* Ensure images are not too large */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--page-188cm-apk-border-color);
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
}

.page-188cm-apk__feature-heading,
.page-188cm-apk__game-title,
.page-188cm-apk__promo-title {
    font-size: 1.5em;
    color: var(--page-188cm-apk-primary-color);
    margin-bottom: 10px;
}

.page-188cm-apk__feature-text,
.page-188cm-apk__game-description,
.page-188cm-apk__promo-description {
    font-size: 1em;
    color: var(--page-188cm-apk-light-grey);
}

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

.page-188cm-apk__step-item {
    background-color: var(--page-188cm-apk-dark-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.page-188cm-apk__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-188cm-apk-primary-color);
    margin-bottom: 15px;
    background-color: var(--page-188cm-apk-background-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 2px solid var(--page-188cm-apk-primary-color);
}

.page-188cm-apk__step-title {
    font-size: 1.4em;
    color: var(--page-188cm-apk-primary-color);
    margin-bottom: 10px;
}

.page-188cm-apk__step-description {
    font-size: 1em;
    color: var(--page-188cm-apk-light-grey);
}

.page-188cm-apk__promo-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-188cm-apk__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-188cm-apk__faq-item {
    background-color: var(--page-188cm-apk-dark-grey);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-188cm-apk__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--page-188cm-apk-secondary-color);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-188cm-apk__faq-question:hover {
    background-color: #444;
}

.page-188cm-apk__faq-heading {
    font-size: 1.2em;
    color: var(--page-188cm-apk-primary-color);
    margin: 0;
    pointer-events: none; /* Prevent h3 from capturing click */
}

.page-188cm-apk__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--page-188cm-apk-primary-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from capturing click */
}

.page-188cm-apk__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: var(--page-188cm-apk-light-grey);
}

.page-188cm-apk__faq-item.active .page-188cm-apk__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

/* For a true minus sign, the JS changes the textContent */

.page-188cm-apk__cta-section {
    text-align: center;
    background-color: var(--page-188cm-apk-secondary-color);
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

.page-188cm-apk__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-188cm-apk-light-grey);
}

.page-188cm-apk__external-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--page-188cm-apk-primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-188cm-apk__external-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* Floating Register/Login Buttons */
.page-188cm-apk__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-188cm-apk__floating-register-button,
.page-188cm-apk__floating-login-button {
    background-color: var(--page-188cm-apk-primary-color);
    color: var(--page-188cm-apk-background-color);
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 120px;
}

.page-188cm-apk__floating-register-button:hover,
.page-188cm-apk__floating-login-button:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-188cm-apk__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-188cm-apk__hero-title {
        font-size: 2.2em;
    }

    .page-188cm-apk__hero-description {
        font-size: 1em;
    }

    .page-188cm-apk__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-188cm-apk__download-button,
    .page-188cm-apk__register-button,
    .page-188cm-apk__view-promos-button,
    .page-188cm-apk__final-download-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-188cm-apk__features-section,
    .page-188cm-apk__download-guide-section,
    .page-188cm-apk__game-showcase-section,
    .page-188cm-apk__promotions-section,
    .page-188cm-apk__faq-section,
    .page-188cm-apk__cta-section {
        padding: 40px 15px;
    }

    .page-188cm-apk__features-grid,
    .page-188cm-apk__game-categories,
    .page-188cm-apk__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-188cm-apk__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-188cm-apk__feature-heading,
    .page-188cm-apk__game-title,
    .page-188cm-apk__promo-title {
        font-size: 1.3em;
    }

    .page-188cm-apk__feature-text,
    .page-188cm-apk__game-description,
    .page-188cm-apk__promo-description {
        font-size: 0.95em;
    }

    .page-188cm-apk__faq-question {
        padding: 15px 20px;
    }

    .page-188cm-apk__faq-heading {
        font-size: 1.1em;
    }

    .page-188cm-apk__faq-answer {
        padding: 0 20px;
    }

    .page-188cm-apk__faq-item.active .page-188cm-apk__faq-answer {
        padding: 15px 20px !important;
    }

    /* List item specific responsive requirements */
    .page-188cm-apk__features-grid > .page-188cm-apk__feature-item,
    .page-188cm-apk__guide-steps > .page-188cm-apk__step-item,
    .page-188cm-apk__game-categories > .page-188cm-apk__game-category-item,
    .page-188cm-apk__promo-grid > .page-188cm-apk__promo-item,
    .page-188cm-apk__faq-list > .page-188cm-apk__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-188cm-apk__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-188cm-apk__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-188cm-apk__floating-buttons {
        bottom: 10px;
        right: 10px;
    }

    .page-188cm-apk__floating-register-button,
    .page-188cm-apk__floating-login-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .page-188cm-apk__qr-code {
        width: calc(100% - 40px);
    }
    .page-188cm-apk__qr-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .page-188cm-apk__hero-title {
        font-size: 1.8em;
    }
    .page-188cm-apk__section-title {
        font-size: 1.8em;
    }
    .page-188cm-apk__faq-heading {
        font-size: 1em;
    }
    .page-188cm-apk__faq-answer {
        font-size: 0.9em;
    }
}
  