
    /* CSS Styles for hi8823 page */
    :root {
      --page-hi8823-primary-color: #ffcc00; /* Vàng sáng */
      --page-hi8823-secondary-color: #333333; /* Đen xám */
      --page-hi8823-accent-color: #cc0000; /* Đỏ đậm */
      --page-hi8823-text-color: #ffffff; /* Trắng */
      --page-hi8823-bg-color: #1a1a1a; /* Nền tối */
      --page-hi8823-light-gray: #f0f0f0;
      --page-hi8823-dark-gray: #2c2c2c;
    }

    .page-hi8823 {
      font-family: 'Arial', sans-serif;
      color: var(--page-hi8823-text-color);
      background-color: var(--page-hi8823-bg-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from responsive images */
    }

    /* Fixed header spacing */
    .page-hi8823__hero-section {
      padding-top: 120px; /* Adjust for fixed header */
    }

    @media (max-width: 768px) {
      .page-hi8823__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }
    }

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

    .page-hi8823__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-hi8823-dark-gray);
      border-radius: 8px;
    }

    .page-hi8823__section--dark {
      background-color: var(--page-hi8823-secondary-color);
    }

    .page-hi8823__title {
      font-size: 2.5em;
      color: var(--page-hi8823-primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-hi8823__subtitle {
      font-size: 1.8em;
      color: var(--page-hi8823-light-gray);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-hi8823__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-hi8823-text-color);
    }

    .page-hi8823__button {
      display: inline-block;
      background-color: var(--page-hi8823-accent-color);
      color: var(--page-hi8823-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-hi8823__button:hover {
      background-color: #e60000; /* Darker red */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-hi8823__hero-section {
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-bottom: 40px; /* Add some space below the image */
    }

    .page-hi8823__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center the image */
      border-radius: 8px;
    }

    .page-hi8823__hero-content {
      position: relative; /* Ensure content is above the image if needed, though image is top */
      padding: 20px;
    }

    .page-hi8823__hero-title {
      font-size: 3em;
      color: var(--page-hi8823-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-hi8823__hero-description {
      font-size: 1.4em;
      color: var(--page-hi8823-light-gray);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Login Button */
    .page-hi8823__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .page-hi8823__floating-login-button {
      background-color: var(--page-hi8823-accent-color);
      color: var(--page-hi8823-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: page-hi8823-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-hi8823__floating-login-button:hover {
      background-color: #e60000;
      animation: none;
    }

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

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

    .page-hi8823__game-card {
      background-color: var(--page-hi8823-bg-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-hi8823__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-hi8823__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover; /* Ensure images cover the area without distortion */
      display: block;
    }

    .page-hi8823__game-card-title {
      font-size: 1.5em;
      color: var(--page-hi8823-primary-color);
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-hi8823__game-card-description {
      font-size: 1em;
      color: var(--page-hi8823-light-gray);
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-hi8823__game-card-link {
      display: inline-block;
      background-color: var(--page-hi8823-primary-color);
      color: var(--page-hi8823-secondary-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-hi8823__game-card-link:hover {
      background-color: #e0b300; /* Darker yellow */
    }

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

    .page-hi8823__provider-item {
      background-color: var(--page-hi8823-bg-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%; /* Ensure it takes full grid cell width */
      box-sizing: border-box; /* Include padding in width */
      height: 100px; /* Fixed height for logo consistency */
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-hi8823__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Adjust max height for logos */
      width: auto;
      height: auto;
      display: block;
    }

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

    .page-hi8823__faq-item {
      background-color: var(--page-hi8823-bg-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-hi8823__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-hi8823-dark-gray);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-hi8823__faq-question:hover {
      background-color: #444444;
    }

    .page-hi8823__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-hi8823-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-hi8823__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-hi8823-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent div */
    }

    .page-hi8823__faq-item.active .page-hi8823__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for visual effect */
    }

    .page-hi8823__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--page-hi8823-light-gray);
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hi8823__title {
        font-size: 2em;
      }
      .page-hi8823__hero-title {
        font-size: 2.2em;
      }
      .page-hi8823__hero-description {
        font-size: 1.1em;
      }
      .page-hi8823__floating-login {
        bottom: 15px;
        right: 15px;
      }
      .page-hi8823__floating-login-button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-hi8823__section {
        padding: 30px 15px;
      }
      .page-hi8823__game-categories {
        grid-template-columns: 1fr;
      }
      .page-hi8823__game-card-image {
        height: 180px;
      }
      .page-hi8823__faq-question h3 {
        font-size: 1.1em;
      }
    }

    /* Ensure all images are responsive and within their containers */
    .page-hi8823 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-hi8823__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-hi8823 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-hi8823__image-container {
        width: 100% !important;
        max-width: 100% !important;
      }
    }

    /* Additional styles for text contrast */
    .page-hi8823__text a {
      color: var(--page-hi8823-primary-color);
      text-decoration: none;
    }
    .page-hi8823__text a:hover {
      text-decoration: underline;
    }
  