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

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

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

        .page-nohu28__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: var(--bg-dark);
            padding-top: 10px; /* body handles header offset */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .page-nohu28__hero-image-wrapper {
            width: 100%;
            max-width: 1920px;
            margin-bottom: 20px;
        }

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

        .page-nohu28__hero-content {
            text-align: center;
            color: var(--text-light);
            padding: 0 20px 40px;
            max-width: 800px;
        }

        .page-nohu28__hero-content h1 {
            font-size: clamp(2em, 5vw, 3.5em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-nohu28__hero-content p {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: #e0e7ff;
        }

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

        .page-nohu28__button:hover {
            background-color: #1c52d4;
            transform: translateY(-2px);
        }

        .page-nohu28__promo-float-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #ff0000; /* Eye-catching red */
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 1.5s infinite;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-light);
            font-weight: 700;
            font-size: 1.1em;
            white-space: nowrap;
            max-width: calc(100% - 40px);
            box-sizing: border-box;
            word-wrap: break-word;
        }

        .page-nohu28__promo-float-btn:hover {
            background-color: #cc0000;
            animation: none;
        }

        .page-nohu28__promo-float-btn img {
            width: 24px;
            height: 24px;
            vertical-align: middle;
            max-width: 100%;
            height: auto;
            display: block;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .page-nohu28__section {
            padding: 60px 20px;
            text-align: center;
            background-color: var(--bg-light);
        }

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

        .page-nohu28__section h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .page-nohu28__section--dark h2 {
            color: var(--text-light);
        }

        .page-nohu28__section p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.05em;
        }

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

        .page-nohu28__game-card {
            background-color: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

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

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

        .page-nohu28__game-card-content h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .page-nohu28__game-card-content p {
            font-size: 0.95em;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: left;
            max-width: 100%; /* Ensure text wraps */
        }

        .page-nohu28__guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 40px auto;
        }

        .page-nohu28__guide-card {
            background-color: var(--text-light);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: left;
            transition: box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-nohu28__guide-card:hover {
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

        .page-nohu28__guide-card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            max-width: 100%;
            display: block;
        }

        .page-nohu28__guide-card h3 {
            font-size: 1.6em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .page-nohu28__guide-card p {
            font-size: 1em;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: left;
            max-width: 100%; /* Ensure text wraps */
        }

        .page-nohu28__cta-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 80px 20px;
            text-align: center;
        }

        .page-nohu28__cta-section h2 {
            color: var(--text-light);
            font-size: 2.8em;
            margin-bottom: 20px;
        }

        .page-nohu28__cta-section p {
            font-size: 1.2em;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-nohu28__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-nohu28__faq-section h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 40px;
        }

        .page-nohu28__faq-item {
            background-color: var(--text-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

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

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

        .page-nohu28__faq-question h3 {
            margin: 0;
            font-size: 1.2em;
            color: inherit;
            pointer-events: none; /* Prevents text selection from interfering with click */
        }

        .page-nohu28__faq-toggle {
            font-size: 1.5em;
            font-weight: 700;
            color: var(--primary-color);
            pointer-events: none; /* Prevents icon from interfering with click */
        }

        .page-nohu28__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.4s ease;
            color: var(--text-dark);
        }

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

        .page-nohu28__footer-text {
            text-align: center;
            padding: 30px 20px;
            font-size: 0.9em;
            color: var(--secondary-color);
            background-color: var(--bg-dark);
        }

        .page-nohu28__footer-text a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .page-nohu28__footer-text a:hover {
            text-decoration: underline;
        }

        /* General button styling */
        .page-nohu28 .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-nohu28 .btn-primary {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-nohu28 .btn-primary:hover {
            background-color: #1a4cd2;
        }

        .page-nohu28 .btn-secondary {
            background-color: var(--secondary-color);
            color: var(--text-light);
        }

        .page-nohu28 .btn-secondary:hover {
            background-color: #526075;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-nohu28__hero-content h1 {
                font-size: clamp(2em, 6vw, 3em);
            }
            .page-nohu28__section h2 {
                font-size: 2em;
            }
            .page-nohu28__cta-section h2 {
                font-size: 2.2em;
            }
        }

        @media (max-width: 768px) {
            .page-nohu28__hero-section {
                padding: 40px 15px 20px;
            }
            .page-nohu28__hero-content {
                padding: 0 15px 30px;
            }
            .page-nohu28__hero-content h1 {
                font-size: clamp(1.8em, 7vw, 2.5em);
            }
            .page-nohu28__hero-content p {
                font-size: 1em;
            }
            .page-nohu28__section {
                padding: 40px 15px;
            }
            .page-nohu28__section h2 {
                font-size: 1.8em;
                margin-bottom: 30px;
            }
            .page-nohu28__game-grid, .page-nohu28__guide-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px; /* Added padding to grid containers */
            }
            .page-nohu28__game-card-image {
                height: 180px;
            }
            .page-nohu28__game-card-content h3 {
                font-size: 1.3em;
            }
            .page-nohu28__game-card-content p, .page-nohu28__guide-card p {
                font-size: 0.9em;
            }
            .page-nohu28__guide-card {
                padding: 20px;
            }
            .page-nohu28__guide-card h3 {
                font-size: 1.4em;
            }
            .page-nohu28__cta-section {
                padding: 50px 15px;
            }
            .page-nohu28__cta-section h2 {
                font-size: 2em;
            }
            .page-nohu28__cta-section p {
                font-size: 1em;
                margin-bottom: 30px;
            }
            .page-nohu28__faq-section {
                padding: 40px 15px;
            }
            .page-nohu28__faq-section h2 {
                font-size: 1.8em;
            }
            .page-nohu28__faq-question {
                font-size: 1.1em;
                padding: 15px;
            }
            .page-nohu28__faq-answer {
                padding: 15px;
            }
            .page-nohu28__faq-item.active .page-nohu28__faq-answer {
                padding: 15px !important;
            }
            .page-nohu28__promo-float-btn {
                bottom: 15px;
                right: 15px;
                padding: 8px 15px;
                font-size: 1em;
                white-space: normal;
                text-align: center;
                flex-direction: column;
                gap: 5px;
            }

            /* Mobile specific image, video, button, list item handling */
            .page-nohu28 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-nohu28 video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-nohu28__hero-image-wrapper, .page-nohu28__game-card, .page-nohu28__guide-card, .page-nohu28__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 0;
                padding-right: 0;
            }
            .page-nohu28__container, .page-nohu28__section, .page-nohu28__cta-section, .page-nohu28__faq-section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                overflow-x: hidden;
            }
            .page-nohu28__button, .page-nohu28 .btn {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-nohu28__game-card-content p, .page-nohu28__guide-card p {
                 word-wrap: break-word !important;
                 word-break: break-word !important;
            }
            .page-nohu28 ul, .page-nohu28 ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 20px !important; /* Adjust as needed for list bullets */
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-nohu28 ul li, .page-nohu28 ol 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;
            }
        }
    