
    /* Reset CSS cơ bản cho trang */
    .page-az888daga {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333333;
      background-color: #f8f8f8;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .page-az888daga * {
      box-sizing: border-box;
    }

    .page-az888daga p,
    .page-az888daga ul li,
    .page-az888daga__game-description,
    .page-az888daga__hero-description,
    .page-az888daga__faq-answer {
        overflow-wrap: break-word;
        word-wrap: break-word; /* For older browsers */
        word-break: break-word; /* For breaking long words without spaces */
    }

    .page-az888daga__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    @media (max-width: 768px) {
      .page-az888daga__container {
        padding: 10px;
      }
    }

    /* Tiêu đề chung */
    .page-az888daga__heading-primary {
      font-size: 2.5em;
      color: #007bff; /* Strong blue */
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-az888daga__heading-secondary {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-az888daga__heading-tertiary {
      font-size: 1.5em;
      color: #007bff;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    /* Hero Section */
    .page-az888daga__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      padding-top: 10px; /* For fixed header */
      margin-bottom: 30px;
    }

    .page-az888daga__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 450px; /* Limit height for banner */
      border-radius: 8px;
    }

    .page-az888daga__hero-content {
      position: relative;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 20px;
      margin: 0 auto;
      max-width: 800px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-50%); /* Pull it up to overlap banner */
      margin-top: -100px; /* Adjust based on desired overlap */
    }

    .page-az888daga__hero-content .page-az888daga__heading-primary {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #007bff;
    }

    .page-az888daga__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555555;
    }

    /* Floating Promotion Button */
    .page-az888daga__floating-promo-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffc107; /* Yellow/Orange for promo */
      color: #333333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      text-align: center;
    }

    .page-az888daga__floating-promo-button:hover {
      background-color: #e0a800;
      transform: translateX(-50%) translateY(-5px);
    }

    @media (max-width: 768px) {
      .page-az888daga__hero-content .page-az888daga__heading-primary {
        font-size: 2em;
      }
      .page-az888daga__hero-description {
        font-size: 1em;
      }
      .page-az888daga__floating-promo-button {
        width: calc(100% - 40px);
        max-width: 350px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* General Content Sections */
    .page-az888daga__section {
      background-color: #ffffff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-az888daga__section p {
      margin-bottom: 15px;
      font-size: 1.05em;
      line-height: 1.7;
    }

    .page-az888daga__section-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 15px;
    }

    .page-az888daga__section-list li {
      padding-left: 25px;
      position: relative;
      margin-bottom: 10px;
      font-size: 1.05em;
    }

    .page-az888daga__section-list li::before {
      content: '✔';
      color: #28a745; /* Green checkmark */
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
    }

    /* Game List/Product Display */
    .page-az888daga__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center; /* Center items */
    }

    .page-az888daga__game-card {
      background-color: #f0f8ff; /* Light blue background */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px; /* Padding for text below image */
    }

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

    .page-az888daga__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-az888daga__game-title {
      font-size: 1.3em;
      color: #007bff;
      margin: 15px 10px 10px;
      font-weight: bold;
    }

    .page-az888daga__game-description {
      font-size: 0.95em;
      color: #555555;
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-az888daga__game-button {
      display: inline-block;
      background-color: #28a745; /* Green button */
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-az888daga__game-button:hover {
      background-color: #218838;
    }

    @media (max-width: 768px) {
      .page-az888daga__game-grid {
        grid-template-columns: 1fr;
      }
      .page-az888daga__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-az888daga__game-image {
        height: 180px;
      }
      .page-az888daga__section-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 25px; /* Keep icon spacing */
      }
    }

    /* Call to Action Button */
    .page-az888daga__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 0 auto;
      background-color: #007bff;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border: none;
      cursor: pointer;
    }

    .page-az888daga__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-az888daga__cta-button {
        width: 100%;
        font-size: 1.1em;
        padding: 12px 20px;
      }
    }

    /* Image responsive */
    .page-az888daga img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      border-radius: 8px; /* Consistent styling */
    }

    .page-az888daga__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px 0;
      text-align: center; /* Center images */
    }

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

    .page-az888daga__faq-item {
      background-color: #f0f8ff; /* Light blue for FAQ items */
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-az888daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e6f2ff; /* Slightly darker light blue */
      color: #007bff;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-az888daga__faq-question:hover {
      background-color: #d0e8ff;
    }

    .page-az888daga__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      text-align: left;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-az888daga__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-az888daga__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: #555555;
    }

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

    .page-az888daga__faq-item.active .page-az888daga__faq-toggle {
      /* Content updated by JS */
    }

    @media (max-width: 768px) {
      .page-az888daga__heading-secondary {
        font-size: 1.8em;
      }
      .page-az888daga__heading-tertiary {
        font-size: 1.3em;
      }
      .page-az888daga__section {
        padding: 20px 15px;
      }
      .page-az888daga__section p,
      .page-az888daga__section-list li {
        font-size: 0.95em;
      }
      .page-az888daga__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-az888daga__faq-question h3 {
        font-size: 1em;
      }
      .page-az888daga__faq-answer {
        padding: 0 15px;
      }
      .page-az888daga__faq-item.active .page-az888daga__faq-answer {
        padding: 15px 15px !important;
      }
    }
  