
    /* Page-plus777-apk specific styles */
    .page-plus777-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 decorative top padding, assuming body already has header offset */
    }

    /* Hero Section */
    .page-plus777-apk__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        background: linear-gradient(135deg, #333333, #1a1a1a);
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-plus777-apk__hero-content {
        max-width: 900px;
        margin-bottom: 30px;
    }

    .page-plus777-apk__hero-title {
        font-size: 2.8em;
        color: #ffe01b; /* Gold/yellow for highlights */
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .page-plus777-apk__hero-description {
        font-size: 1.2em;
        color: #cccccc;
        margin-bottom: 25px;
    }

    .page-plus777-apk__keyword-highlight {
        color: #ffe01b;
        font-weight: bold;
    }

    .page-plus777-apk__download-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-plus777-apk__download-button {
        display: inline-block;
        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(0, 0, 0, 0.3);
        white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-plus777-apk__download-button--primary {
        background-color: #ffe01b;
        color: #1a1a1a;
    }

    .page-plus777-apk__download-button--primary:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

    .page-plus777-apk__download-button--secondary {
        background-color: #444444;
        color: #f0f0f0;
        border: 2px solid #666666;
    }

    .page-plus777-apk__download-button--secondary:hover {
        background-color: #555555;
        transform: translateY(-2px);
    }

    .page-plus777-apk__download-button--small {
        padding: 10px 20px;
        font-size: 0.9em;
        border-radius: 25px;
    }

    .page-plus777-apk__download-button--large {
        padding: 20px 40px;
        font-size: 1.3em;
        border-radius: 60px;
    }

    .page-plus777-apk__hero-image-wrapper {
        margin-top: 30px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-plus777-apk__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* General Section Styles */
    .page-plus777-apk__section-title {
        font-size: 2.2em;
        color: #ffe01b;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .page-plus777-apk__section-description {
        font-size: 1.1em;
        color: #cccccc;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    /* Features Section */
    .page-plus777-apk__features-section {
        padding: 40px 20px;
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

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

    .page-plus777-apk__feature-item {
        background-color: #3a3a3a;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-plus777-apk__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-plus777-apk__feature-icon {
        width: 200px; /* Min size */
        height: 200px; /* Min size */
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-plus777-apk__feature-title {
        font-size: 1.5em;
        color: #ffe01b;
        margin-bottom: 10px;
    }

    .page-plus777-apk__feature-text {
        font-size: 1em;
        color: #cccccc;
    }

    /* How to Download Section */
    .page-plus777-apk__how-to-download-section {
        padding: 40px 20px;
        background-color: #1a1a1a;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

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

    .page-plus777-apk__step-item {
        background-color: #2a2a2a;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-plus777-apk__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: #ffe01b;
        margin-bottom: 15px;
        background-color: #444444;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-plus777-apk__step-title {
        font-size: 1.6em;
        color: #ffe01b;
        margin-bottom: 10px;
    }

    .page-plus777-apk__step-text {
        font-size: 1em;
        color: #cccccc;
        margin-bottom: 15px;
    }

    .page-plus777-apk__step-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-top: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    /* Game Providers Section */
    .page-plus777-apk__game-providers-section {
        padding: 40px 20px;
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-plus777-apk__providers-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 1000px;
        box-sizing: border-box;
    }

    .page-plus777-apk__provider-item {
        background-color: #3a3a3a;
        color: #f0f0f0;
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-plus777-apk__provider-item:hover {
        background-color: #ffe01b;
        color: #1a1a1a;
    }

    /* FAQ Section */
    .page-plus777-apk__faq-section {
        padding: 40px 20px;
        background-color: #1a1a1a;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-plus777-apk__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-plus777-apk__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-plus777-apk__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3a3a3a;
        color: #ffe01b;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-plus777-apk__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-plus777-apk__faq-question-title {
        margin: 0;
        font-size: 1.2em; /* Ensure h3 font size matches */
        color: #ffe01b;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-plus777-apk__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-plus777-apk__faq-item.active .page-plus777-apk__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-plus777-apk__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding matches question */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        font-size: 1em;
        box-sizing: border-box;
    }

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

    /* Call to Action Section */
    .page-plus777-apk__cta-section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #333333, #1a1a1a);
        text-align: center;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-plus777-apk__cta-note {
        font-size: 0.9em;
        color: #888888;
        margin-top: 20px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .page-plus777-apk__hero-title {
            font-size: 2em;
        }

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

        .page-plus777-apk__download-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-plus777-apk__download-button {
            width: 100%;
            max-width: 300px;
            box-sizing: border-box;
        }

        .page-plus777-apk__section-title {
            font-size: 1.8em;
        }

        .page-plus777-apk__section-description {
            font-size: 0.95em;
        }

        .page-plus777-apk__features-grid,
        .page-plus777-apk__steps-grid {
            grid-template-columns: 1fr;
        }

        /* List item responsiveness for providers list */
        .page-plus777-apk__providers-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 10px !important; /* Adjust padding for smaller screens */
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-plus777-apk__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px 15px !important; /* Adjust padding */
            font-size: 1em !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            box-sizing: border-box !important;
        }

        .page-plus777-apk__faq-question {
            font-size: 1em;
            padding: 15px 20px;
        }

        .page-plus777-apk__faq-question-title {
            font-size: 1em;
        }

        .page-plus777-apk__faq-answer {
            padding: 15px 20px !important;
        }

        .page-plus777-apk__faq-item,
        .page-plus777-apk__feature-item,
        .page-plus777-apk__step-item {
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-plus777-apk__hero-image,
        .page-plus777-apk__feature-icon,
        .page-plus777-apk__step-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-plus777-apk__hero-title {
            font-size: 1.6em;
        }

        .page-plus777-apk__section-title {
            font-size: 1.5em;
        }
    }
  