
    /* General styling for the page */
.page-new88-ng-nh-p {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding as per instruction, assuming body has header offset */
}

/* Section styling */
.page-new88-ng-nh-p__section-title {
    font-size: 2.5em;
    color: #ffc107; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
    line-height: 1.2;
}

.page-new88-ng-nh-p__section-title strong {
    color: #007bff;
}

/* Hero Section */
.page-new88-ng-nh-p__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    background-color: #0d0d1a; /* Even darker for hero background */
}

.page-new88-ng-nh-p__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.page-new88-ng-nh-p__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
    z-index: 2;
}

.page-new88-ng-nh-p__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-new88-ng-nh-p__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.page-new88-ng-nh-p__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-new88-ng-nh-p__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-new88-ng-nh-p__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__button--primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-new88-ng-nh-p__button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-new88-ng-nh-p__button--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-new88-ng-nh-p__button--secondary:hover {
    background-color: #ffc107;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Features Section */
.page-new88-ng-nh-p__features-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
    text-align: center;
}

.page-new88-ng-nh-p__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-new88-ng-nh-p__feature-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-new88-ng-nh-p__feature-icon {
    width: 120px;
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__feature-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-new88-ng-nh-p__feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* How-to-Login Section */
.page-new88-ng-nh-p__how-to-login {
    padding: 60px 20px;
    background-color: #0d0d1a;
    text-align: center;
}

.page-new88-ng-nh-p__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-new88-ng-nh-p__step-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__step-number {
    width: 50px;
    height: 50px;
    background-color: #ffc107;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-new88-ng-nh-p__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-new88-ng-nh-p__step-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-new88-ng-nh-p__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box;
}

/* Games Showcase Section */
.page-new88-ng-nh-p__games-showcase {
    padding: 60px 20px;
    background-color: #1a1a2e;
    text-align: center;
}

.page-new88-ng-nh-p__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-new88-ng-nh-p__game-card {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-new88-ng-nh-p__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__game-title {
    font-size: 1.5em;
    color: #ffc107;
    padding: 15px 20px 5px;
    line-height: 1.3;
}

.page-new88-ng-nh-p__game-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px;
}

/* Promotions Section */
.page-new88-ng-nh-p__promotions-section {
    padding: 60px 20px;
    background-color: #0d0d1a;
    text-align: center;
}

.page-new88-ng-nh-p__promotions-intro {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.page-new88-ng-nh-p__promotion-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
}

.page-new88-ng-nh-p__promotion-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__promotion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-new88-ng-nh-p__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__promotion-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    padding: 0 15px;
    line-height: 1.3;
}

.page-new88-ng-nh-p__promotion-description {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
}

.page-new88-ng-nh-p__promotions-cta {
    margin-top: 30px;
}

/* FAQ Section */
.page-new88-ng-nh-p__faq-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-new88-ng-nh-p__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-new88-ng-nh-p__faq-item {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-new88-ng-nh-p__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #3a3a5a;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__faq-question:hover {
    background-color: #4a4a6a;
}

.page-new88-ng-nh-p__faq-title {
    font-size: 1.2em;
    color: #ffc107;
    margin: 0;
    pointer-events: none;
    flex-grow: 1;
    line-height: 1.4;
}

.page-new88-ng-nh-p__faq-toggle {
    font-size: 1.8em;
    color: #007bff;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none;
    min-width: 20px;
    text-align: center;
}

.page-new88-ng-nh-p__faq-item.active .page-new88-ng-nh-p__faq-toggle {
    transform: rotate(45deg);
    color: #ffc107;
}

.page-new88-ng-nh-p__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;
    opacity: 0;
    color: #e0e0e0;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__faq-item.active .page-new88-ng-nh-p__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
}

.page-new88-ng-nh-p__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* CTA Section */
.page-new88-ng-nh-p__cta-section {
    padding: 60px 20px;
    background-color: #0d0d1a;
    text-align: center;
}

.page-new88-ng-nh-p__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.page-new88-ng-nh-p__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-new88-ng-nh-p__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-sizing: border-box;
}

.page-new88-ng-nh-p__floating-button--register {
    background-color: #ffc107;
    color: #1a1a2e;
    border: 2px solid #ffc107;
}

.page-new88-ng-nh-p__floating-button--register:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-new88-ng-nh-p__floating-button--login {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-new88-ng-nh-p__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-new88-ng-nh-p__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-new88-ng-nh-p__hero-section {
        min-height: 450px;
        padding: 15px;
    }

    .page-new88-ng-nh-p__hero-title {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .page-new88-ng-nh-p__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-new88-ng-nh-p__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-new88-ng-nh-p__button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-new88-ng-nh-p__features-grid,
    .page-new88-ng-nh-p__steps-container,
    .page-new88-ng-nh-p__games-grid,
    .page-new88-ng-nh-p__promotion-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-new88-ng-nh-p__feature-item,
    .page-new88-ng-nh-p__step-item,
    .page-new88-ng-nh-p__game-card,
    .page-new88-ng-nh-p__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
    }

    .page-new88-ng-nh-p__feature-icon,
    .page-new88-ng-nh-p__step-image,
    .page-new88-ng-nh-p__game-image,
    .page-new88-ng-nh-p__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-new88-ng-nh-p__feature-title,
    .page-new88-ng-nh-p__step-title,
    .page-new88-ng-nh-p__game-title,
    .page-new88-ng-nh-p__promotion-title {
        font-size: 1.5em;
    }

    .page-new88-ng-nh-p__faq-question {
        padding: 15px 20px;
    }

    .page-new88-ng-nh-p__faq-title {
        font-size: 1.1em;
    }

    .page-new88-ng-nh-p__faq-answer {
        padding: 0 20px;
    }

    .page-new88-ng-nh-p__faq-item.active .page-new88-ng-nh-p__faq-answer {
        padding: 15px 20px !important;
    }

    .page-new88-ng-nh-p__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-new88-ng-nh-p__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }

    .page-new88-ng-nh-p__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .page-new88-ng-nh-p__hero-title {
        font-size: 2em;
    }
    .page-new88-ng-nh-p__section-title {
        font-size: 1.8em;
    }
}
  