
    /* CSS Styles for page-nohu56 */
    :root {
        --page-nohu56-primary-color: #e44d26; /* A vibrant, energetic color */
        --page-nohu56-secondary-color: #ffb74d; /* Complementary, warm */
        --page-nohu56-text-color: #333;
        --page-nohu56-light-text-color: #f8f8f8;
        --page-nohu56-bg-color: #f0f2f5;
        --page-nohu56-dark-bg-color: #2c3e50;
        --page-nohu56-border-radius: 8px;
        --page-nohu56-spacing-md: 20px;
        --page-nohu56-spacing-lg: 40px;
    }

    .page-nohu56 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-nohu56-text-color);
        background-color: var(--page-nohu56-bg-color);
        padding: 0;
        margin: 0;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
    }

    .page-nohu56__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--page-nohu56-spacing-md);
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-nohu56__hero-section {
        position: relative;
        text-align: center;
        color: var(--page-nohu56-light-text-color);
        overflow: hidden;
        padding-top: 80px; /* Space for fixed header on desktop */
        padding-bottom: var(--page-nohu56-spacing-lg);
        background: var(--page-nohu56-dark-bg-color); /* Fallback background */
    }

    .page-nohu56__hero-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: brightness(0.6); /* Darken image for text readability */
        max-width: 100%; /* Responsive */
    }
    .page-nohu56__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: var(--page-nohu56-spacing-md);
        box-sizing: border-box;
    }

    .page-nohu56__hero-title {
        font-size: 2.8em;
        margin-bottom: 10px;
        color: var(--page-nohu56-light-text-color);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-nohu56__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: var(--page-nohu56-spacing-md);
        color: var(--page-nohu56-secondary-color);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-nohu56__promotion-button {
        display: inline-block;
        background-color: var(--page-nohu56-primary-color);
        color: var(--page-nohu56-light-text-color);
        padding: 15px 30px;
        border-radius: var(--page-nohu56-border-radius);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-nohu56__promotion-button:hover {
        background-color: #c74220;
        transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-nohu56__floating-login {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: var(--page-nohu56-primary-color);
        color: var(--page-nohu56-light-text-color);
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
    }

    .page-nohu56__floating-login:hover {
        background-color: #c74220;
        transform: scale(1.05);
    }
    .page-nohu56__floating-login-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
    }

    /* General Section Styling */
    .page-nohu56__section {
        padding: var(--page-nohu56-spacing-lg) 0;
        text-align: center;
    }

    .page-nohu56__section--light-bg {
        background-color: var(--page-nohu56-bg-color);
    }

    .page-nohu56__section--dark-bg {
        background-color: var(--page-nohu56-dark-bg-color);
        color: var(--page-nohu56-light-text-color);
    }

    .page-nohu56__section-title {
        font-size: 2.2em;
        margin-bottom: var(--page-nohu56-spacing-md);
        color: var(--page-nohu56-primary-color);
    }
    .page-nohu56__section--dark-bg .page-nohu56__section-title {
        color: var(--page-nohu56-secondary-color);
    }

    .page-nohu56__section-subtitle {
        font-size: 1.2em;
        margin-bottom: var(--page-nohu56-spacing-lg);
        color: #666;
    }
    .page-nohu56__section--dark-bg .page-nohu56__section-subtitle {
        color: #ccc;
    }

    .page-nohu56__text-content {
        font-size: 1.1em;
        margin-bottom: var(--page-nohu56-spacing-md);
        text-align: left;
    }

    /* Game List / Product Display */
    .page-nohu56__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-nohu56-spacing-md);
        margin-top: var(--page-nohu56-spacing-lg);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .page-nohu56__game-card {
        background-color: #fff;
        border-radius: var(--page-nohu56-border-radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        width: 100%;
    }

    .page-nohu56__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-nohu56__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
    }

    .page-nohu56__game-card-content {
        padding: var(--page-nohu56-spacing-md);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%; /* Ensure content fills card width */
        box-sizing: border-box;
    }

    .page-nohu56__game-card-title {
        font-size: 1.5em;
        color: var(--page-nohu56-primary-color);
        margin-bottom: 10px;
        pointer-events: none; /* Ensure text inside h3 doesn't block click */
    }

    .page-nohu56__game-card-description {
        font-size: 0.95em;
        color: #666;
        margin-bottom: var(--page-nohu56-spacing-md);
        text-align: left;
    }
    .page-nohu56__game-card-button {
        background-color: var(--page-nohu56-secondary-color);
        color: var(--page-nohu56-dark-bg-color);
        padding: 10px 20px;
        border-radius: var(--page-nohu56-border-radius);
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        width: 100%;
        max-width: 180px;
    }

    .page-nohu56__game-card-button:hover {
        background-color: #ffaa33;
    }

    /* How-to Section */
    .page-nohu56__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--page-nohu56-spacing-md);
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-nohu56__step-item {
        background-color: #fff;
        border-radius: var(--page-nohu56-border-radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: var(--page-nohu56-spacing-md);
        flex: 1 1 calc(33% - var(--page-nohu56-spacing-md)); /* 3 items per row */
        min-width: 280px;
        text-align: left;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .page-nohu56__step-item:hover {
        transform: translateY(-5px);
    }

    .page-nohu56__step-number {
        font-size: 2em;
        color: var(--page-nohu56-primary-color);
        font-weight: bold;
        margin-bottom: 10px;
    }

    .page-nohu56__step-title {
        font-size: 1.3em;
        color: var(--page-nohu56-dark-bg-color);
        margin-bottom: 10px;
    }

    .page-nohu56__step-description {
        font-size: 1em;
        color: #555;
    }

    /* Promotions Section */
    .page-nohu56__promo-card {
        background-color: #fff;
        border-radius: var(--page-nohu56-border-radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: var(--page-nohu56-spacing-md);
        margin: 0 auto;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-nohu56__promo-icon {
        width: 100px;
        height: 100px;
        margin-bottom: var(--page-nohu56-spacing-md);
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
    }

    .page-nohu56__promo-title {
        font-size: 2em;
        color: var(--page-nohu56-primary-color);
        margin-bottom: 10px;
    }

    .page-nohu56__promo-description {
        font-size: 1.1em;
        color: #555;
        margin-bottom: var(--page-nohu56-spacing-md);
    }

    /* FAQ Section */
    .page-nohu56__faq-list {
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        width: 100%;
        box-sizing: border-box;
    }

    .page-nohu56__faq-item {
        background-color: #fff;
        border-radius: var(--page-nohu56-border-radius);
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-nohu56__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: #eee;
        cursor: pointer;
        font-weight: bold;
        color: var(--page-nohu56-text-color);
        transition: background-color 0.3s ease;
        user-select: none;
        box-sizing: border-box;
    }

    .page-nohu56__faq-question:hover {
        background-color: #ddd;
    }

    .page-nohu56__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-nohu56-dark-bg-color);
        pointer-events: none; /* Prevent text from blocking click */
        flex-grow: 1;
        text-align: left;
    }

    .page-nohu56__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 10px;
        pointer-events: none; /* Prevent icon from blocking click */
        color: var(--page-nohu56-primary-color);
    }

    .page-nohu56__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        text-align: left;
    }

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

    .page-nohu56__faq-item.active .page-nohu56__faq-toggle {
        content: "−";
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-nohu56__hero-section {
            padding-top: 60px; /* Adjust for smaller fixed header on mobile */
            padding-bottom: var(--page-nohu56-spacing-md);
        }

        .page-nohu56__hero-title {
            font-size: 2em;
        }

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

        .page-nohu56__section-title {
            font-size: 1.8em;
        }

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

        .page-nohu56__text-content {
            font-size: 1em;
        }

        .page-nohu56__game-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 15px;
            padding: 0 10px;
        }
        .page-nohu56__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-nohu56__game-card-image {
            height: 180px;
        }
        .page-nohu56__game-card-title {
            font-size: 1.3em;
        }

        .page-nohu56__step-item {
            flex: 1 1 100%; /* Single column on mobile */
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px;
        }
        .page-nohu56__steps-list {
            padding: 0 10px !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

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

        .page-nohu56__promo-description {
            font-size: 1em;
        }

        .page-nohu56__faq-list {
            padding: 0 10px !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-nohu56__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-nohu56__faq-question {
            padding: 12px;
        }
        .page-nohu56__faq-question h3 {
            font-size: 1em;
        }
        .page-nohu56__faq-answer {
            padding: 0 12px;
        }
        .page-nohu56__faq-item.active .page-nohu56__faq-answer {
            padding: 15px 12px !important;
        }
    }
  