
    .page-https-ae888com-shop {
        /* Fallback for header offset if shared.css doesn't provide body padding */
        padding-top: var(--header-offset, 122px); /* Default to 122px if not defined */
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f0f2f5;
        line-height: 1.6;
    }

    /* Hero Section */
    .page-https-ae888com-shop__hero-section {
        position: relative;
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Vibrant gradient */
        color: #fff;
        text-align: center;
        padding: 60px 20px 100px; /* Adjust padding-top for header, add space for floating buttons */
        overflow: hidden;
        padding-top: 10px; /* Decorative top padding if body handles main offset */
    }

    .page-https-ae888com-shop__hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-https-ae888com-shop__brand-title {
        font-size: 3.5em;
        margin-bottom: 10px;
        font-weight: bold;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: #ffd700; /* Gold color for brand */
    }

    .page-https-ae888com-shop__hero-slogan {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: #eee;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-https-ae888com-shop__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        justify-content: center;
    }

    .page-https-ae888com-shop__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        font-size: 1em;
        text-align: center;
        box-sizing: border-box;
        flex-grow: 1;
    }

    .page-https-ae888com-shop__button--register {
        background-color: #ff4d4d; /* Red */
        color: #fff;
        border: 2px solid #ff4d4d;
    }

    .page-https-ae888com-shop__button--register:hover {
        background-color: #e60000;
        transform: translateY(-2px);
    }

    .page-https-ae888com-shop__button--login {
        background-color: #33cc33; /* Green */
        color: #fff;
        border: 2px solid #33cc33;
    }

    .page-https-ae888com-shop__button--login:hover {
        background-color: #28a745;
        transform: translateY(-2px);
    }

    .page-https-ae888com-shop__button--cta {
        background-color: #ff4d4d; /* Red */
        color: #fff;
        border: none;
        padding: 15px 30px;
        font-size: 1.1em;
        width: auto;
        max-width: 300px;
    }

    .page-https-ae888com-shop__button--cta:hover {
        background-color: #e60000;
    }

    /* General Section Styling */
    .page-https-ae888com-shop__about-section,
    .page-https-ae888com-shop__games-section,
    .page-https-ae888com-shop__promotions-section,
    .page-https-ae888com-shop__features-section,
    .page-https-ae888com-shop__payments-section,
    .page-https-ae888com-shop__providers-section,
    .page-https-ae888com-shop__faq-section,
    .page-https-ae888com-shop__cta-section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        background-color: #fff;
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-https-ae888com-shop__section-title {
        font-size: 2em;
        color: #1a2a6c;
        text-align: center;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-https-ae888com-shop__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: #fdbb2d;
        border-radius: 2px;
    }

    .page-https-ae888com-shop__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px;
        color: #555;
        font-size: 1.1em;
    }

    /* Game Grid */
    .page-https-ae888com-shop__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        justify-content: center;
    }

    .page-https-ae888com-shop__game-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for responsive lists */
        width: 100%; /* Important for responsive lists */
    }

    .page-https-ae888com-shop__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-https-ae888com-shop__game-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-bottom: 3px solid #fdbb2d;
    }

    .page-https-ae888com-shop__game-title {
        font-size: 1.4em;
        color: #1a2a6c;
        margin: 15px 10px 5px;
    }

    .page-https-ae888com-shop__game-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 15px;
    }

    /* Promotion Grid */
    .page-https-ae888com-shop__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        justify-content: center;
    }

    .page-https-ae888com-shop__promo-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
        box-sizing: border-box; /* Important for responsive lists */
        width: 100%; /* Important for responsive lists */
    }

    .page-https-ae888com-shop__promo-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-bottom: 3px solid #ff4d4d;
    }

    .page-https-ae888com-shop__promo-title {
        font-size: 1.3em;
        color: #1a2a6c;
        margin: 15px 10px 5px;
    }

    .page-https-ae888com-shop__promo-description {
        font-size: 0.9em;
        color: #666;
        padding: 0 15px 15px;
    }

    .page-https-ae888com-shop__center-button {
        text-align: center;
        margin-top: 30px;
    }

    /* Features Section */
    .page-https-ae888com-shop__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        justify-content: center;
        text-align: center;
    }

    .page-https-ae888com-shop__feature-item {
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Important for responsive lists */
        width: 100%; /* Important for responsive lists */
    }

    .page-https-ae888com-shop__feature-icon {
        width: 200px; /* Min size 200x200px required */
        height: 200px; /* Min size 200x200px required */
        margin-bottom: 15px;
        max-width: 100%; /* Ensure responsiveness */
        object-fit: contain; /* To prevent distortion if image is not square */
    }

    .page-https-ae888com-shop__feature-title {
        font-size: 1.3em;
        color: #1a2a6c;
        margin-bottom: 10px;
    }

    .page-https-ae888com-shop__feature-description {
        font-size: 0.95em;
        color: #666;
    }

    /* Payment & Provider Logos */
    .page-https-ae888com-shop__payment-logos,
    .page-https-ae888com-shop__provider-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .page-https-ae888com-shop__payment-logo,
    .page-https-ae888com-shop__provider-logo {
        max-width: 200px;
        max-height: 200px;
        height: auto;
        filter: grayscale(0%); /* Ensure no color filters are applied */
        transition: transform 0.3s ease;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
        object-fit: contain;
        box-sizing: border-box; /* Important for responsive lists */
        width: 100%; /* Important for responsive lists */
    }

    .page-https-ae888com-shop__payment-logo:hover,
    .page-https-ae888com-shop__provider-logo:hover {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .page-https-ae888com-shop__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-https-ae888com-shop__faq-item {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background-color: #f9f9f9;
        box-sizing: border-box; /* Important for responsive lists */
        width: 100%; /* Important for responsive lists */
    }

    .page-https-ae888com-shop__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #1a2a6c;
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-https-ae888com-shop__faq-question:hover {
        background-color: #2b3a8c;
    }

    .page-https-ae888com-shop__faq-heading {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent text selection interfering with click */
        color: #fff; /* Ensure good contrast */
    }

    .page-https-ae888com-shop__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none; /* Prevent icon interfering with click */
        color: #fdbb2d; /* Gold for toggle icon */
    }

    .page-https-ae888com-shop__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #333; /* Ensure good contrast */
        background-color: #fff;
    }

    .page-https-ae888com-shop__faq-answer p {
        margin: 0;
        padding: 15px 0;
        font-size: 0.95em;
    }

    .page-https-ae888com-shop__faq-item.active .page-https-ae888com-shop__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-https-ae888com-shop__faq-item.active .page-https-ae888com-shop__faq-toggle {
        /* content: '−'; Handled by JS */
        color: #ff4d4d; /* Red for active toggle */
    }

    /* Call to Action Section */
    .page-https-ae888com-shop__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #1a2a6c;
        color: #fff;
        margin-bottom: 20px;
    }

    .page-https-ae888com-shop__cta-section .page-https-ae888com-shop__section-title {
        color: #ffd700;
    }

    .page-https-ae888com-shop__cta-section .page-https-ae888com-shop__section-title::after {
        background-color: #ffd700;
    }

    .page-https-ae888com-shop__cta-section .page-https-ae888com-shop__section-description {
        color: #eee;
        margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-https-ae888com-shop {
            padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
        }

        .page-https-ae888com-shop__hero-section {
            padding: 40px 15px 80px;
        }

        .page-https-ae888com-shop__brand-title {
            font-size: 2.5em;
        }

        .page-https-ae888com-shop__hero-slogan {
            font-size: 1.2em;
        }

        .page-https-ae888com-shop__floating-buttons {
            gap: 10px;
            width: 95%;
            bottom: 15px;
        }

        .page-https-ae888com-shop__button {
            padding: 10px 15px;
            font-size: 0.9em;
        }

        .page-https-ae888com-shop__section-title {
            font-size: 1.8em;
        }

        .page-https-ae888com-shop__section-description {
            font-size: 1em;
            margin-bottom: 20px;
        }

        /* Responsive for lists (games, promos, features) */
        .page-https-ae888com-shop__game-grid,
        .page-https-ae888com-shop__promo-grid,
        .page-https-ae888com-shop__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-https-ae888com-shop__game-item,
        .page-https-ae888com-shop__promo-item,
        .page-https-ae888com-shop__feature-item {
            width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px; /* Adjust padding for mobile */
        }

        .page-https-ae888com-shop__game-description,
        .page-https-ae888com-shop__promo-description,
        .page-https-ae888com-shop__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-https-ae888com-shop__game-image,
        .page-https-ae888com-shop__promo-image,
        .page-https-ae888com-shop__feature-icon,
        .page-https-ae888com-shop__payment-logo,
        .page-https-ae888com-shop__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .page-https-ae888com-shop__payments-section,
        .page-https-ae888com-shop__providers-section,
        .page-https-ae888com-shop__faq-section,
        .page-https-ae888com-shop__cta-section {
            padding: 30px 15px;
            margin-top: 15px;
        }

        .page-https-ae888com-shop__payment-logos,
        .page-https-ae888com-shop__provider-logos {
            gap: 15px;
        }

        .page-https-ae888com-shop__faq-question {
            padding: 12px 15px;
        }

        .page-https-ae888com-shop__faq-heading {
            font-size: 1em;
        }

        .page-https-ae888com-shop__faq-answer {
            padding: 0 10px;
        }
        .page-https-ae888com-shop__faq-item.active .page-https-ae888com-shop__faq-answer {
            padding: 15px 10px !important;
        }
        .page-https-ae888com-shop__faq-answer p {
            padding: 10px 0;
        }
    }

    @media (max-width: 480px) {
        .page-https-ae888com-shop__brand-title {
            font-size: 2em;
        }
        .page-https-ae888com-shop__hero-slogan {
            font-size: 1em;
        }
        .page-https-ae888com-shop__button {
            padding: 8px 12px;
            font-size: 0.85em;
        }
        .page-https-ae888com-shop__floating-buttons {
            max-width: 300px;
        }
    }
  