
    :root {
    --primary-color: #FFD700; /* Gold/Yellow */
    --secondary-color: #DC143C; /* Crimson/Red for highlights/buttons */
    --text-color: #E0E0E0; /* Light grey for text */
    --background-color: #1a1a2e; /* Dark blue/purple */
    --card-background: #2a2a4a; /* Slightly lighter dark blue/purple for cards */
}

/* General styling for the page */
.page-https-ae888-moi {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
}

.page-https-ae888-moi__section-padding {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-https-ae888-moi__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-https-ae888-moi__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-https-ae888-moi__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-https-ae888-moi__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-https-ae888-moi__button--primary {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.page-https-ae888-moi__button--primary:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
}

.page-https-ae888-moi__button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-https-ae888-moi__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.page-https-ae888-moi__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small decorative padding, assuming body padding for header offset */
    background-color: #000; /* Fallback */
}

.page-https-ae888-moi__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-https-ae888-moi__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    max-width: 90%;
}

.page-https-ae888-moi__brand-title {
    font-size: 4em;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-https-ae888-moi__hero-tagline {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #F0F0F0;
}

.page-https-ae888-moi__hero-promo {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.page-https-ae888-moi__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-https-ae888-moi__floating-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    font-size: 0.95em;
    white-space: nowrap;
}

.page-https-ae888-moi__floating-button--register {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.page-https-ae888-moi__floating-button--register:hover {
    transform: translateY(-3px);
}

.page-https-ae888-moi__floating-button--login {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.page-https-ae888-moi__floating-button--login:hover {
    transform: translateY(-3px);
}

/* About Section */
.page-https-ae888-moi__about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-https-ae888-moi__feature-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-https-ae888-moi__feature-item:hover {
    transform: translateY(-5px);
}

.page-https-ae888-moi__feature-image {
    width: 100%; /* Ensure images are responsive */
    max-width: 250px; /* Limit max width of feature images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    box-sizing: border-box;
}

.page-https-ae888-moi__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-https-ae888-moi__feature-text {
    font-size: 1em;
    color: #D0D0D0;
}

/* Games Section */
.page-https-ae888-moi__games-section {
    background-color: #1a1a2e;
}

.page-https-ae888-moi__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-https-ae888-moi__game-card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-https-ae888-moi__game-card:hover {
    transform: translateY(-5px);
}

.page-https-ae888-moi__game-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-https-ae888-moi__game-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.page-https-ae888-moi__game-text {
    font-size: 0.95em;
    color: #C0C0C0;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-https-ae888-moi__promotions-section {
    background-color: #202030;
}

.page-https-ae888-moi__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-https-ae888-moi__promo-item {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-https-ae888-moi__promo-item:hover {
    transform: translateY(-5px);
}

.page-https-ae888-moi__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-https-ae888-moi__promo-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.page-https-ae888-moi__promo-text {
    font-size: 0.95em;
    color: #C0C0C0;
    padding: 0 15px 20px;
}

/* Payment & Providers Section */
.page-https-ae888-moi__payment-providers {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--background-color);
}

.page-https-ae888-moi__payment-methods,
.page-https-ae888-moi__game-providers {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-https-ae888-moi__payment-list,
.page-https-ae888-moi__provider-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-https-ae888-moi__payment-item,
.page-https-ae888-moi__provider-item {
    background-color: #3a3a5a;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
    word-break: break-word;
}

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

.page-https-ae888-moi__faq-item {
    background-color: var(--card-background);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.page-https-ae888-moi__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #3a3a5a;
    color: #FFFFFF;
    cursor: pointer;
    user-select: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-https-ae888-moi__faq-question:hover {
    background-color: #4a4a6a;
}

.page-https-ae888-moi__faq-heading {
    margin: 0;
    color: #FFFFFF;
    pointer-events: none; /* Prevent text from blocking click event */
    flex-grow: 1;
}

.page-https-ae888-moi__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent icon from blocking click event */
}

.page-https-ae888-moi__faq-item.active .page-https-ae888-moi__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    color: var(--secondary-color);
}

.page-https-ae888-moi__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    color: #D0D0D0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

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

.page-https-ae888-moi__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.8;
}

/* CTA Section */
.page-https-ae888-moi__cta-section {
    background-color: #1a1a2e;
    text-align: center;
    padding: 60px 20px;
}

.page-https-ae888-moi__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

    .page-https-ae888-moi__subsection-title {
        font-size: 1.5em;
    }

    .page-https-ae888-moi__section-description {
        font-size: 1em;
    }

    .page-https-ae888-moi__hero-section {
        min-height: 400px;
        padding-top: 10px !important; /* Ensure this is not doubled */
    }

    .page-https-ae888-moi__brand-title {
        font-size: 2.8em;
    }

    .page-https-ae888-moi__hero-tagline {
        font-size: 1.4em;
    }

    .page-https-ae888-moi__hero-promo {
        font-size: 1.2em;
    }

    .page-https-ae888-moi__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-https-ae888-moi__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-https-ae888-moi__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 10px;
    }

    .page-https-ae888-moi__floating-button {
        flex: 1;
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .page-https-ae888-moi__about-features,
    .page-https-ae888-moi__game-categories,
    .page-https-ae888-moi__promo-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-https-ae888-moi__feature-item,
    .page-https-ae888-moi__game-card,
    .page-https-ae888-moi__promo-item {
        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-https-ae888-moi__feature-image,
    .page-https-ae888-moi__game-image,
    .page-https-ae888-moi__promo-image {
        max-width: 100% !important;
        height: auto !important; /* Auto height to maintain aspect ratio */
        box-sizing: border-box !important;
    }

    .page-https-ae888-moi__payment-list,
    .page-https-ae888-moi__provider-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-https-ae888-moi__payment-item,
    .page-https-ae888-moi__provider-item {
        width: 90% !important; /* Adjust width to fit container */
        max-width: 90% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-https-ae888-moi__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
    }

    .page-https-ae888-moi__faq-answer {
        padding: 0 15px;
    }

    .page-https-ae888-moi__faq-item.active .page-https-ae888-moi__faq-answer {
        padding: 15px !important;
    }

    .page-https-ae888-moi__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-https-ae888-moi__brand-title {
        font-size: 2.2em;
    }
    .page-https-ae888-moi__hero-tagline {
        font-size: 1.2em;
    }
    .page-https-ae888-moi__hero-promo {
        font-size: 1em;
    }
    .page-https-ae888-moi__section-title {
        font-size: 1.8em;
    }
    .page-https-ae888-moi__floating-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
    }
}
  