
    :root {
      --page-lu88-primary-color: #007bff; /* Blue */
      --page-lu88-secondary-color: #6c757d; /* Grey */
      --page-lu88-accent-color: #ffc107; /* Yellow */
      --page-lu88-background-light: #f8f9fa; /* Light grey */
      --page-lu88-background-dark: #343a40; /* Dark grey */
      --page-lu88-text-color-light: #f8f9fa;
      --page-lu88-text-color-dark: #212529;
    }

    .page-lu88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-lu88-text-color-dark);
      background-color: var(--page-lu88-background-light);
      padding-top: 160px; /* Vùng an toàn cho tiêu đề/menu nổi */
      position: relative; /* Cho ngữ cảnh nút nổi */
      direction: ltr; /* Đảm bảo hướng văn bản ltr */
    }

    .page-lu88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    .page-lu88-section {
      padding: 2rem 1rem;
      margin-bottom: 1rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-lu88-section-dark {
        background-color: var(--page-lu88-background-dark);
        color: var(--page-lu88-text-color-light);
    }
    .page-lu88-section-dark h2, .page-lu88-section-dark h3 {
        color: var(--page-lu88-text-color-light);
    }

    .page-lu88-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .page-lu88-header h1 {
      color: var(--page-lu88-primary-color);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }
    @media (max-width: 768px) {
        .page-lu88-header h1 {
            font-size: 2rem;
        }
    }

    .page-lu88-header p {
      font-size: 1.1rem;
      color: var(--page-lu88-secondary-color);
    }

    .page-lu88-button {
      display: inline-block;
      background-color: var(--page-lu88-primary-color);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .page-lu88-button:hover {
      background-color: #0056b3;
    }

    .page-lu88-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Đỏ cho sự khẩn cấp/khuyến mãi */
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-decoration: none;
      font-weight: bold;
      z-index: 1000;
      animation: page-lu88-pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; /* Ngăn chặn văn bản xuống dòng */
      font-size: 1rem;
    }
    .page-lu88-floating-button:hover {
        background-color: #c82333;
    }
    @keyframes page-lu88-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    @media (max-width: 600px) {
        .page-lu88-floating-button {
            left: 50%;
            transform: translateX(-50%);
            right: auto;
            bottom: 15px;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
        }
    }

    .page-lu88-hero-banner {
      width: 100%;
      height: auto;
      max-width: 100%; /* Đảm bảo hình ảnh không bị kéo giãn */
      display: block;
      margin: 0 auto 2rem auto;
      border-radius: 8px;
    }

    .page-lu88-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    @media (min-width: 768px) {
        .page-lu88-grid-lg {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    .page-lu88-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 1rem;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-lu88-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .page-lu88-card img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 0.75rem;
      object-fit: contain; /* Đảm bảo hình ảnh không bị kéo giãn */
      width: 120px; /* Chiều rộng cụ thể cho logo game */
      height: 80px; /* Chiều cao cụ thể cho logo game */
    }
    .page-lu88-card-game img {
        height: 100px; /* Lớn hơn cho hình ảnh sản phẩm game */
        width: auto;
    }

    .page-lu88-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--page-lu88-primary-color);
    }
    .page-lu88-card h3 a {
        color: var(--page-lu88-primary-color);
        text-decoration: none;
    }
    .page-lu88-card h3 a:hover {
        text-decoration: underline;
    }

    .page-lu88-list {
      list-style: none;
      padding: 0;
    }

    .page-lu88-list li {
      background-color: #e9ecef;
      margin-bottom: 0.5rem;
      padding: 0.75rem 1rem;
      border-left: 5px solid var(--page-lu88-primary-color);
      border-radius: 4px;
      display: flex;
      align-items: center;
      color: var(--page-lu88-text-color-dark); /* Đảm bảo độ tương phản */
    }
    .page-lu88-list li::before {
        content: "✔️"; /* Biểu tượng dấu kiểm */
        margin-right: 10px;
    }

    .page-lu88-faq-item {
        margin-bottom: 1rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }
    .page-lu88-faq-item h3 {
        color: var(--page-lu88-primary-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    .page-lu88-faq-item h3::after {
        content: '▼';
        transition: transform 0.3s ease;
    }
    .page-lu88-faq-item.active h3::after {
        transform: rotate(180deg);
    }
    .page-lu88-faq-item p {
        padding-left: 1.5rem;
        display: none; /* Được điều khiển bởi JS */
        color: var(--page-lu88-text-color-dark); /* Đảm bảo độ tương phản */
    }
    .page-lu88-faq-item.active p {
        display: block;
    }
  