
    /* CSS Styles for page-pg88slotlogin */
    :root {
      --page-pg88slotlogin-primary-color: #e44d26; /* Màu cam/đỏ rực rỡ cho hành động */
      --page-pg88slotlogin-secondary-color: #333;
      --page-pg88slotlogin-text-color: #333;
      --page-pg88slotlogin-light-bg: #f5f5f5;
      --page-pg88slotlogin-dark-bg: #222;
      --page-pg88slotlogin-white: #fff;
      --page-pg88slotlogin-border-color: #ddd;
      --page-pg88slotlogin-accent-color: #ffcc00; /* Màu vàng cho điểm nhấn/tiền thưởng */
    }

    .page-pg88slotlogin {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-pg88slotlogin-text-color);
      background-color: var(--page-pg88slotlogin-light-bg);
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    .page-pg88slotlogin__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-pg88slotlogin__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: var(--page-pg88slotlogin-white);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Đảm bảo padding được tính vào chiều rộng */
    }

    .page-pg88slotlogin__section--dark {
      background-color: var(--page-pg88slotlogin-dark-bg);
      color: var(--page-pg88slotlogin-white);
    }

    .page-pg88slotlogin__section--dark h2,
    .page-pg88slotlogin__section--dark h3,
    .page-pg88slotlogin__section--dark p {
      color: var(--page-pg88slotlogin-white);
    }

    .page-pg88slotlogin__heading {
      text-align: center;
      color: var(--page-pg88slotlogin-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-pg88slotlogin__subheading {
      text-align: center;
      color: var(--page-pg88slotlogin-secondary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-pg88slotlogin__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.8;
    }

    /* Hero Section */
    .page-pg88slotlogin__hero-section {
      background: linear-gradient(135deg, var(--page-pg88slotlogin-primary-color), #f7931e);
      color: var(--page-pg88slotlogin-white);
      text-align: center;
      padding: 120px 20px 60px; /* Điều chỉnh padding-top cho header cố định */
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-pg88slotlogin__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

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

    .page-pg88slotlogin__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-pg88slotlogin-white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-pg88slotlogin__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: var(--page-pg88slotlogin-white);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    .page-pg88slotlogin__cta-button {
      display: inline-block;
      background-color: var(--page-pg88slotlogin-accent-color);
      color: var(--page-pg88slotlogin-dark-bg);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

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

    /* Floating Login Button */
    .page-pg88slotlogin__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-pg88slotlogin-primary-color);
      color: var(--page-pg88slotlogin-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-pg88slotlogin__pulse 2s infinite;
      border: none;
      cursor: pointer;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
    }

    .page-pg88slotlogin__floating-button:hover {
      background-color: #c93a18;
      transform: translateX(-50%) translateY(-3px);
    }

    @keyframes page-pg88slotlogin__pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(228, 77, 38, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0);
      }
    }

    /* Features/Benefits Grid */
    .page-pg88slotlogin__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pg88slotlogin__feature-item {
      background-color: var(--page-pg88slotlogin-white);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-pg88slotlogin__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-pg88slotlogin__feature-title {
      font-size: 1.5em;
      color: var(--page-pg88slotlogin-primary-color);
      margin-bottom: 15px;
    }

    .page-pg88slotlogin__feature-description {
      font-size: 1em;
      color: var(--page-pg88slotlogin-text-color);
    }

    /* Guide Steps */
    .page-pg88slotlogin__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-pg88slotlogin__step-item {
      display: flex;
      align-items: flex-start;
      background-color: var(--page-pg88slotlogin-light-bg);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-pg88slotlogin__step-number {
      background-color: var(--page-pg88slotlogin-primary-color);
      color: var(--page-pg88slotlogin-white);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-pg88slotlogin__step-content {
      flex-grow: 1;
    }

    .page-pg88slotlogin__step-title {
      font-size: 1.3em;
      color: var(--page-pg88slotlogin-secondary-color);
      margin-bottom: 5px;
    }

    .page-pg88slotlogin__step-description {
      font-size: 1em;
      color: var(--page-pg88slotlogin-text-color);
    }

    /* App Download Section */
    .page-pg88slotlogin__app-download-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    .page-pg88slotlogin__app-image {
      max-width: 300px;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-pg88slotlogin__download-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-pg88slotlogin__download-button {
      background-color: #4CAF50; /* Xanh lá cho Android */
      color: var(--page-pg88slotlogin-white);
      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;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
    }

    .page-pg88slotlogin__download-button--ios {
      background-color: #007bff; /* Xanh dương cho iOS */
    }

    .page-pg88slotlogin__download-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-pg88slotlogin__download-button img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
      max-width: 100%;
      height: auto;
    }

    /* Game Categories */
    .page-pg88slotlogin__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-pg88slotlogin__game-card {
      background-color: var(--page-pg88slotlogin-light-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-pg88slotlogin__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-pg88slotlogin__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

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

    .page-pg88slotlogin__game-title {
      font-size: 1.4em;
      color: var(--page-pg88slotlogin-primary-color);
      margin-bottom: 10px;
    }

    .page-pg88slotlogin__game-description {
      font-size: 0.95em;
      color: var(--page-pg88slotlogin-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-pg88slotlogin__promotions-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-pg88slotlogin__promotion-item {
      background-color: var(--page-pg88slotlogin-accent-color);
      color: var(--page-pg88slotlogin-dark-bg);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-pg88slotlogin__promotion-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      flex-shrink: 0;
      max-width: 100%;
      height: auto;
    }

    .page-pg88slotlogin__promotion-details {
      flex-grow: 1;
    }

    .page-pg88slotlogin__promotion-title {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 5px;
      color: var(--page-pg88slotlogin-dark-bg); /* Đảm bảo độ tương phản */
    }

    .page-pg88slotlogin__promotion-description {
      font-size: 1.1em;
      color: var(--page-pg88slotlogin-dark-bg); /* Đảm bảo độ tương phản */
    }

    /* FAQ Section */
    .page-pg88slotlogin__faq-list {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-pg88slotlogin__faq-item {
      background-color: var(--page-pg88slotlogin-white);
      border: 1px solid var(--page-pg88slotlogin-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-pg88slotlogin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-pg88slotlogin-light-bg);
      border-bottom: 1px solid var(--page-pg88slotlogin-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-pg88slotlogin__faq-question:hover {
      background-color: #eaeaea;
    }

    .page-pg88slotlogin__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-pg88slotlogin-secondary-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-pg88slotlogin__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-pg88slotlogin-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút bật tắt chặn sự kiện click */
    }

    .page-pg88slotlogin__faq-item.active .page-pg88slotlogin__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    .page-pg88slotlogin__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: var(--page-pg88slotlogin-text-color);
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-pg88slotlogin__container {
        padding: 10px;
      }

      .page-pg88slotlogin__hero-section {
        padding: 100px 15px 40px; /* Điều chỉnh padding-top cho header cố định trên di động */
      }

      .page-pg88slotlogin__hero-title {
        font-size: 2.2em;
      }

      .page-pg88slotlogin__hero-description {
        font-size: 1.1em;
      }

      .page-pg88slotlogin__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-pg88slotlogin__floating-button {
        padding: 12px 25px;
        font-size: 1em;
        width: calc(100% - 40px); /* Điều chỉnh chiều rộng cho di động */
        max-width: 400px; /* Giới hạn chiều rộng tối đa */
      }

      .page-pg88slotlogin__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-pg88slotlogin__heading {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-pg88slotlogin__subheading {
        font-size: 1.5em;
      }

      .page-pg88slotlogin__paragraph {
        font-size: 1em;
      }

      .page-pg88slotlogin__features-grid,
      .page-pg88slotlogin__game-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-pg88slotlogin__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-pg88slotlogin__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-pg88slotlogin__download-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-pg88slotlogin__download-button {
        width: 100%;
        justify-content: center;
      }

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

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

      .page-pg88slotlogin__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-pg88slotlogin__promotion-icon {
        margin-bottom: 10px;
      }

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

      .page-pg88slotlogin__faq-question h3 {
        font-size: 1.1em;
      }

      .page-pg88slotlogin__faq-answer {
        padding: 15px 15px !important; /* Điều chỉnh padding cho di động */
      }
      
      /* Đảm bảo tất cả hình ảnh phản hồi trên di động */
      .page-pg88slotlogin img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Các kiểu phản hồi cụ thể cho mục danh sách */
      .page-pg88slotlogin__features-grid > div,
      .page-pg88slotlogin__guide-steps > div,
      .page-pg88slotlogin__game-categories-grid > div,
      .page-pg88slotlogin__promotions-list > li,
      .page-pg88slotlogin__faq-list > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-pg88slotlogin__promotions-list,
      .page-pg88slotlogin__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .page-pg88slotlogin__hero-title {
        font-size: 2.8em;
      }
      .page-pg88slotlogin__hero-description {
        font-size: 1.2em;
      }
      .page-pg88slotlogin__features-grid,
      .page-pg88slotlogin__game-categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  