
    /* CSS for page-88-44 */
.page-88-44 {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey for text */
    background-color: #1a1a2e; /* Dark blue/purple background */
    line-height: 1.6;
    padding-bottom: 20px; /* Space above footer */
}

/* Ensure the main content starts slightly below the header if shared.css doesn't handle body padding */
.page-88-44__hero-section {
    padding-top: 10px; /* Small decorative top padding, assuming body already has padding-top from header-offset */
    padding-bottom: 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-88-44__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.page-88-44__main-title {
    font-size: 2.8em;
    color: #00bcd4; /* Cyan accent for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.page-88-44__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-88-44__hero-description strong {
    color: #e94560; /* Red/pink accent for strong text */
}

.page-88-44__cta-button {
    display: inline-block;
    background-color: #e94560; /* Red/pink accent for CTA */
    color: #ffffff;
    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;
    border: none;
    cursor: pointer;
}

.page-88-44__cta-button:hover {
    background-color: #d13a52;
    transform: translateY(-3px);
}

.page-88-44__section-title {
    font-size: 2.2em;
    color: #00bcd4;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-88-44__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e94560;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Features Section */
.page-88-44__features-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88-44__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-88-44__feature-item {
    background-color: #2a2a4a; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88-44__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-88-44__feature-icon {
    width: 100px; 
    height: 100px;
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: cover;
}

.page-88-44__feature-heading {
    font-size: 1.5em;
    color: #00bcd4;
    margin-bottom: 15px;
}

.page-88-44__feature-text {
    color: #cccccc;
    font-size: 0.95em;
}

/* Games Showcase Section */
.page-88-44__games-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88-44__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-88-44__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, box-shadow 0.3s ease;
    text-align: center;
}

.page-88-44__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-88-44__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
}

.page-88-44__game-title {
    font-size: 1.4em;
    color: #00bcd4;
    padding: 20px 15px 10px;
}

.page-88-44__game-description {
    color: #cccccc;
    padding: 0 15px 20px;
    font-size: 0.9em;
}

/* Promotions Section */
.page-88-44__promotions-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-88-44__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.page-88-44__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, box-shadow 0.3s ease;
    text-align: center;
}

.page-88-44__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-88-44__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
}

.page-88-44__promo-title {
    font-size: 1.4em;
    color: #00bcd4;
    padding: 20px 15px 10px;
}

.page-88-44__promo-description {
    color: #cccccc;
    padding: 0 15px 20px;
    font-size: 0.9em;
}

.page-88-44__cta-button--secondary {
    background-color: #00bcd4;
}

.page-88-44__cta-button--secondary:hover {
    background-color: #00a4b8;
}

/* FAQ Section */
.page-88-44__faq-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-88-44__faq-list {
    margin-top: 30px;
}

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

.page-88-44__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a5a; /* Slightly different background for question */
    border-bottom: 1px solid #4a4a6a;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-88-44__faq-question:hover {
    background-color: #4a4a6a;
}

.page-88-44__faq-q-text {
    font-size: 1.2em;
    color: #e0e0e0;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-88-44__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #e94560;
    transition: color 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
    min-width: 20px;
    text-align: center;
}

.page-88-44__faq-item.active .page-88-44__faq-toggle {
    color: #00bcd4;
}

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

.page-88-44__faq-item.active .page-88-44__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-88-44__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Adjust as needed */
}

/* Final CTA Section */
.page-88-44__cta-final-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #0f0f1d;
    margin-top: 60px;
}

.page-88-44__cta-final-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-88-44__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

    .page-88-44__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }

    .page-88-44__hero-content,
    .page-88-44__features-section,
    .page-88-44__games-showcase,
    .page-88-44__promotions-section,
    .page-88-44__faq-section,
    .page-88-44__cta-final-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-88-44__features-grid,
    .page-88-44__games-grid,
    .page-88-44__promo-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
    }

    .page-88-44__feature-item,
    .page-88-44__game-card,
    .page-88-44__promo-card {
        padding: 20px;
    }

    .page-88-44__game-image,
    .page-88-44__promo-image {
        height: 180px; /* Slightly smaller images on mobile */
    }

    .page-88-44__faq-question {
        padding: 15px 20px;
    }

    .page-88-44__faq-q-text {
        font-size: 1.1em;
    }

    .page-88-44__faq-answer {
        padding: 0 20px;
    }

    .page-88-44__faq-item.active .page-88-44__faq-answer {
        padding: 15px 20px !important;
    }

    /* List item specific responsive styles */
    .page-88-44__features-grid > div,
    .page-88-44__games-grid > div,
    .page-88-44__promo-grid > div,
    .page-88-44__faq-list > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* List containers themselves also need similar treatment if they have padding/margin */
    .page-88-44__features-grid,
    .page-88-44__games-grid,
    .page-88-44__promo-grid,
    .page-88-44__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure text wrapping */
    p, h1, h2, h3, strong {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}

/* Ensure all images are responsive and within their containers */
.page-88-44 img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: block; /* To remove extra space below images */
}

/* Container for images (e.g. game cards, promo cards) */
.page-88-44__game-card,
.page-88-44__promo-card,
.page-88-44__feature-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
  