
    :root {
      --page-az888-primary-color: #e44d26; /* Màu cam đỏ */
      --page-az888-secondary-color: #f7a01a; /* Màu cam vàng */
      --page-az888-dark-bg: #1a1a1a;
      --page-az888-light-bg: #ffffff;
      --page-az888-text-color: #333333;
      --page-az888-light-text-color: #f0f0f0;
      --page-az888-accent-color: #4CAF50; /* Xanh lá */
      --page-az888-border-color: #e0e0e0;
    }

    .page-az888 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-az888-text-color);
      background-color: #f8f8f8;
      overflow-x: hidden;
    }

    .page-az888__main-content-wrapper {
      padding-top: 120px; /* Dành chỗ cho header cố định */
      box-sizing: border-box;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    @media (max-width: 768px) {
      .page-az888__main-content-wrapper {
        padding-top: 100px; /* Dành chỗ cho header cố định trên mobile */
      }
    }

    .page-az888__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--page-az888-light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-az888__section--dark {
      background-color: var(--page-az888-dark-bg);
      color: var(--page-az888-light-text-color);
    }

    .page-az888__section-title {
      font-size: 2.5em;
      color: var(--page-az888-primary-color);
      margin-bottom: 20px;
      text-align: center;
      font-weight: 700;
    }

    .page-az888__section-title--light {
      color: var(--page-az888-secondary-color);
    }

    @media (max-width: 768px) {
      .page-az888__section-title {
        font-size: 2em;
      }
    }

    .page-az888__hero-section {
      background: linear-gradient(135deg, var(--page-az888-primary-color), var(--page-az888-secondary-color));
      color: var(--page-az888-light-text-color);
      padding: 60px 0;
      border-radius: 8px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-az888__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 0 15px;
    }

    .page-az888__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-az888__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-az888__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto 0;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .page-az888__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-az888__hero-title {
        font-size: 2.5em;
      }
      .page-az888__hero-description {
        font-size: 1.1em;
      }
    }

    .page-az888__button {
      display: inline-block;
      background-color: var(--page-az888-accent-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      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-az888__button:hover {
      background-color: #43a047;
      transform: translateY(-2px);
    }

    .page-az888__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-az888__floating-button {
      background-color: var(--page-az888-primary-color);
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

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

    .page-az888__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .page-az888__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      min-height: 350px; /* Ensure cards have consistent height */
    }

    .page-az888__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-az888__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent image display */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
    }

    .page-az888__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the container while maintaining aspect ratio */
      display: block;
    }

    @media (max-width: 768px) {
      .page-az888__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-az888__game-card-content {
      padding: 15px 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-az888__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-az888-primary-color);
      font-weight: 600;
    }

    .page-az888__game-card-title a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    .page-az888__game-card-title a:hover {
      color: var(--page-az888-secondary-color);
    }

    .page-az888__game-card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-az888__game-card-link {
      display: block;
      background-color: var(--page-az888-accent-color);
      color: #fff;
      padding: 8px 15px;
      border-radius: 25px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
    }

    .page-az888__game-card-link:hover {
      background-color: #43a047;
    }

    .page-az888__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .page-az888__provider-logo-container {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for consistent display */
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-az888__provider-logo-container:hover {
      transform: translateY(-5px);
    }

    .page-az888__provider-logo {
      max-width: 90%;
      max-height: 70px;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 768px) {
      .page-az888__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-az888__about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
      padding: 0 20px;
    }

    .page-az888__about-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #444;
    }

    .page-az888__about-content ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #444;
    }

    .page-az888__about-content li {
      margin-bottom: 8px;
      font-size: 1.05em;
    }

    .page-az888__call-to-action {
      background-color: var(--page-az888-primary-color);
      color: var(--page-az888-light-text-color);
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 30px;
      text-align: center;
    }

    .page-az888__call-to-action-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
    }

    .page-az888__call-to-action-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-az888__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-az888__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-az888-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-az888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--page-az888-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-az888__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-az888-text-color);
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-az888__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-az888-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-az888__faq-item.active .page-az888__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
      color: var(--page-az888-accent-color);
    }

    .page-az888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      text-align: left;
    }

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

    .page-az888__faq-answer p {
      margin-bottom: 10px;
      font-size: 1em;
    }
    .page-az888__faq-answer ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 10px;
    }
    .page-az888__faq-answer li {
        margin-bottom: 5px;
    }

    @media (max-width: 768px) {
      .page-az888__faq-question {
        padding: 15px;
      }
      .page-az888__faq-question h3 {
        font-size: 1.1em;
      }
      .page-az888__faq-answer {
        padding: 0 15px;
      }
      .page-az888__faq-item.active .page-az888__faq-answer {
        padding: 15px 15px !important;
      }
    }
  