
    /* Tổng thể */
    :root {
      --page-taigo88-primary-color: #f7b32b; /* Vàng cam */
      --page-taigo88-secondary-color: #1a1a1a; /* Gần đen */
      --page-taigo88-text-color: #e0e0e0; /* Trắng xám */
      --page-taigo88-dark-bg: #2a2a2a; /* Nền tối */
      --page-taigo88-light-bg: #3c3c3c; /* Nền sáng hơn */
      --page-taigo88-accent-color: #e74c3c; /* Đỏ nhấn */
      --page-taigo88-border-color: #555;
    }

    .page-taigo88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-taigo88-text-color);
      background-color: var(--page-taigo88-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị footer che */
    }

    .page-taigo88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Tiêu đề */
    .page-taigo88 h1, .page-taigo88 h2, .page-taigo88 h3 {
      color: var(--page-taigo88-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-taigo88 h1 {
      font-size: 2.2em;
      padding-top: 150px; /* An toàn cho banner và menu nổi */
      margin-top: -100px; /* Điều chỉnh lại khoảng trống nếu cần */
      position: relative;
      z-index: 1; /* Đảm bảo nằm trên banner nếu banner có position */
    }
    
    .page-taigo88 h2 {
      font-size: 1.8em;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .page-taigo88 h3 {
      font-size: 1.4em;
      color: var(--page-taigo88-text-color);
      text-align: left;
      margin-bottom: 15px;
    }

    /* Đoạn văn */
    .page-taigo88 p {
      margin-bottom: 15px;
      color: var(--page-taigo88-text-color);
      text-align: justify;
    }

    /* Liên kết */
    .page-taigo88 a {
      color: var(--page-taigo88-primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-taigo88 a:hover {
      color: var(--page-taigo88-accent-color);
    }

    /* Nút */
    .page-taigo88-btn {
      display: inline-block;
      background-color: var(--page-taigo88-primary-color);
      color: var(--page-taigo88-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-taigo88-btn:hover {
      background-color: var(--page-taigo88-accent-color);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Phần chính */
    .page-taigo88-hero {
      position: relative;
      text-align: center;
      padding: 20px 0;
      overflow: hidden; /* Đảm bảo hình ảnh không tràn ra ngoài */
      background-color: var(--page-taigo88-dark-bg);
    }

    .page-taigo88-hero-image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 250px; /* Đảm bảo chiều cao tối thiểu cho hình ảnh */
        margin-bottom: 20px;
    }

    .page-taigo88-hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-taigo88-hero-content {
      padding: 20px 15px;
      background: linear-gradient(to top, rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.7));
      border-radius: 10px;
      margin-top: -50px; /* Kéo lên một chút để tạo hiệu ứng */
      position: relative;
      z-index: 2;
    }

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

    /* Nút đăng nhập/đăng ký nổi */
    .page-taigo88-floating-promo-btn {
      position: sticky; /* Sử dụng sticky để nó cuộn theo và dừng lại ở top */
      top: 0; /* Đặt ở top */
      left: 0;
      width: 100%;
      background-color: var(--page-taigo88-accent-color);
      color: #fff;
      padding: 15px 10px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      z-index: 1000; /* Đảm bảo nằm trên các phần tử khác */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border-radius: 0 0 15px 15px;
      animation: page-taigo88-promo-pulse 2s infinite;
      box-sizing: border-box; /* Bao gồm padding và border trong width */
      display: block; /* Đảm bảo chiếm toàn bộ chiều rộng */
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
      overflow: hidden; /* Ẩn phần tràn */
      text-overflow: ellipsis; /* Hiển thị dấu ba chấm nếu tràn */
    }

    .page-taigo88-floating-promo-btn .page-taigo88-btn-text {
        display: inline-block;
        animation: page-taigo88-scroll-text 10s linear infinite; /* Cuộn văn bản */
    }

    @keyframes page-taigo88-scroll-text {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }

    @keyframes page-taigo88-promo-pulse {
      0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
      100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
    }

    @media (min-width: 768px) {
        .page-taigo88-floating-promo-btn {
            padding: 15px 20px;
            font-size: 1.2em;
        }
        .page-taigo88-floating-promo-btn .page-taigo88-btn-text {
            animation: none; /* Tắt cuộn văn bản trên desktop */
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
        }
    }


    /* Các phần khác */
    .page-taigo88-section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--page-taigo88-light-bg);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-taigo88-section:nth-child(even) {
      background-color: var(--page-taigo88-dark-bg);
    }

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

    .page-taigo88-card {
      background-color: var(--page-taigo88-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Căn giữa hình ảnh và nội dung */
      text-align: center;
      padding-bottom: 20px;
    }

    .page-taigo88-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-taigo88-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    
    .page-taigo88-card-gamelogo {
        width: 100%;
        max-width: 150px; /* Kích thước logo game */
        height: auto;
        padding: 15px;
        object-fit: contain;
        background-color: #333; /* Nền cho logo */
        border-radius: 10px;
        margin: 15px auto 10px auto;
    }

    .page-taigo88-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%; /* Đảm bảo nội dung card chiếm toàn bộ chiều rộng */
    }

    .page-taigo88-card-title {
      font-size: 1.2em;
      color: var(--page-taigo88-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-taigo88-card-text {
      font-size: 0.9em;
      color: var(--page-taigo88-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-taigo88-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-taigo88-list li {
      background-color: var(--page-taigo88-secondary-color);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-taigo88-list li::before {
      content: '✔';
      color: var(--page-taigo88-primary-color);
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
    }
    
    .page-taigo88-step-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .page-taigo88-step-list li {
        background-color: var(--page-taigo88-secondary-color);
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-taigo88-step-list li h3 {
        color: var(--page-taigo88-primary-color);
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .page-taigo88-step-list li img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-top: 15px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-taigo88-step-list li p {
        font-size: 0.95em;
        color: var(--page-taigo88-text-color);
        text-align: center;
    }

    /* FAQ */
    .page-taigo88-faq-item {
      background-color: var(--page-taigo88-secondary-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-taigo88-faq-question {
      padding: 15px 20px;
      background-color: var(--page-taigo88-light-bg);
      color: var(--page-taigo88-primary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid var(--page-taigo88-border-color);
    }

    .page-taigo88-faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-taigo88-faq-question .icon {
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-taigo88-faq-answer {
      padding: 15px 20px;
      background-color: var(--page-taigo88-secondary-color);
      display: none;
      color: var(--page-taigo88-text-color);
      font-size: 0.95em;
    }

    .page-taigo88-faq-item.active .page-taigo88-faq-answer {
      display: block;
    }

    .page-taigo88-faq-item.active .page-taigo88-faq-question .icon {
      transform: rotate(180deg);
    }

    /* Game Providers Section */
    .page-taigo88-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center; /* Căn giữa các item */
    }

    .page-taigo88-provider-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: var(--page-taigo88-secondary-color);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        transition: transform 0.2s ease;
    }

    .page-taigo88-provider-item:hover {
        transform: translateY(-3px);
    }

    .page-taigo88-provider-item img {
        max-width: 80px;
        height: auto;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .page-taigo88-provider-item span {
        font-size: 0.85em;
        color: var(--page-taigo88-text-color);
        font-weight: 500;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-taigo88 h1 {
        font-size: 1.8em;
        padding-top: 120px; /* Điều chỉnh cho mobile */
        margin-top: -80px;
      }

      .page-taigo88 h2 {
        font-size: 1.5em;
      }

      .page-taigo88-hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .page-taigo88-btn {
        width: 80%;
        max-width: 300px;
      }
      
      .page-taigo88-grid {
        grid-template-columns: 1fr;
      }

      .page-taigo88-list li {
        flex-direction: column;
        text-align: center;
      }
      .page-taigo88-list li::before {
        margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-taigo88 h1 {
        font-size: 1.5em;
        padding-top: 100px;
        margin-top: -60px;
      }
      .page-taigo88-floating-promo-btn {
          font-size: 0.9em;
          padding: 12px 5px;
      }
    }
  