
    /* Tổng thể */
    .page-ax88win {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng cách cho nút nổi */
    }

    .page-ax88win__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-ax88win__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ax88win__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      font-weight: bold;
    }

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

    .page-ax88win__text-center {
      text-align: center;
    }

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

    .page-ax88win__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-ax88win__hero-section {
      background-color: #000;
      padding-top: 10px; /* Để tránh bị header cố định che */
      position: relative;
      overflow: hidden;
    }

    .page-ax88win__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center;
    }

    .page-ax88win__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-ax88win__hero-content {
      padding: 30px 15px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .page-ax88win__hero-title {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
    }

    .page-ax88win__hero-description {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-ax88win__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: center;
      pointer-events: none; /* Cho phép click xuyên qua nếu không phải nút */
    }

    .page-ax88win__floating-button {
      pointer-events: auto; /* Kích hoạt click cho nút */
      background-image: linear-gradient(45deg, #ffcc00, #ff9900);
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 2s infinite;
      text-decoration: none;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-ax88win__floating-button:hover {
      background-image: linear-gradient(45deg, #e6b800, #e68a00);
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* Features Section */
    .page-ax88win__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ax88win__feature-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ax88win__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ax88win__feature-icon {
      width: 100px; /* Minimum size */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

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

    .page-ax88win__feature-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Game Categories Section */
    .page-ax88win__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

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

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

    .page-ax88win__game-icon {
      width: 120px; /* Minimum size */
      height: 120px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      border-radius: 8px;
    }

    .page-ax88win__game-title {
      font-size: 1.1em;
      color: #fff;
      font-weight: bold;
    }
    
    .page-ax88win__game-description {
        font-size: 0.9em;
        color: #aaa;
        margin-top: 5px;
    }

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

    .page-ax88win__promotion-card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-ax88win__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }

    .page-ax88win__promotion-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-ax88win__promotion-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-ax88win__promotion-description {
      font-size: 1em;
      color: #ccc;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-ax88win__promotion-cta {
      display: block;
      margin-top: auto;
    }

    /* Guide Section */
    .page-ax88win__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-ax88win__guide-step {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      max-width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ax88win__guide-step:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }

    .page-ax88win__step-number {
      background-color: #ffcc00;
      color: #1a1a1a;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px;
    }

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

    .page-ax88win__step-description {
      font-size: 1em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-ax88win__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-ax88win__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-ax88win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #333;
      color: #ffcc00;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ax88win__faq-question:hover {
      background-color: #444;
    }
    
    .page-ax88win__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-ax88win__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

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

    .page-ax88win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #222;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      font-size: 1em;
      line-height: 1.8;
    }

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

    /* Call to Action Final */
    .page-ax88win__final-cta-section {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:cover:ax88win,cta,background]');
        background-size: cover;
        background-position: center;
        padding: 60px 15px;
        color: #fff;
        text-align: center;
        border-radius: 10px;
        margin-top: 40px;
    }

    .page-ax88win__final-cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffcc00;
        font-weight: bold;
    }

    .page-ax88win__final-cta-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #eee;
    }


    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-ax88win__hero-title {
        font-size: 2.5em;
      }
      .page-ax88win__section-title {
        font-size: 2em;
      }
      .page-ax88win__features-grid,
      .page-ax88win__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-ax88win__guide-step {
        flex: 1 1 calc(50% - 20px);
      }
      .page-ax88win__final-cta-title {
          font-size: 2.2em;
      }
      .page-ax88win__final-cta-description {
          font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-ax88win {
        padding-bottom: 70px; /* Điều chỉnh cho mobile floating button */
      }
      .page-ax88win__hero-section {
        padding-top: 10px !important; /* Đảm bảo khoảng cách trên di động */
      }
      .page-ax88win__hero-title {
        font-size: 2em;
      }
      .page-ax88win__hero-description {
        font-size: 1em;
      }
      .page-ax88win__section {
        padding: 30px 0;
      }
      .page-ax88win__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-ax88win__features-grid,
      .page-ax88win__promotions-grid,
      .page-ax88win__guide-steps {
        grid-template-columns: 1fr;
      }
      .page-ax88win__guide-step {
        flex: 1 1 100%;
        max-width: 100%;
      }
      .page-ax88win__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-ax88win__game-icon {
        width: 100px;
        height: 100px;
      }
      .page-ax88win__floating-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-ax88win__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-ax88win__faq-answer {
        padding: 0 20px;
      }
      .page-ax88win__faq-item.active .page-ax88win__faq-answer {
        padding: 15px 20px !important;
      }
      .page-ax88win__final-cta-title {
          font-size: 1.8em;
      }
      .page-ax88win__final-cta-description {
          font-size: 1em;
      }

      /* Image responsive optimization */
      .page-ax88win img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-ax88win__hero-image-wrapper,
      .page-ax88win__feature-item img,
      .page-ax88win__game-card img,
      .page-ax88win__promotion-card img {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  