
    :root {
      --page-pg88slotasia-primary-color: #f7b32b; /* Vàng cam */
      --page-pg88slotasia-secondary-color: #333; /* Xám đậm */
      --page-pg88slotasia-background-color: #1a1a1a; /* Nền tối */
      --page-pg88slotasia-text-color: #f0f0f0; /* Chữ sáng */
      --page-pg88slotasia-accent-color: #e74c3c; /* Đỏ nhấn */
      --page-pg88slotasia-border-color: #444; /* Viền xám */
    }

    .page-pg88slotasia {
      font-family: 'Arial', sans-serif;
      color: var(--page-pg88slotasia-text-color);
      background-color: var(--page-pg88slotasia-background-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    .page-pg88slotasia__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    
    .page-pg88slotasia__section--dark {
      background-color: var(--page-pg88slotasia-secondary-color);
    }

    .page-pg88slotasia__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:pg88slotasia,banner,main]') no-repeat center center / cover;
      padding: 10px 20px 80px; /* Thêm padding-top để tránh bị header che */
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .page-pg88slotasia__hero-title {
      font-size: 2.8em;
      color: var(--page-pg88slotasia-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-pg88slotasia__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin-bottom: 30px;
      color: var(--page-pg88slotasia-text-color);
    }

    .page-pg88slotasia__button {
      display: inline-block;
      background-color: var(--page-pg88slotasia-primary-color);
      color: var(--page-pg88slotasia-background-color);
      padding: 15px 30px;
      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;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pg88slotasia__button:hover {
      background-color: #ffc107; /* Màu vàng sáng hơn */
      transform: translateY(-2px);
    }

    .page-pg88slotasia__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      text-align: center;
      animation: page-pg88slotasia__pulse 2s infinite;
    }

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

    .page-pg88slotasia__heading {
      font-size: 2.2em;
      color: var(--page-pg88slotasia-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-pg88slotasia__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: var(--page-pg88slotasia-primary-color);
      border-radius: 2px;
    }

    .page-pg88slotasia__sub-heading {
      font-size: 1.8em;
      color: var(--page-pg88slotasia-text-color);
      margin-bottom: 20px;
    }

    .page-pg88slotasia__text-content {
      font-size: 1.1em;
      color: var(--page-pg88slotasia-text-color);
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-pg88slotasia__game-card {
      background-color: var(--page-pg88slotasia-secondary-color);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-pg88slotasia-border-color);
    }

    .page-pg88slotasia__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    }

    .page-pg88slotasia__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng của thẻ cha */
      box-sizing: border-box; /* Bao gồm padding và border vào kích thước */
    }
    
    .page-pg88slotasia__game-content {
      padding: 20px;
    }

    .page-pg88slotasia__game-title {
      font-size: 1.5em;
      color: var(--page-pg88slotasia-primary-color);
      margin-bottom: 10px;
    }

    .page-pg88slotasia__game-description {
      font-size: 0.95em;
      color: var(--page-pg88slotasia-text-color);
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-pg88slotasia__cta-section {
      background-color: var(--page-pg88slotasia-primary-color);
      color: var(--page-pg88slotasia-background-color);
      padding: 50px 20px;
    }

    .page-pg88slotasia__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-pg88slotasia__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-pg88slotasia__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      text-align: left;
    }

    .page-pg88slotasia__faq-item {
      background-color: var(--page-pg88slotasia-secondary-color);
      border: 1px solid var(--page-pg88slotasia-border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-pg88slotasia__faq-question:hover {
      background-color: #3d3d3d;
    }

    .page-pg88slotasia__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-pg88slotasia-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-pg88slotasia__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-pg88slotasia-primary-color);
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-pg88slotasia__faq-item.active .page-pg88slotasia__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
    }

    .page-pg88slotasia__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.3s ease;
      opacity: 0;
      color: var(--page-pg88slotasia-text-color);
      text-align: justify;
      font-size: 0.95em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-pg88slotasia__hero-section {
        padding-top: 10px; /* Điều chỉnh padding-top cho mobile */
        min-height: 350px;
      }
      .page-pg88slotasia__hero-title {
        font-size: 2em;
      }
      .page-pg88slotasia__hero-description {
        font-size: 1em;
      }
      .page-pg88slotasia__heading {
        font-size: 1.8em;
      }
      .page-pg88slotasia__sub-heading {
        font-size: 1.4em;
      }
      .page-pg88slotasia__text-content {
        font-size: 0.95em;
      }
      .page-pg88slotasia__section {
        padding: 30px 15px;
      }
      .page-pg88slotasia__game-grid {
        grid-template-columns: 1fr;
      }
      .page-pg88slotasia__game-card {
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
      }
      .page-pg88slotasia__game-description {
        word-wrap: break-word !important; /* Đảm bảo văn bản không tràn */
      }
      .page-pg88slotasia__faq-question {
        padding: 12px 15px;
      }
      .page-pg88slotasia__faq-question h3 {
        font-size: 1em;
      }
      .page-pg88slotasia__faq-toggle {
        font-size: 1.5em;
      }
      .page-pg88slotasia__faq-answer {
        padding: 0 15px;
      }
      .page-pg88slotasia__faq-item.active .page-pg88slotasia__faq-answer {
        padding: 15px !important;
      }
      .page-pg88slotasia__cta-title {
        font-size: 1.8em;
      }
      .page-pg88slotasia__cta-text {
        font-size: 1em;
      }
      .page-pg88slotasia__floating-button {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        right: 20px;
      }
      .page-pg88slotasia__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-pg88slotasia__game-content {
        padding: 15px;
      }
    }

    @media (min-width: 769px) {
      .page-pg88slotasia__floating-button {
        bottom: 50px;
        right: 30px;
        left: auto;
        transform: none;
        width: auto;
        max-width: 250px;
      }
    }
  