
    .page-hi-888 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-hi-888__section-title {
      font-size: 36px;
      color: #ffffff;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-hi-888__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-hi-888__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      font-size: 18px;
      color: #cccccc;
    }

    .page-hi-888__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 20px 80px 20px; /* Added 10px top padding for decorative spacing */
      min-height: 600px;
      text-align: center;
      overflow: hidden;
    }

    .page-hi-888__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-hi-888__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }

    .page-hi-888__main-title {
      font-size: 48px;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .page-hi-888__hero-description {
      font-size: 20px;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    .page-hi-888__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-hi-888__hero-action-button {
      display: inline-block;
      padding: 15px 35px;
      background: linear-gradient(90deg, #e74c3c, #c0392b); /* Adjusted for contrast */
      color: #ffffff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-hi-888__hero-action-button--secondary {
      background: linear-gradient(90deg, #27ae60, #1e8449); /* Adjusted for contrast */
    }

    .page-hi-888__hero-action-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
      opacity: 0.9;
    }

    /* Promotions Section */
    .page-hi-888__promotions-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

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

    .page-hi-888__promotion-item {
      background-color: #2c3e50;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-hi-888__promotion-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-hi-888__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-hi-888__promotion-title {
      font-size: 24px;
      color: #ffffff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-hi-888__promotion-description {
      font-size: 16px;
      color: #cccccc;
      padding: 0 15px;
    }

    .page-hi-888__view-all-promotions {
      text-align: center;
      margin-top: 40px;
      font-size: 18px;
      color: #e74c3c;
      font-weight: bold;
    }

    /* Games Section */
    .page-hi-888__games-section {
      padding: 80px 20px;
      background-color: #23233b;
    }

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

    .page-hi-888__game-item {
      background-color: #2c3e50;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-hi-888__game-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-hi-888__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-hi-888__game-title {
      font-size: 22px;
      color: #ffffff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-hi-888__game-text {
      font-size: 15px;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Features Section */
    .page-hi-888__features-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-hi-888__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-hi-888__feature-item {
      background-color: #2c3e50;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-hi-888__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-hi-888__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: none; /* Ensure no color filters */
    }

    .page-hi-888__feature-title {
      font-size: 22px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .page-hi-888__feature-description {
      font-size: 16px;
      color: #cccccc;
    }

    /* Payment & Providers Section */
    .page-hi-888__payment-providers-section {
      padding: 80px 20px;
      background-color: #23233b;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
    }

    .page-hi-888__payment-methods, .page-hi-888__game-providers {
      flex: 1;
      min-width: 300px;
      max-width: 550px;
    }

    .page-hi-888__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-hi-888__logo-item {
      width: 100%;
      max-width: 150px;
      height: auto;
      object-fit: contain;
      background-color: #34495e;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      filter: none; /* Ensure no color filters */
      box-sizing: border-box;
    }

    .page-hi-888__logo-item:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-hi-888__faq-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-hi-888__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-hi-888__faq-item {
      background-color: #2c3e50;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-hi-888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #34495e;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-hi-888__faq-question:hover {
      background-color: #44607c;
    }

    .page-hi-888__faq-title {
      font-size: 20px;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-hi-888__faq-toggle {
      font-size: 28px;
      color: #e74c3c;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-hi-888__faq-item.active .page-hi-888__faq-toggle {
      transform: rotate(45deg);
      color: #2ecc71;
    }

    .page-hi-888__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;
      font-size: 16px;
    }

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

    .page-hi-888__faq-answer p {
      margin: 0;
    }

    /* Floating Register/Login Buttons */
    .page-hi-888__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-hi-888__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      min-width: 120px;
    }

    .page-hi-888__floating-button--register {
      background: linear-gradient(90deg, #c0392b, #a52a2a); /* Adjusted for contrast */
    }

    .page-hi-888__floating-button--login {
      background: linear-gradient(90deg, #27ae60, #1e8449); /* Adjusted for contrast */
    }

    .page-hi-888__floating-button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-hi-888__main-title {
        font-size: 40px;
      }
      .page-hi-888__hero-description {
        font-size: 18px;
      }
      .page-hi-888__hero-action-button {
        padding: 12px 30px;
        font-size: 16px;
      }
      .page-hi-888__section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .page-hi-888__hero-section {
        padding-left: 15px;
        padding-right: 15px;
        min-height: 500px;
      }
      .page-hi-888__hero-content {
        padding: 20px;
      }
      .page-hi-888__main-title {
        font-size: 32px;
      }
      .page-hi-888__hero-description {
        font-size: 15px;
        margin-bottom: 30px;
      }
      .page-hi-888__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-hi-888__hero-action-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-hi-888__section-title {
        font-size: 28px;
        margin-bottom: 30px;
      }
      .page-hi-888__section-description {
        font-size: 16px;
        margin-bottom: 30px;
      }

      /* Grid items responsiveness */
      .page-hi-888__promotion-grid,
      .page-hi-888__game-categories-grid,
      .page-hi-888__features-grid,
      .page-hi-888__logos-grid {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important; /* Adjust padding to avoid overflow */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Individual grid items */
      .page-hi-888__promotion-item,
      .page-hi-888__game-item,
      .page-hi-888__feature-item,
      .page-hi-888__logo-item,
      .page-hi-888__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust internal padding if needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-hi-888__game-image,
      .page-hi-888__promotion-image,
      .page-hi-888__feature-icon,
      .page-hi-888__logo-item {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-hi-888__payment-providers-section {
        flex-direction: column;
        gap: 30px;
      }
      .page-hi-888__payment-methods, .page-hi-888__game-providers {
        min-width: unset;
        max-width: 100%;
      }
      .page-hi-888__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }
      .page-hi-888__logo-item {
        max-width: 120px;
      }

      .page-hi-888__faq-question {
        padding: 15px 20px;
      }
      .page-hi-888__faq-title {
        font-size: 18px;
      }
      .page-hi-888__faq-answer {
        padding: 0 20px;
      }
      .page-hi-888__faq-item.active .page-hi-888__faq-answer {
        padding: 15px 20px !important;
      }

      .page-hi-888__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 15px;
        justify-content: space-around;
        gap: 8px;
      }

      .page-hi-888__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 15px;
        min-width: unset;
      }
    }

    @media (max-width: 480px) {
      .page-hi-888__main-title {
        font-size: 28px;
      }
      .page-hi-888__hero-description {
        font-size: 14px;
      }
      .page-hi-888__section-title {
        font-size: 24px;
      }
      .page-hi-888__promotion-title, .page-hi-888__game-title, .page-hi-888__feature-title {
        font-size: 20px;
      }
      .page-hi-888__promotion-description, .page-hi-888__game-text, .page-hi-888__feature-description, .page-hi-888__faq-answer p {
        font-size: 14px;
      }
    }
  