
    .page-88i-game-apk {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, assuming body has header offset */
}

/* Hero Section */
.page-88i-game-apk__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2a0a4c, #0a0a2a); /* Dark gradient background */
    border-bottom: 5px solid #ffcc00; /* Accent color */
    position: relative;
    overflow: hidden;
}

.page-88i-game-apk__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-88i-game-apk__hero-title {
    font-size: 2.8em;
    color: #ffcc00; /* Accent color for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-88i-game-apk__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-88i-game-apk__download-button {
    display: inline-block;
    background-color: #ffcc00; /* Accent color */
    color: #1a1a1a; /* Dark text for accent button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    cursor: pointer;
}

.page-88i-game-apk__download-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-88i-game-apk__hero-image-wrapper {
    margin-top: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-88i-game-apk__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* General Section Styling */
.page-88i-game-apk__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    text-align: center;
    margin: 60px 20px 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-88i-game-apk__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px;
}

/* Features Section */
.page-88i-game-apk__features-section {
    padding: 40px 20px;
    background-color: #222;
}

.page-88i-game-apk__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88i-game-apk__feature-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-88i-game-apk__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-88i-game-apk__feature-icon {
    max-width: 200px; /* Ensure minimum size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-88i-game-apk__feature-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-88i-game-apk__feature-description {
    color: #ccc;
}

/* Games Section */
.page-88i-game-apk__games-section {
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.page-88i-game-apk__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88i-game-apk__game-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88i-game-apk__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-88i-game-apk__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-88i-game-apk__game-item h3 {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 20px 15px 10px;
}

.page-88i-game-apk__game-item p {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px;
}

/* Download Guide Section */
.page-88i-game-apk__download-guide-section {
    padding: 40px 20px;
    background-color: #222;
    text-align: center;
}

.page-88i-game-apk__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.page-88i-game-apk__guide-step-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-88i-game-apk__guide-image {
    max-width: 200px; /* Ensure minimum size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-88i-game-apk__guide-step-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-88i-game-apk__guide-step-description {
    color: #ccc;
}

.page-88i-game-apk__download-button--bottom {
    margin-top: 30px;
}

/* FAQ Section */
.page-88i-game-apk__faq-section {
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.page-88i-game-apk__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-88i-game-apk__faq-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-88i-game-apk__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #3a3a3a;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s ease;
}

.page-88i-game-apk__faq-question:hover {
    background-color: #4a4a4a;
}

.page-88i-game-apk__faq-question-title {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-88i-game-apk__faq-toggle {
    font-size: 1.5em;
    color: #ffcc00;
    margin-left: 15px;
    pointer-events: none; /* Prevent span from blocking click */
    transition: transform 0.3s ease;
    display: inline-block; /* Required for transform */
    width: 1em; /* Give it a fixed width for alignment */
    text-align: center;
}

.page-88i-game-apk__faq-toggle::before {
    content: '+'; /* Initial state */
}

.page-88i-game-apk__faq-item.active .page-88i-game-apk__faq-toggle::before {
    content: '−'; /* Change to minus sign */
}

.page-88i-game-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;
    background-color: #2c2c2c;
    color: #ccc;
    text-align: left;
}

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

.page-88i-game-apk__faq-answer p {
    margin: 0;
}

/* Call to Action Section */
.page-88i-game-apk__cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a2a, #2a0a4c);
    text-align: center;
    border-top: 5px solid #ffcc00;
}

.page-88i-game-apk__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-88i-game-apk__download-button--final {
    background-color: #ffcc00;
    color: #1a1a1a;
    font-size: 1.3em;
    padding: 18px 40px;
}

.page-88i-game-apk__download-button--final:hover {
    background-color: #e6b800;
}

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

.page-88i-game-apk__floating-button {
    display: block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.page-88i-game-apk__floating-button--register {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.page-88i-game-apk__floating-button--register:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-88i-game-apk__floating-button--login {
    background-color: #4a4a4a;
    color: #f0f0f0;
    border: 1px solid #ffcc00;
}

.page-88i-game-apk__floating-button--login:hover {
    background-color: #5a5a5a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-88i-game-apk__hero-title {
        font-size: 2em;
    }

    .page-88i-game-apk__hero-description {
        font-size: 1em;
    }

    .page-88i-game-apk__download-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-88i-game-apk__section-title {
        font-size: 1.8em;
        margin: 40px 15px 30px;
    }

    .page-88i-game-apk__features-grid,
    .page-88i-game-apk__games-grid,
    .page-88i-game-apk__guide-steps {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px; /* Add padding to grid containers */
    }

    .page-88i-game-apk__feature-item,
    .page-88i-game-apk__game-item,
    .page-88i-game-apk__guide-step-item {
        padding: 20px;
        box-sizing: border-box !important; /* Crucial for list items */
        width: 100% !important; /* Crucial for list items */
        max-width: 100% !important; /* Crucial for list items */
        margin-left: 0 !important; /* Crucial for list items */
        margin-right: 0 !important; /* Crucial for list items */
    }
    
    .page-88i-game-apk__feature-description,
    .page-88i-game-apk__game-item p,
    .page-88i-game-apk__guide-step-description,
    .page-88i-game-apk__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-88i-game-apk__game-image {
        height: 180px;
    }

    .page-88i-game-apk__faq-question {
        padding: 15px 20px;
    }

    .page-88i-game-apk__faq-question-title {
        font-size: 1.1em;
    }

    .page-88i-game-apk__faq-toggle {
        font-size: 1.3em;
    }

    .page-88i-game-apk__faq-answer {
        padding: 15px 20px;
    }
    .page-88i-game-apk__faq-item.active .page-88i-game-apk__faq-answer {
        padding: 15px 20px !important;
    }

    .page-88i-game-apk__cta-description {
        font-size: 1em;
    }

    .page-88i-game-apk__download-button--final {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .page-88i-game-apk__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
    }

    .page-88i-game-apk__floating-button {
        flex: 1;
        margin: 0 5px;
        font-size: 0.9em;
        padding: 10px 15px;
    }

    /* Image responsiveness for all images */
    .page-88i-game-apk img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-88i-game-apk__hero-image-wrapper,
    .page-88i-game-apk__feature-item,
    .page-88i-game-apk__game-item,
    .page-88i-game-apk__guide-step-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .page-88i-game-apk__hero-title {
        font-size: 1.8em;
    }
    .page-88i-game-apk__section-title {
        font-size: 1.6em;
    }
    .page-88i-game-apk__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    .page-88i-game-apk__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
    }
}
  