
        /* style/nohu28.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #111111;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }

        .page-nohu28 {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

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

        .page-nohu28__hero-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            padding-top: 10px; /* Assuming body padding-top handles header offset */
            padding-bottom: 40px;
            position: relative;
            overflow: hidden;
            border-radius: 0 0 20px 20px;
        }

        .page-nohu28__hero-image-wrapper {
            width: 100%;
            max-height: 400px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-nohu28__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 10px;
        }

        .page-nohu28__hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-nohu28__hero-title {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-nohu28__hero-description {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .page-nohu28__btn-primary {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-nohu28__btn-primary:hover {
            background-color: #5a6b7e;
            transform: translateY(-2px);
        }

        .page-nohu28__section {
            padding: 60px 0;
            background-color: var(--text-light);
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .page-nohu28__section--dark {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-nohu28__section-title {
            font-size: 2.2em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
        }

        .page-nohu28__section--dark .page-nohu28__section-title {
            color: var(--text-light);
        }

        .page-nohu28__text-block {
            font-size: 1.1em;
            margin-bottom: 20px;
            text-align: justify;
        }

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

        .page-nohu28__feature-item {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            border: 1px solid var(--border-color);
        }

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

        .page-nohu28__feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .page-nohu28__feature-title {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .page-nohu28__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .page-nohu28__game-card {
            background-color: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: var(--text-dark);
        }

        .page-nohu28__game-card:hover {
            transform: translateY(-7px);
        }

        .page-nohu28__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-nohu28__game-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-nohu28__game-title {
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .page-nohu28__game-description {
            font-size: 0.95em;
            line-height: 1.5;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-nohu28__btn-secondary {
            display: inline-block;
            background-color: var(--text-light);
            color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            transition: background-color 0.3s ease, color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-nohu28__btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

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

        .page-nohu28__promotion-card {
            background-color: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }

        .page-nohu28__promotion-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .page-nohu28__promotion-content {
            padding: 25px;
        }

        .page-nohu28__promotion-title {
            font-size: 1.6em;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .page-nohu28__promotion-description {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .page-nohu28__faq-list {
            margin-top: 40px;
        }

        .page-nohu28__faq-item {
            background-color: var(--text-light);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .page-nohu28__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2em;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            user-select: none;
            background-color: var(--bg-light);
            transition: background-color 0.3s ease;
        }

        .page-nohu28__faq-question:hover {
            background-color: #e9ecef;
        }

        .page-nohu28__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click on parent */
            flex-grow: 1;
        }

        .page-nohu28__faq-toggle {
            font-size: 1.5em;
            font-weight: 700;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle icon from blocking click on parent */
            width: 20px;
            text-align: center;
        }

        .page-nohu28__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.4s ease;
        }

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

        .page-nohu28__link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .page-nohu28__link:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Floating Login Button */
        .page-nohu28__floating-login-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffc107; /* Eye-catching color */
            color: var(--text-dark);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
        }

        .page-nohu28__floating-login-btn:hover {
            background-color: #e0a800;
            transform: translateY(-3px);
        }

        /* General image responsiveness */
        .page-nohu28 img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-nohu28__hero-section {
                padding-top: 10px !important; /* Small top padding on mobile */
                padding-bottom: 30px;
                border-radius: 0;
            }

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

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

            .page-nohu28__btn-primary,
            .page-nohu28__btn-secondary,
            .page-nohu28__floating-login-btn {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                margin-bottom: 10px;
            }
            
            .page-nohu28__btn-container {
                display: flex;
                flex-direction: column;
                gap: 10px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-nohu28__section {
                padding: 40px 0;
            }

            .page-nohu28__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }

            .page-nohu28__features-grid,
            .page-nohu28__game-grid,
            .page-nohu28__promotions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-nohu28__game-image,
            .page-nohu28__promotion-image {
                height: 180px;
            }

            .page-nohu28__feature-item,
            .page-nohu28__game-card,
            .page-nohu28__promotion-card,
            .page-nohu28__faq-item {
                padding: 0;
                border-radius: 0;
                box-shadow: none;
                border-left: none;
                border-right: none;
            }

            .page-nohu28__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }

            .page-nohu28__faq-answer {
                padding: 15px 20px !important;
            }

            .page-nohu28__floating-login-btn {
                width: calc(100% - 40px) !important;
                right: 20px;
                left: 20px;
                bottom: 15px;
                font-size: 1em;
                padding: 12px 20px;
                border-radius: 8px;
            }

            /* Ensure all images are responsive */
            .page-nohu28 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-nohu28__container,
            .page-nohu28__section,
            .page-nohu28__card,
            .page-nohu28__feature-item,
            .page-nohu28__game-card,
            .page-nohu28__promotion-card,
            .page-nohu28__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            /* List items responsiveness */
            .page-nohu28 ul,
            .page-nohu28 ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .page-nohu28 li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    