
    /* CSS content for .page-88qq */
.page-88qq {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e; /* Dark background for a gaming site */
    line-height: 1.6;
    padding-top: 10px; /* Small padding at the top, assuming body handles header offset */
}

/* Base styles for sections */
.page-88qq__section-title {
    font-size: 2.2em;
    color: #e94560; /* Vibrant accent color */
    text-align: center;
    margin-bottom: 25px;
    padding-top: 30px;
    font-weight: bold;
}

.page-88qq__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #ccc;
}

/* Hero Section */
.page-88qq__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}

.page-88qq__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-88qq__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-88qq__hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 900px;
}

.page-88qq__hero-title {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-88qq__hero-subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-88qq__hero-button {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-88qq__hero-button:hover {
    background-color: #c93550;
    transform: translateY(-2px);
}

/* Promotions Grid */
.page-88qq__promotions-grid {
    padding: 40px 20px;
    background-color: #1a1a2e;
}

.page-88qq__grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88qq__promotion-card {
    background-color: #2c2c40;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-88qq__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88qq__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
    box-sizing: border-box; /* Responsive image */
}

.page-88qq__promotion-card .page-88qq__card-title {
    font-size: 1.5em;
    color: #e94560;
    margin: 20px 15px 10px 15px;
    font-weight: 600;
}

.page-88qq__promotion-card .page-88qq__card-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-88qq__cta-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-88qq__cta-button {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-88qq__cta-button:hover {
    background-color: #c93550;
    transform: translateY(-2px);
}

/* Product Display */
.page-88qq__product-display {
    padding: 60px 20px;
    background-color: #2c2c40;
}

.page-88qq__product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88qq__product-item {
    background-color: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88qq__product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88qq__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
    box-sizing: border-box; /* Responsive image */
}

.page-88qq__product-title {
    font-size: 1.6em;
    color: #e94560;
    margin: 20px 15px 10px 15px;
    font-weight: 600;
}

.page-88qq__product-text {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px 15px;
}

/* About Us Section */
.page-88qq__about-us-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-88qq__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.page-88qq__about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    box-sizing: border-box; /* Responsive image */
}

.page-88qq__about-text {
    font-size: 1.1em;
    color: #ccc;
    text-align: justify;
}

.page-88qq__about-text p {
    margin-bottom: 15px;
}

.page-88qq__about-text strong {
    color: #e94560;
}

/* Why Choose Us Section */
.page-88qq__why-choose-us {
    padding: 60px 20px;
    background-color: #2c2c40;
}

.page-88qq__features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88qq__feature-item {
    background-color: #1a1a2e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88qq__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88qq__feature-image {
    width: 100%;
    max-width: 250px; /* Larger images for features */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    box-sizing: border-box; /* Responsive image */
}

.page-88qq__feature-title {
    font-size: 1.4em;
    color: #e94560;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-88qq__feature-description {
    font-size: 1em;
    color: #ccc;
}

/* FAQ Section */
.page-88qq__faq-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-88qq__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.page-88qq__faq-question:hover {
    background-color: #4a4a60;
}

.page-88qq__faq-question-text {
    font-size: 1.2em;
    color: #e94560;
    margin: 0;
    font-weight: 600;
    pointer-events: none; /* Prevent h3 from blocking click on parent */
}

.page-88qq__faq-toggle {
    font-size: 1.8em;
    color: #e94560;
    font-weight: bold;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click on parent */
}

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

.page-88qq__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding matches question padding-left/right */
    color: #ccc;
    font-size: 1em;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

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

.page-88qq__faq-answer p {
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Final Call to Action */
.page-88qq__cta-final {
    padding: 60px 20px;
    text-align: center;
    background-color: #2c2c40;
    margin-bottom: 80px; /* Space for floating buttons */
}

/* Floating Buttons */
.page-88qq__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-88qq__floating-button {
    background-color: #e94560;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-88qq__floating-button:hover {
    background-color: #c93550;
    transform: translateX(-50%) translateY(-3px); /* Adjust for centered button */
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .page-88qq__hero-title {
        font-size: 4em;
    }
    .page-88qq__hero-subtitle {
        font-size: 1.5em;
    }
    .page-88qq__section-title {
        font-size: 2.8em;
    }
    .page-88qq__grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-88qq__product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-88qq__about-content {
        flex-direction: row;
        text-align: left;
    }
    .page-88qq__about-image {
        max-width: 40%;
    }
    .page-88qq__about-text {
        max-width: 55%;
    }
    .page-88qq__features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-88qq__floating-button:hover {
        transform: translateY(-3px); /* No translateX for individual buttons */
    }
}

@media (min-width: 1024px) {
    .page-88qq__grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .page-88qq__product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .page-88qq__features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile-specific list item and image adjustments */
@media (max-width: 768px) {
    /* Ensure all list items and grid items are full width */
    .page-88qq__grid-container > div,
    .page-88qq__product-grid > div,
    .page-88qq__features-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important; /* Adjust padding for mobile */
    }

    .page-88qq__grid-container,
    .page-88qq__product-grid,
    .page-88qq__features-grid {
        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;
    }

    /* Text wrapping for long content */
    .page-88qq__promotion-card .page-88qq__card-description,
    .page-88qq__product-text,
    .page-88qq__feature-description,
    .page-88qq__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Images responsiveness */
    .page-88qq__promotion-image,
    .page-88qq__product-image,
    .page-88qq__about-image,
    .page-88qq__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-88qq__hero-title {
        font-size: 2.2em;
    }
    .page-88qq__hero-subtitle {
        font-size: 1em;
    }
    .page-88qq__section-title {
        font-size: 1.8em;
    }
    .page-88qq__floating-buttons {
        gap: 10px;
    }
    .page-88qq__floating-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-88qq__faq-question {
        padding: 15px 20px;
    }
    .page-88qq__faq-question-text {
        font-size: 1.1em;
    }
    .page-88qq__faq-toggle {
        font-size: 1.5em;
    }
    .page-88qq__faq-answer {
        padding: 0 20px;
    }
    .page-88qq__faq-item.active .page-88qq__faq-answer {
        padding: 15px 20px !important;
    }
}
  