
    /* General styling for page-98ap */
    .page-98ap {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding at the top, body padding-top is expected from shared.css */
    }

    .page-98ap__section-title {
        font-size: 2.5rem;
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .page-98ap__section-description {
        font-size: 1.1rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: #c0c0c0;
    }

    /* Hero Section */
    .page-98ap__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #2a0a4c, #0a0a2a);
        text-align: center;
        border-bottom: 5px solid #e94560;
        position: relative;
        overflow: hidden;
    }

    .page-98ap__hero-content {
        max-width: 900px;
        margin-bottom: 40px;
        z-index: 1;
    }

    .page-98ap__hero-title {
        font-size: 3.5rem;
        color: #f0f0f0;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-98ap__hero-description {
        font-size: 1.3rem;
        color: #c0c0c0;
        margin-bottom: 30px;
    }

    .page-98ap__hero-cta-button,
    .page-98ap__main-cta-button {
        display: inline-block;
        background-color: #e94560; /* Accent color */
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-98ap__hero-cta-button:hover,
    .page-98ap__main-cta-button:hover {
        background-color: #ff6b82;
        transform: translateY(-3px);
    }

    .page-98ap__hero-image-container {
        width: 100%;
        max-width: 600px;
        margin-top: 40px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .page-98ap__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Features Section */
    .page-98ap__features-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

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

    .page-98ap__feature-item {
        background-color: #2a2a4a;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-98ap__feature-item:hover {
        transform: translateY(-10px);
    }

    .page-98ap__feature-icon {
        width: 200px; /* Min size */
        height: 150px; /* Min size */
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-98ap__feature-title {
        font-size: 1.8rem;
        color: #f0f0f0;
        margin-bottom: 15px;
    }

    .page-98ap__feature-text {
        font-size: 1rem;
        color: #c0c0c0;
    }

    /* Games Section */
    .page-98ap__games-section {
        padding: 60px 20px;
        background-color: #0f0f20;
    }

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

    .page-98ap__game-card {
        background-color: #2a2a4a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-98ap__game-card:hover {
        transform: translateY(-10px);
    }

    .page-98ap__game-image {
        width: 100%;
        height: 250px; /* Ensure images are not too small and have consistent height */
        object-fit: cover;
        display: block;
    }

    .page-98ap__game-title {
        font-size: 1.8rem;
        color: #f0f0f0;
        padding: 20px 15px 10px;
    }

    .page-98ap__game-text {
        font-size: 1rem;
        color: #c0c0c0;
        padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-98ap__promo-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

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

    .page-98ap__promo-card {
        background-color: #2a2a4a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-98ap__promo-card:hover {
        transform: translateY(-10px);
    }

    .page-98ap__promo-image {
        width: 100%;
        height: 220px; /* Consistent height for promo images */
        object-fit: cover;
        display: block;
    }

    .page-98ap__promo-title {
        font-size: 1.8rem;
        color: #f0f0f0;
        padding: 20px 15px 10px;
    }

    .page-98ap__promo-text {
        font-size: 1rem;
        color: #c0c0c0;
        padding: 0 15px 20px;
    }

    .page-98ap__promo-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* FAQ Section */
    .page-98ap__faq-section {
        padding: 60px 20px;
        background-color: #0f0f20;
    }

    .page-98ap__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-98ap__faq-item {
        background-color: #2a2a4a;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-98ap__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a5a;
        transition: background-color 0.3s ease;
    }

    .page-98ap__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-98ap__faq-q-text {
        font-size: 1.3rem;
        color: #f0f0f0;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-98ap__faq-toggle {
        font-size: 2rem;
        color: #e94560;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-98ap__faq-item.active .page-98ap__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-98ap__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: #c0c0c0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-98ap__faq-answer p {
        margin: 0;
        font-size: 1.1rem;
    }

    /* Bottom CTA Section */
    .page-98ap__cta-bottom-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
        text-align: center;
    }

    .page-98ap__main-cta-button--large {
        padding: 18px 40px;
        font-size: 1.3rem;
    }

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

    .page-98ap__floating-button {
        background-color: #e94560;
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 12px 25px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-98ap__floating-button:hover {
        background-color: #ff6b82;
        transform: translateY(-3px);
    }

    .page-98ap__floating-button--login {
        background-color: #4a90e2; /* Different color for login */
    }

    .page-98ap__floating-button--login:hover {
        background-color: #6aabf7;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-98ap__hero-title {
            font-size: 3rem;
        }
        .page-98ap__hero-description {
            font-size: 1.2rem;
        }
        .page-98ap__section-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .page-98ap__hero-section {
            padding: 40px 15px;
        }
        .page-98ap__hero-title {
            font-size: 2.5rem;
        }
        .page-98ap__hero-description {
            font-size: 1.1rem;
        }
        .page-98ap__hero-cta-button,
        .page-98ap__main-cta-button {
            padding: 12px 25px;
            font-size: 1rem;
        }

        .page-98ap__section-title {
            font-size: 2rem;
            padding-top: 30px;
        }
        .page-98ap__section-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        /* List items responsiveness */
        .page-98ap__features-grid,
        .page-98ap__games-grid,
        .page-98ap__promo-grid {
            grid-template-columns: 1fr; /* Stack items */
            gap: 20px;
        }
        .page-98ap__feature-item,
        .page-98ap__game-card,
        .page-98ap__promo-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-98ap__feature-text,
        .page-98ap__game-text,
        .page-98ap__promo-text,
        .page-98ap__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-98ap__game-image,
        .page-98ap__promo-image,
        .page-98ap__hero-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-98ap__faq-question {
            padding: 15px 20px;
        }
        .page-98ap__faq-q-text {
            font-size: 1.1rem;
        }
        .page-98ap__faq-toggle {
            font-size: 1.8rem;
        }
        .page-98ap__faq-answer {
            padding: 0 20px;
        }
        .page-98ap__faq-item.active .page-98ap__faq-answer {
            padding: 15px 20px !important;
        }

        .page-98ap__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            gap: 10px;
        }
        .page-98ap__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .page-98ap__hero-title {
            font-size: 2rem;
        }
        .page-98ap__hero-description {
            font-size: 1rem;
        }
        .page-98ap__section-title {
            font-size: 1.8rem;
        }
        .page-98ap__feature-title,
        .page-98ap__game-title,
        .page-98ap__promo-title {
            font-size: 1.5rem;
        }
        .page-98ap__faq-q-text {
            font-size: 1rem;
        }
        .page-98ap__faq-toggle {
            font-size: 1.5rem;
        }
    }
  