
    :root {
      --page-23hello88__primary-color: #feca00; /* Gold/Yellow */
      --page-23hello88__secondary-color: #007bff; /* Blue */
      --page-23hello88__background-dark: #1a1a2e; /* Dark Blue-Purple */
      --page-23hello88__background-light: #2c2c54; /* Lighter Blue-Purple */
      --page-23hello88__text-light: #ffffff;
      --page-23hello88__text-dark: #e0e0e0;
      --page-23hello88__border-color: #3e3e70;
    }

    .page-23hello88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-23hello88__text-light);
      background-color: var(--page-23hello88__background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-23hello88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
      background-color: var(--page-23hello88__background-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-23hello88__section--dark {
      background-color: var(--page-23hello88__background-dark);
    }

    .page-23hello88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-23hello88__title {
      color: var(--page-23hello88__primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .page-23hello88__subtitle {
      color: var(--page-23hello88__text-light);
      margin-bottom: 30px;
      font-size: 1.5em;
      font-weight: 500;
    }

    .page-23hello88__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-23hello88__text-dark);
    }

    .page-23hello88__button {
      display: inline-block;
      background-color: var(--page-23hello88__primary-color);
      color: var(--page-23hello88__background-dark);
      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: 1em;
    }

    .page-23hello88__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-23hello88__hero-section {
      background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('[GALLERY:hero:1920x1080:casino,sports,vietnam,hello88]') no-repeat center center/cover;
      padding: 10px 20px 80px 20px; /* Adjusted padding-top as per instructions */
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-23hello88__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-23hello88__hero-title {
      font-size: 3.5em;
      color: var(--page-23hello88__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-23hello88__hero-description {
      font-size: 1.3em;
      color: var(--page-23hello88__text-light);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-23hello88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-23hello88__floating-button {
      background-color: var(--page-23hello88__primary-color);
      color: var(--page-23hello88__background-dark);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      text-align: center;
      min-width: 120px;
    }

    .page-23hello88__floating-button:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    .page-23hello88__floating-button--login {
      background-color: var(--page-23hello88__secondary-color);
      color: var(--page-23hello88__text-light);
    }

    .page-23hello88__floating-button--login:hover {
      background-color: #0056b3;
    }

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

    .page-23hello88__game-card {
      background-color: var(--page-23hello88__background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--page-23hello88__border-color);
    }

    .page-23hello88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-23hello88__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

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

    .page-23hello88__game-card-title {
      font-size: 1.5em;
      color: var(--page-23hello88__primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-23hello88__game-card-description {
      color: var(--page-23hello88__text-dark);
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-23hello88__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-23hello88__promotion-card {
      background-color: var(--page-23hello88__background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-23hello88__border-color);
    }

    .page-23hello88__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-23hello88__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-23hello88__promotion-content {
      padding: 20px;
    }

    .page-23hello88__promotion-title {
      font-size: 1.4em;
      color: var(--page-23hello88__primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-23hello88__promotion-description {
      color: var(--page-23hello88__text-dark);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-23hello88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-23hello88__feature-item {
      background-color: var(--page-23hello88__background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-23hello88__border-color);
      text-align: center;
    }

    .page-23hello88__feature-icon {
      width: 200px; /* Actual image size will be 200x200 */
      height: 200px; /* Actual image size will be 200x200 */
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .page-23hello88__feature-title {
      font-size: 1.3em;
      color: var(--page-23hello88__primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-23hello88__feature-description {
      color: var(--page-23hello88__text-dark);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-23hello88__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-23hello88__faq-item {
      background-color: var(--page-23hello88__background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid var(--page-23hello88__border-color);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .page-23hello88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-23hello88__background-light);
      color: var(--page-23hello88__text-light);
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .page-23hello88__faq-question:hover {
      background-color: #3a3a6a;
    }

    .page-23hello88__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: var(--page-23hello88__primary-color);
    }

    .page-23hello88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: var(--page-23hello88__primary-color);
      transition: transform 0.3s ease;
    }

    .page-23hello88__faq-item.active .page-23hello88__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }
    
    .page-23hello88__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: var(--page-23hello88__text-dark);
      text-align: left;
    }

    .page-23hello88__faq-item.active .page-23hello88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important; /* Apply padding when active */
      opacity: 1;
    }

    /* Payment Methods & Game Providers */
    .page-23hello88__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-23hello88__logo-item {
      background-color: var(--page-23hello88__background-dark);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      width: 100%;
      max-width: 150px; /* Limit max width for smaller logos */
      border: 1px solid var(--page-23hello88__border-color);
    }

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

    .page-23hello88__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-23hello88__hero-title {
        font-size: 3em;
      }
      .page-23hello88__hero-description {
        font-size: 1.2em;
      }
    }

    @media (max-width: 768px) {
      .page-23hello88__section {
        padding: 30px 15px;
      }
      .page-23hello88__title {
        font-size: 2em;
      }
      .page-23hello88__subtitle {
        font-size: 1.2em;
      }
      .page-23hello88__text {
        font-size: 1em;
      }

      .page-23hello88__hero-section {
        min-height: 400px;
        padding-top: 10px; /* Ensure this is still consistent */
        padding-bottom: 60px;
      }
      .page-23hello88__hero-title {
        font-size: 2.5em;
      }
      .page-23hello88__hero-description {
        font-size: 1.1em;
      }

      .page-23hello88__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Stack horizontally on smaller screens */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-23hello88__floating-button {
        flex: 1;
        min-width: unset;
        font-size: 1em;
        padding: 10px 15px;
      }

      .page-23hello88__game-categories,
      .page-23hello88__promotion-grid,
      .page-23hello88__features-grid,
      .page-23hello88__logo-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
      }
      
      /* List item mobile responsiveness */
      .page-23hello88__game-card,
      .page-23hello88__promotion-card,
      .page-23hello88__feature-item,
      .page-23hello88__faq-item,
      .page-23hello88__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important; /* Adjust padding for mobile */
      }

      .page-23hello88__game-card-description,
      .page-23hello88__promotion-description,
      .page-23hello88__feature-description,
      .page-23hello88__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-23hello88__faq-question {
        padding: 15px !important;
      }
      .page-23hello88__faq-answer {
        padding: 0 15px !important;
      }
      .page-23hello88__faq-item.active .page-23hello88__faq-answer {
        padding: 15px !important;
      }

      .page-23hello88__logo-grid {
        padding: 0 15px; /* Adjust padding for the grid container itself */
      }
    }

    @media (max-width: 480px) {
      .page-23hello88__hero-title {
        font-size: 2em;
      }
      .page-23hello88__hero-description {
        font-size: 1em;
      }
      .page-23hello88__title {
        font-size: 1.8em;
      }
      .page-23hello88__subtitle {
        font-size: 1.1em;
      }
    }
  