
    .page-89het {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small top padding for visual spacing, relying on body for header offset */
    }

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

    .page-89het__section--dark {
      background-color: #222222;
    }

    .page-89het__section-title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-89het__section-subtitle {
      font-size: 1.8em;
      color: #f0f0f0;
      text-align: center;
      margin-bottom: 20px;
    }

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

    .page-89het__text-content strong {
      color: #FFD700;
    }

    .page-89het__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-89het__button {
      background-color: #FFD700;
      color: #1a1a1a;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      text-align: center;
    }

    .page-89het__button:hover {
      background-color: #e0c000;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-89het__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-89het__floating-button {
      background-color: #007bff; /* Blue for Register */
      color: white;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 100px;
    }

    .page-89het__floating-button--login {
      background-color: #28a745; /* Green for Login */
    }

    .page-89het__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    /* Game Categories */
    .page-89het__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-89het__category-card {
      background-color: #2e2e2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-89het__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-89het__category-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
    }

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

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

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

    .page-89het__category-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions & News */
    .page-89het__promo-grid, .page-89het__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-89het__promo-card, .page-89het__news-card {
      background-color: #2e2e2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-89het__promo-card:hover, .page-89het__news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-89het__promo-image-wrapper, .page-89het__news-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
    }

    .page-89het__promo-image, .page-89het__news-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-89het__promo-content, .page-89het__news-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-89het__promo-title, .page-89het__news-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-89het__promo-description, .page-89het__news-excerpt {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-89het__news-date {
      font-size: 0.85em;
      color: #999999;
      text-align: right;
      margin-top: 10px;
    }

    /* Providers & Payments */
    .page-89het__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-89het__logo-item {
      background-color: #2e2e2e;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .page-89het__logo-item:hover {
      transform: scale(1.05);
    }

    .page-89het__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-89het__faq-list {
      margin-top: 30px;
    }

    .page-89het__faq-item {
      background-color: #2e2e2e;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-89het__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-89het__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-89het__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-89het__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      min-width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-89het__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: #cccccc;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-89het__section {
        padding: 30px 15px;
      }

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

      .page-89het__section-subtitle {
        font-size: 1.5em;
      }

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

      .page-89het__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-89het__button {
        width: 100%;
        box-sizing: border-box;
      }

      .page-89het__game-categories,
      .page-89het__promo-grid,
      .page-89het__news-grid {
        grid-template-columns: 1fr;
      }

      .page-89het__category-image-wrapper,
      .page-89het__promo-image-wrapper,
      .page-89het__news-image-wrapper {
        height: 180px;
      }

      .page-89het__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-89het__logo-item {
        height: 80px;
        padding: 10px;
      }

      .page-89het__logo-image {
        max-height: 60px;
      }

      .page-89het__faq-question {
        padding: 12px 15px;
      }

      .page-89het__faq-question h3 {
        font-size: 1.1em;
      }

      .page-89het__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }

      .page-89het__faq-item.active .page-89het__faq-answer {
        padding: 15px !important;
      }

      .page-89het__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
      }

      .page-89het__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-89het__section-title {
        font-size: 1.8em;
      }

      .page-89het__section-subtitle {
        font-size: 1.3em;
      }

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

      .page-89het__faq-toggle {
        font-size: 1.3em;
      }

      .page-89het__floating-buttons {
        bottom: 15px;
        gap: 8px;
      }

      .page-89het__floating-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  