
    /* Tổng quan */
    .page-ax88casinos {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    /* Hero Section */
    .page-ax88casinos__hero-section {
      position: relative;
      background-color: #000;
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Cho header cố định */
    }

    .page-ax88casinos__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-ax88casinos__hero-content {
      padding: 20px;
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-ax88casinos__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffeb3b; /* Vàng sáng */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ax88casinos__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-ax88casinos__cta-button {
      display: inline-block;
      background-color: #e91e63; /* Hồng */
      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-ax88casinos__cta-button:hover {
      background-color: #c2185b;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-ax88casinos__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #4CAF50; /* Xanh lá */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      animation: page-ax88casinos__pulse 2s infinite;
      border: none;
      text-align: center;
      width: 90%;
      max-width: 350px;
    }

    .page-ax88casinos__floating-button:hover {
      background-color: #45a049;
    }

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

    /* Content Sections */
    .page-ax88casinos__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

    .page-ax88casinos__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-ax88casinos__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e91e63;
      margin: 10px auto 0;
    }

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

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

    .page-ax88casinos__game-item {
      text-align: center;
      background-color: #f0f0f0;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-ax88casinos__game-icon {
      width: 100px; /* Đảm bảo kích thước tối thiểu 200x200 */
      height: 100px; /* Đảm bảo kích thước tối thiểu 200x200 */
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-ax88casinos__game-name {
      font-weight: bold;
      color: #2c3e50;
      font-size: 0.95em;
    }

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

    .page-ax88casinos__promo-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-ax88casinos__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-ax88casinos__promo-content {
      padding: 20px;
    }

    .page-ax88casinos__promo-title {
      font-size: 1.3em;
      color: #e91e63;
      margin-bottom: 10px;
    }

    .page-ax88casinos__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* How-to Guide */
    .page-ax88casinos__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-ax88casinos__guide-step {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background-color: #fdfdfd;
      padding: 20px;
      border-left: 5px solid #e91e63;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-ax88casinos__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #e91e63;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #e91e63;
      border-radius: 50%;
    }

    .page-ax88casinos__step-content h3 {
      margin-top: 0;
      color: #2c3e50;
      font-size: 1.2em;
    }

    .page-ax88casinos__step-content p {
      margin-bottom: 0;
      color: #555;
    }

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

    .page-ax88casinos__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .page-ax88casinos__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f7f7f7;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-ax88casinos__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-ax88casinos__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-ax88casinos__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e91e63;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-ax88casinos__faq-item.active .page-ax88casinos__faq-toggle {
      transform: rotate(45deg); /* Chuyển dấu '+' thành 'x' hoặc '-' */
    }

    .page-ax88casinos__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.4s ease;
    }

    .page-ax88casinos__faq-item.active .page-ax88casinos__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-ax88casinos__faq-answer p {
      margin-top: 0;
      margin-bottom: 0;
      color: #555;
    }

    /* Why Choose Section */
    .page-ax88casinos__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-ax88casinos__advantage-item {
      background-color: #fdfdfd;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      text-align: center;
      border-bottom: 4px solid #e91e63;
    }

    .page-ax88casinos__advantage-item h3 {
      font-size: 1.2em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-ax88casinos__advantage-item p {
      font-size: 0.9em;
      color: #666;
    }

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

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

      .page-ax88casinos__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-ax88casinos__section {
        padding: 20px 15px;
        margin-top: 15px;
      }

      .page-ax88casinos__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

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

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

      .page-ax88casinos__game-name {
        font-size: 0.85em;
      }

      .page-ax88casinos__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-ax88casinos__promo-image {
        height: 180px;
      }

      .page-ax88casinos__promo-title {
        font-size: 1.2em;
      }

      .page-ax88casinos__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-ax88casinos__step-number {
        margin-bottom: 10px;
      }

      .page-ax88casinos__step-content h3 {
        font-size: 1.1em;
      }

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

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

      .page-ax88casinos__faq-answer {
        padding: 15px 15px;
      }

      .page-ax88casinos__advantage-item {
        padding: 20px;
      }

      .page-ax88casinos__floating-button {
        padding: 12px 20px;
        font-size: 1.1em;
      }

      /* Image responsive optimization */
      .page-ax88casinos img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ax88casinos div {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  