
    :root {
      --page-ax88game__primary-color: #e44d26; /* Cam đỏ */
      --page-ax88game__secondary-color: #f7a000; /* Cam sáng */
      --page-ax88game__text-color: #333;
      --page-ax88game__background-color: #f8f8f8;
      --page-ax88game__light-background: #ffffff;
      --page-ax88game__border-color: #eee;
      --page-ax88game__shadow-color: rgba(0, 0, 0, 0.1);
    }

    .page-ax88game {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      color: var(--page-ax88game__text-color);
      background-color: var(--page-ax88game__background-color);
      line-height: 1.6;
    }

    .page-ax88game__hero-section {
      text-align: center;
      background-color: var(--page-ax88game__light-background);
      padding: 10px 0 20px; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-ax88game__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--page-ax88game__shadow-color);
    }

    .page-ax88game__hero-content {
      padding: 20px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-ax88game__hero-title {
      color: var(--page-ax88game__primary-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ax88game__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-ax88game__button {
      display: inline-block;
      background-color: var(--page-ax88game__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ax88game__button:hover {
      background-color: var(--page-ax88game__secondary-color);
      transform: translateY(-2px);
    }

    .page-ax88game__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-ax88game__light-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-ax88game__shadow-color);
      margin-bottom: 30px;
    }

    .page-ax88game__section:first-of-type {
      margin-top: 30px; /* Initial margin for the first content section if no hero */
    }

    .page-ax88game__section-title {
      color: var(--page-ax88game__primary-color);
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-ax88game__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-ax88game__secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-ax88game__text-content {
      font-size: 1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-ax88game__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 20px 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

    .page-ax88game__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-ax88game__game-icon {
      width: 120px; /* Increased size */
      height: 120px; /* Increased size */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-ax88game__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-ax88game__text-color);
      margin-top: 10px;
      text-decoration: none;
    }

    .page-ax88game__game-title:hover {
      color: var(--page-ax88game__primary-color);
    }

    .page-ax88game__advantage-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-ax88game__advantage-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ax88game__advantage-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-ax88game__advantage-icon {
      width: 100px; /* Increased size */
      height: 100px; /* Increased size */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-ax88game__advantage-title {
      font-size: 1.2em;
      color: var(--page-ax88game__primary-color);
      margin-bottom: 10px;
    }

    .page-ax88game__step-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ax88game__step-item {
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px var(--page-ax88game__shadow-color);
    }

    .page-ax88game__step-number {
      background-color: var(--page-ax88game__secondary-color);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3em;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-ax88game__step-content h3 {
      margin: 0 0 5px 0;
      color: var(--page-ax88game__primary-color);
      font-size: 1.1em;
    }

    .page-ax88game__step-content p {
      margin: 0;
      font-size: 0.95em;
    }

    .page-ax88game__faq-container {
      margin-top: 30px;
    }

    .page-ax88game__faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--page-ax88game__shadow-color);
      overflow: hidden;
    }

    .page-ax88game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid var(--page-ax88game__border-color);
      transition: background-color 0.3s ease;
    }

    .page-ax88game__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-ax88game__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-ax88game__text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-ax88game__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-ax88game__primary-color);
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-ax88game__faq-item.active .page-ax88game__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-ax88game__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;
      background-color: #fff;
    }

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

    .page-ax88game__faq-answer p {
      margin: 0;
      font-size: 0.95em;
      color: var(--page-ax88game__text-color);
    }

    .page-ax88game__floating-button-container {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 0 15px;
      box-sizing: border-box;
      z-index: 1000;
    }

    .page-ax88game__floating-button {
      background-color: var(--page-ax88game__secondary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 90%;
    }

    .page-ax88game__floating-button:hover {
      background-color: var(--page-ax88game__primary-color);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ax88game__hero-title {
        font-size: 2em;
      }

      .page-ax88game__hero-description {
        font-size: 1em;
      }

      .page-ax88game__section-title {
        font-size: 1.8em;
      }

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

      .page-ax88game__game-card {
        padding: 15px 10px;
        min-height: 150px;
      }

      .page-ax88game__game-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
      }

      .page-ax88game__game-title {
        font-size: 1em;
      }

      .page-ax88game__advantage-item {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-ax88game__advantage-icon {
        width: 80px;
        height: 80px;
      }

      .page-ax88game__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-ax88game__step-number {
        margin: 0 auto 15px auto;
      }

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

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

      .page-ax88game__faq-answer {
        padding: 15px !important; /* Force padding for mobile */
      }

      .page-ax88game__floating-button {
        font-size: 1em;
        padding: 12px 20px;
      }
    }

    /* Image responsive optimization */
    .page-ax88game img {
      max-width: 100%;
      height: auto;
      display: block; /* Ensures no extra space below images */
    }

    .page-ax88game__hero-section img,
    .page-ax88game__game-card img,
    .page-ax88game__advantage-item img,
    .page-ax88game__step-item img {
        width: 100%; /* For containers, ensure they take full width */
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-ax88game img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ax88game__hero-section img,
      .page-ax88game__game-card img,
      .page-ax88game__advantage-item img,
      .page-ax88game__step-item img {
          width: 100% !important;
          max-width: 100% !important;
      }
    }
  