
    :root {
        --page-nohu90__primary-color: #007bff;
        --page-nohu90__secondary-color: #6c757d;
        --page-nohu90__accent-color: #28a745;
        --page-nohu90__background-light: #f8f9fa;
        --page-nohu90__text-dark: #212529;
        --page-nohu90__white: #ffffff;
        --page-nohu90__border-color: #dee2e6;
        --page-nohu90__shadow-color: rgba(0, 0, 0, 0.1);
    }

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

    .page-nohu90__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--page-nohu90__white);
        border-radius: 8px;
        box-shadow: 0 2px 10px var(--page-nohu90__shadow-color);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-nohu90__section--hero {
        background-color: var(--page-nohu90__primary-color);
        color: var(--page-nohu90__white);
        text-align: center;
        padding: 80px 20px 60px; /* Desktop padding-top for fixed header */
        border-radius: 0;
        box-shadow: none;
        position: relative;
        overflow: hidden;
    }

    .page-nohu90__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.6); /* Slightly darken image for text readability */
    }

    .page-nohu90__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-nohu90__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-nohu90__white);
        line-height: 1.2;
    }

    .page-nohu90__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9);
    }

    .page-nohu90__cta-button {
        display: inline-block;
        background-color: var(--page-nohu90__accent-color);
        color: var(--page-nohu90__white);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .page-nohu90__title {
        font-size: 2em;
        color: var(--page-nohu90__primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-nohu90__title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--page-nohu90__accent-color);
        border-radius: 2px;
    }

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

    .page-nohu90__text-content strong {
        color: var(--page-nohu90__primary-color);
    }

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

    .page-nohu90__game-card {
        background-color: var(--page-nohu90__background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px var(--page-nohu90__shadow-color);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
    }

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

    .page-nohu90__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid var(--page-nohu90__border-color);
    }

    .page-nohu90__game-title {
        font-size: 1.4em;
        color: var(--page-nohu90__primary-color);
        margin: 15px 10px 10px;
        pointer-events: none; /* Prevent blocking click on card */
    }

    .page-nohu90__game-description {
        font-size: 0.95em;
        color: var(--page-nohu90__secondary-color);
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .page-nohu90__game-button {
        background-color: var(--page-nohu90__primary-color);
        color: var(--page-nohu90__white);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-nohu90__game-button:hover {
        background-color: #0056b3;
    }

    .page-nohu90__list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-nohu90__list-item {
        background-color: var(--page-nohu90__background-light);
        border: 1px solid var(--page-nohu90__border-color);
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-sizing: border-box;
    }

    .page-nohu90__list-item-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .page-nohu90__list-item-content h3 {
        margin-top: 0;
        color: var(--page-nohu90__primary-color);
        font-size: 1.2em;
        margin-bottom: 5px;
    }

    .page-nohu90__list-item-content p {
        margin-bottom: 0;
        font-size: 0.95em;
        color: var(--page-nohu90__secondary-color);
    }

    .page-nohu90__download-app {
        text-align: center;
        padding: 30px 20px;
        background-color: var(--page-nohu90__primary-color);
        color: var(--page-nohu90__white);
        border-radius: 8px;
        margin-top: 40px;
    }

    .page-nohu90__download-app-title {
        color: var(--page-nohu90__white);
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-nohu90__download-app-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .page-nohu90__download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-nohu90__download-button {
        background-color: var(--page-nohu90__accent-color);
        color: var(--page-nohu90__white);
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-nohu90__download-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .page-nohu90__faq-section {
        margin-top: 40px;
    }

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

    .page-nohu90__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: var(--page-nohu90__white);
        font-size: 1.1em;
        font-weight: bold;
        color: var(--page-nohu90__primary-color);
        transition: background-color 0.3s ease;
    }

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

    .page-nohu90__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-nohu90__primary-color);
        pointer-events: none; /* Prevent blocking click on question */
    }

    .page-nohu90__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent blocking click on toggle */
    }

    .page-nohu90__faq-item.active .page-nohu90__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-nohu90__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: var(--page-nohu90__background-light);
        color: var(--page-nohu90__text-dark);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

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

    .page-nohu90__floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffc107; /* Yellow accent */
        color: var(--page-nohu90__text-dark);
        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.25);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .page-nohu90__floating-button:hover {
        background-color: #e0a800;
        transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-nohu90__section--hero {
            padding-top: 60px; /* Mobile padding-top for fixed header */
            padding-bottom: 40px;
        }

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

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

        .page-nohu90__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-nohu90__title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

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

        .page-nohu90__game-grid {
            grid-template-columns: 1fr;
        }

        .page-nohu90__list {
            grid-template-columns: 1fr;
            padding: 0;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-nohu90__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-nohu90__list-item-icon {
            width: 50px;
            height: 50px;
        }

        .page-nohu90__list-item-content h3 {
            font-size: 1.1em;
        }

        .page-nohu90__list-item-content p {
            font-size: 0.9em;
        }

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

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

        .page-nohu90__download-button {
            width: calc(100% - 40px);
            max-width: 250px;
            justify-content: center;
        }

        .page-nohu90__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }

        .page-nohu90__faq-question h3 {
            font-size: 1em;
        }

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

        .page-nohu90__floating-button {
            padding: 10px 20px;
            font-size: 1em;
            max-width: calc(100% - 40px);
        }
    }
  