
    /* Base styles for the page wrapper */
.page-8xx-bet-ng-nh-p {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background for a gaming site */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for fixed floating buttons */
}

/* Ensure body padding for fixed header is handled by shared.css.
   Add a small top padding to the first section for aesthetic. */
.page-8xx-bet-ng-nh-p__hero-section {
    padding: 10px 20px 40px;
    text-align: center;
    background-image: url('[GALLERY:hero:1920x1080:8xxbet,login,background]');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.page-8xx-bet-ng-nh-p__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.page-8xx-bet-ng-nh-p__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-8xx-bet-ng-nh-p__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #e6b800; /* Gold/yellow for branding */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-8xx-bet-ng-nh-p__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-8xx-bet-ng-nh-p__button {
    display: inline-block;
    background-color: #e6b800; /* Gold/yellow */
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-8xx-bet-ng-nh-p__button:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

.page-8xx-bet-ng-nh-p__section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #24243e; /* Slightly lighter dark background */
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-8xx-bet-ng-nh-p__section-title {
    font-size: 2.2em;
    color: #e6b800;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-8xx-bet-ng-nh-p__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e6b800;
    margin: 10px auto 0;
}

.page-8xx-bet-ng-nh-p__section-subtitle {
    font-size: 1.5em;
    color: #e6b800;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-8xx-bet-ng-nh-p__content-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #c0c0c0;
    text-align: justify;
}

/* Floating Buttons */
.page-8xx-bet-ng-nh-p__floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(36, 36, 62, 0.95); /* Semi-transparent dark background */
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    box-sizing: border-box;
}

.page-8xx-bet-ng-nh-p__button--register {
    background-color: #e6b800;
    color: #1a1a2e;
    flex: 1;
    margin-right: 10px;
    text-align: center;
}

.page-8xx-bet-ng-nh-p__button--login {
    background-color: #3f51b5; /* A different color for distinction */
    color: #ffffff;
    flex: 1;
    margin-left: 10px;
    text-align: center;
}

.page-8xx-bet-ng-nh-p__button--login:hover {
    background-color: #5c6bc0;
}

/* Steps Section */
.page-8xx-bet-ng-nh-p__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-8xx-bet-ng-nh-p__step-item {
    background-color: #1f1f3a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-8xx-bet-ng-nh-p__step-item:hover {
    transform: translateY(-5px);
}

.page-8xx-bet-ng-nh-p__step-number {
    font-size: 2.5em;
    color: #e6b800;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-8xx-bet-ng-nh-p__step-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-8xx-bet-ng-nh-p__step-description {
    color: #c0c0c0;
    font-size: 1em;
}

/* Product Showcase */
.page-8xx-bet-ng-nh-p__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-8xx-bet-ng-nh-p__product-card {
    background-color: #1f1f3a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-8xx-bet-ng-nh-p__product-card:hover {
    transform: translateY(-5px);
}

.page-8xx-bet-ng-nh-p__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Important for responsive images */
}

.page-8xx-bet-ng-nh-p__product-info {
    padding: 20px;
}

.page-8xx-bet-ng-nh-p__product-title {
    font-size: 1.4em;
    color: #e6b800;
    margin-bottom: 10px;
}

.page-8xx-bet-ng-nh-p__product-description {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* Providers and Payments */
.page-8xx-bet-ng-nh-p__logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller grid for logos */
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-top: 30px;
}

.page-8xx-bet-ng-nh-p__logo-item {
    background-color: #1f1f3a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Uniform height for logos */
    box-sizing: border-box;
    width: 100%; /* Ensure it takes full grid column width */
}

.page-8xx-bet-ng-nh-p__logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%); /* Make logos look uniform */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box; /* Important for responsive images */
}

.page-8xx-bet-ng-nh-p__logo-image:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.page-8xx-bet-ng-nh-p__faq-container {
    margin-top: 30px;
}

.page-8xx-bet-ng-nh-p__faq-item {
    background-color: #1f1f3a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-8xx-bet-ng-nh-p__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #2a2a4a;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-8xx-bet-ng-nh-p__faq-question:hover {
    background-color: #35355c;
}

.page-8xx-bet-ng-nh-p__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #e6b800;
    pointer-events: none; /* Crucial for click handler on parent */
}

.page-8xx-bet-ng-nh-p__faq-toggle {
    font-size: 1.8em;
    color: #e6b800;
    font-weight: bold;
    line-height: 1;
    pointer-events: none; /* Crucial for click handler on parent */
    transition: transform 0.3s ease;
}

.page-8xx-bet-ng-nh-p__faq-item.active .page-8xx-bet-ng-nh-p__faq-toggle {
    transform: rotate(45deg); /* Change + to X or a dash */
}

.page-8xx-bet-ng-nh-p__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    color: #c0c0c0;
    font-size: 1em;
}

.page-8xx-bet-ng-nh-p__faq-item.active .page-8xx-bet-ng-nh-p__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px !important;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-8xx-bet-ng-nh-p__hero-title {
        font-size: 2em;
    }

    .page-8xx-bet-ng-nh-p__hero-description {
        font-size: 1em;
    }

    .page-8xx-bet-ng-nh-p__section-title {
        font-size: 1.8em;
    }

    .page-8xx-bet-ng-nh-p__section {
        padding: 30px 15px;
    }

    .page-8xx-bet-ng-nh-p__content-paragraph {
        font-size: 0.95em;
    }

    .page-8xx-bet-ng-nh-p__floating-buttons {
        padding: 8px 15px;
    }

    .page-8xx-bet-ng-nh-p__button {
        padding: 10px 15px;
        font-size: 1em;
    }

    .page-8xx-bet-ng-nh-p__button--register,
    .page-8xx-bet-ng-nh-p__button--login {
        margin: 0 5px;
    }

    /* List item responsive requirements */
    .page-8xx-bet-ng-nh-p__steps-grid,
    .page-8xx-bet-ng-nh-p__product-grid,
    .page-8xx-bet-ng-nh-p__logo-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
    }

    .page-8xx-bet-ng-nh-p__step-item,
    .page-8xx-bet-ng-nh-p__product-card,
    .page-8xx-bet-ng-nh-p__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure text wraps in list items */
    .page-8xx-bet-ng-nh-p__step-description,
    .page-8xx-bet-ng-nh-p__product-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-8xx-bet-ng-nh-p__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-8xx-bet-ng-nh-p__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-8xx-bet-ng-nh-p__faq-question {
        padding: 15px;
    }

    .page-8xx-bet-ng-nh-p__faq-question h3 {
        font-size: 1.1em;
    }

    .page-8xx-bet-ng-nh-p__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-8xx-bet-ng-nh-p__hero-title {
        font-size: 1.7em;
    }
    .page-8xx-bet-ng-nh-p__section-title {
        font-size: 1.6em;
    }
}
  