
    /* CSS nội tuyến cho trang az88 */
    .page-az88 {
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-az88__main-wrapper {
      padding-top: 140px; /* An toàn cho header cố định */
    }

    @media (max-width: 768px) {
      .page-az88__main-wrapper {
        padding-top: 100px; /* An toàn cho header cố định trên di động */
      }
    }

    .page-az88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      text-align: center;
    }

    .page-az88__section--dark {
      background-color: #1a1a1a;
      color: #FFFFFF;
    }

    .page-az88__section-title {
      color: #FFD700; /* Tiêu đề vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-az88__section-subtitle {
      color: #FFFFFF;
      font-size: 1.5em;
      margin-bottom: 30px;
    }

    .page-az88__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-az88__highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Hero Section */
    .page-az88__hero-section {
      position: relative;
      padding: 0; /* Loại bỏ padding để hình ảnh chiếm toàn bộ */
      margin-bottom: 0;
      overflow: hidden;
      background-color: #000000; /* Đảm bảo nền đen */
      text-align: center;
    }

    .page-az88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và text */
    }

    .page-az88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
        .page-az88__hero-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-az88__hero-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    .page-az88__hero-content {
      padding: 20px;
      background-color: #000000; /* Nền đen cho phần nội dung hero */
      text-align: center;
    }

    .page-az88__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-az88__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    .page-az88__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen trên nút */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-az88__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

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

    .page-az88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%; /* Đảm bảo chiều cao đồng nhất */
    }

    .page-az88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }

    .page-az88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-az88__game-card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
        .page-az88__game-card-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-az88__game-card-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }


    .page-az88__game-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-az88__game-card-description {
      color: #ccc;
      font-size: 0.95em;
      flex-grow: 1; /* Cho phép mô tả chiếm không gian còn lại */
    }

    /* Game Providers */
    .page-az88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-az88__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .page-az88__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 10px rgba(255, 215, 0, 0.15);
    }

    .page-az88__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Chiều cao cố định cho logo để đồng nhất */
    }

    .page-az88__provider-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 768px) {
        .page-az88__provider-logo {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-az88__provider-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    .page-az88__provider-name {
      color: #FFFFFF;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
    }

    /* Payment Methods */
    .page-az88__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-az88__payment-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .page-az88__payment-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px; /* Chiều cao cố định cho logo */
    }

    .page-az88__payment-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 768px) {
        .page-az88__payment-logo {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-az88__payment-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    .page-az88__payment-name {
      color: #FFFFFF;
      font-size: 0.8em;
      text-align: center;
    }

    /* Floating Login Button */
    .page-az88__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-az88__float-animation 2s ease-in-out infinite;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      border-radius: 50px;
    }

    .page-az88__floating-login-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-az88__floating-login-button:hover {
      background-color: #e6c200;
    }

    @keyframes page-az88__float-animation {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .page-az88__floating-login {
        bottom: 15px;
        right: 15px;
      }
      .page-az88__floating-login-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    /* FAQ Section */
    .page-az88__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-az88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-az88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

    .page-az88__faq-question:hover {
      background-color: #3a3a3a;
    }

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

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

    .page-az88__faq-item.active .page-az88__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-az88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-az88__section {
        padding: 30px 15px;
      }
      .page-az88__section-title {
        font-size: 2em;
      }
      .page-az88__section-subtitle {
        font-size: 1.2em;
      }
      .page-az88__hero-title {
        font-size: 2.2em;
      }
      .page-az88__hero-description {
        font-size: 1em;
      }
      .page-az88__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-az88__game-categories {
        grid-template-columns: 1fr;
      }
      .page-az88__providers-grid,
      .page-az88__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-az88__faq-question h3 {
        font-size: 1em;
      }
      .page-az88__faq-answer {
        padding: 0 15px;
      }
      .page-az88__faq-item.active .page-az88__faq-answer {
        padding: 15px !important;
      }
    }
  