
      .page-nohu {
        font-family: 'Arial', sans-serif;
        background-color: #000000;
        color: #ffffff;
        line-height: 1.6;
      }

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

      .page-nohu__hero-section {
        text-align: center;
        padding-top: 10px; /* Adjusted for header offset */
        padding-bottom: 40px;
        background: linear-gradient(180deg, rgba(37, 99, 235, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
      }

      .page-nohu__hero-image-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 20px;
      }

      .page-nohu__hero-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
      }

      .page-nohu__main-title {
        font-size: clamp(2.5em, 5vw, 3.5em);
        color: #fdd835; /* Yellow */
        margin-bottom: 10px;
        font-weight: bold;
        line-height: 1.2;
        text-shadow: 0 0 8px rgba(253, 216, 53, 0.6);
      }

      .page-nohu__description {
        font-size: 1.1em;
        color: #f0f0f0;
        max-width: 800px;
        margin: 0 auto 30px auto;
      }

      .page-nohu__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      .page-nohu__btn-primary,
      .page-nohu__btn-secondary {
        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-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        max-width: 100%;
      }

      .page-nohu__btn-primary {
        background-color: #fdd835; /* Yellow */
        color: #1a1a1a;
        border: 2px solid #fdd835;
      }

      .page-nohu__btn-primary:hover {
        background-color: #ffeb3b;
        transform: translateY(-3px);
      }

      .page-nohu__btn-secondary {
        background-color: transparent;
        color: #fdd835;
        border: 2px solid #fdd835;
      }

      .page-nohu__btn-secondary:hover {
        background-color: #2563eb;
        color: #ffffff;
        transform: translateY(-3px);
      }

      .page-nohu__section {
        padding: 60px 20px;
        text-align: center;
      }

      .page-nohu__section--dark {
        background-color: #1a1a1a;
      }

      .page-nohu__section-title {
        font-size: 2.5em;
        color: #fdd835;
        margin-bottom: 30px;
        font-weight: bold;
      }

      .page-nohu__text-block {
        font-size: 1.1em;
        color: #f0f0f0;
        max-width: 900px;
        margin: 0 auto 40px auto;
      }

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

      .page-nohu__game-card {
        background-color: #1a1a1a;
        border-radius: 12px;
        overflow: hidden;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        color: #f0f0f0;
      }

      .page-nohu__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
      }

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

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

      .page-nohu__game-title {
        font-size: 1.5em;
        color: #fdd835;
        margin-bottom: 10px;
        font-weight: bold;
      }

      .page-nohu__game-description {
        font-size: 0.95em;
        color: #cccccc;
        margin-bottom: 15px;
      }

      .page-nohu__game-link {
        display: inline-block;
        background-color: #2563eb;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        align-self: flex-start;
        white-space: normal;
        word-wrap: break-word;
        max-width: 100%;
      }

      .page-nohu__game-link:hover {
        background-color: #1e4eaf;
      }

      .page-nohu__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
        align-items: center;
      }

      .page-nohu__provider-logo {
        width: 100%;
        max-width: 120px;
        height: auto;
        display: block;
        opacity: 0.8;
        transition: opacity 0.3s ease;
      }

      .page-nohu__provider-logo:hover {
        opacity: 1;
      }

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

      .page-nohu__step-card {
        background-color: #1a1a1a;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: left;
        color: #f0f0f0;
      }

      .page-nohu__step-icon {
        font-size: 3em;
        color: #fdd835;
        margin-bottom: 15px;
      }

      .page-nohu__step-title {
        font-size: 1.8em;
        color: #fdd835;
        margin-bottom: 10px;
      }

      .page-nohu__step-description {
        font-size: 1em;
        color: #cccccc;
      }

      .page-nohu__faq-section {
        background-color: #1a1a1a;
        padding: 60px 20px;
        text-align: center;
      }

      .page-nohu__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
      }

      .page-nohu__faq-item {
        background-color: #000000;
        border: 1px solid #333333;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        color: #f0f0f0;
      }

      .page-nohu__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        color: #fdd835;
        user-select: none;
        transition: background-color 0.3s ease;
      }

      .page-nohu__faq-question:hover {
        background-color: #0d0d0d;
      }

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

      .page-nohu__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
      }

      .page-nohu__faq-item.active .page-nohu__faq-toggle {
        transform: rotate(45deg);
      }

      .page-nohu__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;
        color: #cccccc;
      }

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

      .page-nohu__floating-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #fdd835; /* Yellow */
        color: #1a1a1a;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
      }

      .page-nohu__floating-btn:hover {
        background-color: #ffeb3b;
        transform: translateY(-5px);
      }

      .page-nohu__floating-btn-icon {
        font-size: 1.5em;
      }

      /* Responsive styles */
      @media (max-width: 768px) {
        .page-nohu__container {
          padding: 15px;
        }

        .page-nohu__hero-section {
          padding-top: 10px !important;
          padding-bottom: 30px;
        }

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

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

        .page-nohu__cta-buttons {
          flex-direction: column;
          gap: 15px;
          padding: 0 15px;
        }

        .page-nohu__btn-primary,
        .page-nohu__btn-secondary {
          width: 100% !important;
          max-width: 100% !important;
          padding: 12px 20px;
          font-size: 1em;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
        }

        .page-nohu__section {
          padding: 40px 15px;
        }

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

        .page-nohu__text-block {
          font-size: 0.95em;
        }

        .page-nohu__games-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 0 15px;
        }

        .page-nohu__game-card {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
        }

        .page-nohu__game-image {
          height: 180px;
        }

        .page-nohu__game-title {
          font-size: 1.3em;
        }

        .page-nohu__game-description {
          font-size: 0.9em;
        }

        .page-nohu__game-link {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          text-align: center;
        }

        .page-nohu__providers-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 15px;
          padding: 0 15px;
        }

        .page-nohu__provider-logo {
          max-width: 80px;
        }

        .page-nohu__steps-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 0 15px;
        }

        .page-nohu__step-card {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 25px;
        }

        .page-nohu__faq-list {
          padding: 0 15px;
        }

        .page-nohu__faq-question {
          font-size: 1.1em;
          padding: 15px 20px;
        }

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

        .page-nohu__floating-btn {
          bottom: 15px;
          right: 15px;
          padding: 12px 20px;
          font-size: 1em;
          width: auto !important; /* Allow content to dictate width */
          max-width: calc(100% - 30px) !important; /* Max width to prevent overflow */
          text-align: center;
        }

        /* General image and container responsive styles */
        .page-nohu img {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
        }
        
        .page-nohu__container,
        .page-nohu__section,
        .page-nohu__game-card,
        .page-nohu__step-card,
        .page-nohu__faq-item,
        .page-nohu__faq-list {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
        }
      }
    