
    /* Base styles for the page */
    .page-me77-link {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-top: 10px; /* Small padding top, assuming shared.css handles body padding for header */
    }

    .page-me77-link__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Hero Section */
    .page-me77-link__hero-section {
        background: linear-gradient(135deg, #333, #111);
        padding: 80px 20px;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-me77-link__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.2;
    }

    .page-me77-link__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(5px);
    }

    .page-me77-link__hero-content {
        position: relative;
        z-index: 1;
    }

    .page-me77-link__hero-title {
        font-size: 3.5em;
        color: #ffcc00; /* Gold */
        margin-bottom: 20px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-me77-link__hero-subtitle {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-me77-link__cta-button {
        display: inline-block;
        background-color: #ffcc00; /* Gold */
        color: #1a1a1a;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none;
        cursor: pointer;
    }

    .page-me77-link__cta-button:hover {
        background-color: #e6b800; /* Darker gold */
        transform: translateY(-3px);
    }

    /* Section Styles */
    .page-me77-link__section {
        background-color: #222;
        padding: 60px 20px;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .page-me77-link__section-title {
        font-size: 2.5em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-me77-link__section-paragraph {
        font-size: 1.1em;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 30px auto;
        color: #ccc;
    }

    /* Features Grid */
    .page-me77-link__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-me77-link__feature-card {
        background-color: #333;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-me77-link__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-me77-link__feature-icon-wrapper {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-me77-link__feature-icon {
        width: 200px;
        height: 200px;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-me77-link__feature-title {
        font-size: 1.8em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-me77-link__feature-description {
        font-size: 1em;
        color: #bbb;
    }

    /* Game Providers Section */
    .page-me77-link__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
    }

    .page-me77-link__provider-logo-wrapper {
        background-color: #333;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 220px; /* Adjusted wrapper size to accommodate 200x200 image + padding */
        height: 220px; /* Adjusted wrapper size */
        max-width: 100%;
        transition: transform 0.3s ease;
    }

    .page-me77-link__provider-logo-wrapper:hover {
        transform: translateY(-3px);
    }

    .page-me77-link__provider-logo {
        width: 200px;
        height: 200px;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Payment Methods */
    .page-me77-link__payments-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-me77-link__payment-item {
        background-color: #333;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        color: #ffcc00;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease;
    }

    .page-me77-link__payment-item:hover {
        background-color: #444;
    }

    /* FAQ Section */
    .page-me77-link__faq-list {
        margin-top: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-me77-link__faq-item {
        background-color: #333;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-me77-link__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #444;
        color: #ffcc00;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-me77-link__faq-question:hover {
        background-color: #555;
    }

    .page-me77-link__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event on parent */
        color: #ffcc00; /* Ensure text color is consistent */
    }

    .page-me77-link__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Crucial for click event on parent */
        transition: transform 0.3s ease;
    }

    .page-me77-link__faq-item.active .page-me77-link__faq-toggle {
        transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-me77-link__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        color: #ccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box; /* Important for padding calculation */
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-me77-link__hero-title {
            font-size: 3em;
        }
        .page-me77-link__hero-subtitle {
            font-size: 1.3em;
        }
        .page-me77-link__section-title {
            font-size: 2em;
        }
        .page-me77-link__feature-title {
            font-size: 1.6em;
        }
    }

    @media (max-width: 768px) {
        .page-me77-link__hero-section {
            padding: 60px 15px;
        }
        .page-me77-link__hero-title {
            font-size: 2.5em;
        }
        .page-me77-link__hero-subtitle {
            font-size: 1.1em;
        }
        .page-me77-link__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-me77-link__section {
            padding: 40px 15px;
        }
        .page-me77-link__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-me77-link__section-paragraph {
            font-size: 1em;
        }

        /* List items responsive for features grid */
        .page-me77-link__features-grid {
            grid-template-columns: 1fr;
        }
        .page-me77-link__feature-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px; /* Adjust padding for mobile */
        }
        .page-me77-link__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* List items responsive for providers grid */
        .page-me77-link__providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust minmax for smaller screens */
            gap: 15px;
        }
        .page-me77-link__provider-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important; /* Allow height to adjust */
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px; /* Smaller padding */
        }
        .page-me77-link__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            object-fit: contain !important;
        }

        /* List items responsive for payments list */
        .page-me77-link__payments-list {
            flex-direction: column;
            align-items: center;
        }
        .page-me77-link__payment-item {
            width: 100% !important;
            max-width: 250px !important; /* Keep a reasonable max-width */
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            text-align: center;
            padding: 12px 20px;
            font-size: 1em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* FAQ responsive */
        .page-me77-link__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-me77-link__faq-answer {
            padding: 15px 20px;
        }
        .page-me77-link__faq-item.active .page-me77-link__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-me77-link__hero-title {
            font-size: 2em;
        }
        .page-me77-link__hero-subtitle {
            font-size: 0.9em;
        }
        .page-me77-link__section-title {
            font-size: 1.5em;
        }
        .page-me77-link__cta-button {
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-me77-link__faq-question {
            font-size: 1em;
        }
    }

    /* Image responsive default for all images */
    .page-me77-link img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Enforce image container responsive */
    .page-me77-link__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-me77-link img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-me77-link__image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  