
    /* Base styles for the page container */
.page-a-a88 {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fallback for header offset if body padding is not applied by shared CSS */
/* This ensures the content starts below the header, but only if not already handled */
.page-a-a88:first-child {
    padding-top: var(--header-offset, 122px); /* Default to 122px if variable not set */
}

.page-a-a88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-a-a88__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small decorative padding, assuming body already has header offset */
    box-sizing: border-box;
}

.page-a-a88__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Darken image for text readability */
    max-width: 100%; /* Responsive image */
}

.page-a-a88__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text */
    border-radius: 10px;
    max-width: 90%;
}

.page-a-a88__hero-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffcc00; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-a-a88__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 300;
}

.page-a-a88__hero-cta {
    display: inline-block;
    background-color: #e74c3c; /* Red accent */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}

.page-a-a88__hero-cta:hover {
    background-color: #c0392b;
}

/* General Section Styles */
.page-a-a88__section-title {
    font-size: 2em;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-a-a88__section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

/* Product Showcase */
.page-a-a88__product-showcase {
    background-color: #222222;
    padding: 50px 0;
}

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

.page-a-a88__product-item {
    background-color: #333333;
    border-radius: 10px;
    overflow: hidden;
    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-a-a88__product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-a-a88__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
}

.page-a-a88__product-name {
    font-size: 1.5em;
    color: #ffcc00;
    margin: 15px 0 10px;
}

.page-a-a88__product-desc {
    padding: 0 15px 20px;
    color: #bbbbbb;
}

/* Promotions Section */
.page-a-a88__promotions-section {
    padding: 50px 0;
}

.page-a-a88__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-a-a88__promo-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-a-a88__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
}

.page-a-a88__promo-title {
    font-size: 1.4em;
    color: #e74c3c;
    margin: 15px 0 10px;
    padding: 0 15px;
}

.page-a-a88__promo-desc {
    padding: 0 15px 20px;
    color: #bbbbbb;
}

.page-a-a88__cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #cccccc;
}

.page-a-a88__cta-text a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-a-a88__cta-text a:hover {
    color: #e74c3c;
}

/* Why Choose Us Section */
.page-a-a88__why-choose-us {
    background-color: #1a1a1a;
    padding: 50px 0;
}

.page-a-a88__features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-a-a88__features-item {
    background-color: #2a2a2a;
    border-left: 5px solid #ffcc00;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Important for list items */
}

.page-a-a88__feature-title {
    font-size: 1.3em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-a-a88__feature-desc {
    color: #bbbbbb;
}

/* FAQ Section */
.page-a-a88__faq-section {
    padding: 50px 0;
    background-color: #222222;
}

.page-a-a88__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.page-a-a88__faq-question:hover {
    background-color: #555555;
}

.page-a-a88__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
    flex-grow: 1;
    pointer-events: none; /* Prevent click interference */
}

.page-a-a88__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent click interference */
}

.page-a-a88__faq-item.active .page-a-a88__faq-toggle {
    transform: rotate(45deg); /* Change + to X (or - if preferred) */
}

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

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

.page-a-a88__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-a-a88__cta-final-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.page-a-a88__cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-a-a88__cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

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

.page-a-a88__floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding: 12px 15px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-a-a88__floating-btn--register {
    background-color: #2ecc71; /* Green for register */
}

.page-a-a88__floating-btn--register:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.page-a-a88__floating-btn--login {
    background-color: #3498db; /* Blue for login */
}

.page-a-a88__floating-btn--login:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-a-a88__hero-title {
        font-size: 1.8em;
    }

    .page-a-a88__hero-subtitle {
        font-size: 1em;
    }

    .page-a-a88__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-a-a88__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
        padding-top: 30px;
    }

    .page-a-a88__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .page-a-a88__product-grid,
    .page-a-a88__promo-grid,
    .page-a-a88__features-list {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
        padding: 0 10px; /* Add horizontal padding to grids */
    }

    /* List item specific responsive requirements */
    .page-a-a88__features-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-a-a88__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-a-a88__product-image,
    .page-a-a88__promo-image {
        height: 180px; /* Smaller images on mobile */
    }

    .page-a-a88__faq-question {
        padding: 15px 20px;
    }

    .page-a-a88__faq-title {
        font-size: 1.1em;
    }

    .page-a-a88__faq-answer {
        padding: 0 20px;
    }

    .page-a-a88__faq-item.active .page-a-a88__faq-answer {
        padding: 15px 20px !important;
    }

    .page-a-a88__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Side-by-side on mobile */
        width: calc(100% - 30px); /* Take full width minus padding */
        justify-content: space-around;
        gap: 5px;
    }

    .page-a-a88__floating-btn {
        width: 48%; /* Adjust width for two buttons */
        padding: 10px 10px;
        font-size: 0.9em;
    }

    .page-a-a88__container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-a-a88__hero-section {
        height: 50vh;
    }

    .page-a-a88__hero-title {
        font-size: 1.5em;
    }

    .page-a-a88__hero-subtitle {
        font-size: 0.9em;
    }

    .page-a-a88__hero-cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
  