
    /* Tổng thể */
    .page-new88044 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding-top: 120px; /* An toàn cho header cố định - Desktop */
      overflow-x: hidden; /* Ngăn chặn tràn ngang */
    }

    @media (max-width: 768px) {
      .page-new88044 {
        padding-top: 100px; /* An toàn cho header cố định - Mobile */
      }
    }

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

    .page-new88044__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Chữ vàng */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-new88044__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700;
    }

    /* Hero Section */
    .page-new88044__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      margin-bottom: 50px;
      background-color: #1a1a1a; /* Nền hơi xám đậm cho phần hero */
      padding-bottom: 30px; /* Khoảng cách dưới banner */
    }

    .page-new88044__hero-image-wrapper {
        width: 100%;
        max-height: 500px; /* Giới hạn chiều cao của banner */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-new88044__hero-image {
      width: 100%; /* Đảm bảo hình ảnh không bị kéo dãn */
      height: auto;
      object-fit: cover; /* Giữ tỷ lệ và bao phủ khu vực */
      display: block;
      margin: 0 auto; /* Căn giữa */
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng của container */
    }

    .page-new88044__hero-content {
      padding: 20px 15px;
      text-align: center;
    }

    .page-new88044__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-new88044__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    .page-new88044__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen */
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Login Button */
    .page-new88044__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-new88044__floating-button {
      background-color: #FF4500; /* Màu cam đỏ nổi bật */
      color: #FFFFFF;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap; /* Ngăn chặn chữ xuống dòng */
    }

    .page-new88044__floating-button:hover {
      background-color: #e03e00;
      transform: scale(1.05);
    }

    /* Game Categories Section */
    .page-new88044__game-categories {
      padding: 50px 0;
      background-color: #0d0d0d;
    }

    .page-new88044__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center; /* Căn giữa các item */
    }

    .page-new88044__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none; /* Loại bỏ gạch chân cho thẻ a */
      color: inherit; /* Kế thừa màu chữ */
    }

    .page-new88044__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .page-new88044__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Chiều cao cố định cho hình ảnh sản phẩm */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-new88044__game-card-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-new88044__game-card-title {
      font-size: 1.4em;
      color: #FFD700;
      padding: 15px 10px;
      margin: 0;
    }

    /* Why Choose Us Section */
    .page-new88044__features-section {
      padding: 50px 0;
      background-color: #000000;
    }

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

    .page-new88044__feature-item {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-new88044__feature-item:hover {
      transform: translateY(-5px);
      background-color: #2a2a2a;
    }

    .page-new88044__feature-icon-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #FFD700;
        overflow: hidden; /* Đảm bảo hình ảnh không tràn ra ngoài */
    }

    .page-new88044__feature-icon {
      width: 80px; /* Kích thước hình ảnh bên trong */
      height: 80px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-new88044__feature-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-new88044__feature-description {
      font-size: 1.1em;
      color: #CCCCCC;
    }

    /* Game Providers Section */
    .page-new88044__providers-section {
      padding: 50px 0;
      background-color: #0d0d0d;
    }

    .page-new88044__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Nhỏ hơn để chứa nhiều logo */
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-new88044__provider-logo-wrapper {
        width: 150px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #1a1a1a;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .page-new88044__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-new88044__provider-logo {
      width: 100%; /* Đảm bảo hình ảnh lấp đầy wrapper */
      height: 100%;
      object-fit: contain; /* Giữ tỷ lệ và không cắt */
      max-width: 100%;
      height: auto;
    }
    
    /* FAQ Section */
    .page-new88044__faq-section {
      padding: 50px 0;
      background-color: #000000;
    }

    .page-new88044__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-new88044__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

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

    .page-new88044__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-new88044__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-new88044__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-new88044__faq-item.active .page-new88044__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-new88044__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-new88044__cta-bottom {
      background-color: #0d0d0d;
      padding: 60px 0;
      text-align: center;
    }

    .page-new88044__cta-bottom-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-new88044__cta-bottom-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-new88044__hero-title {
        font-size: 2.5em;
      }
      .page-new88044__hero-subtitle {
        font-size: 1.3em;
      }
      .page-new88044__section-title {
        font-size: 2em;
      }
      .page-new88044__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      .page-new88044__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-new88044__provider-logo-wrapper {
        width: 120px;
        height: 80px;
      }
    }

    @media (max-width: 768px) {
      .page-new88044__hero-title {
        font-size: 2em;
      }
      .page-new88044__hero-subtitle {
        font-size: 1.1em;
      }
      .page-new88044__section-title {
        font-size: 1.8em;
      }
      .page-new88044__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-new88044__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-new88044__game-card-title {
        font-size: 1.2em;
      }
      .page-new88044__features-grid {
        grid-template-columns: 1fr;
      }
      .page-new88044__feature-title {
        font-size: 1.5em;
      }
      .page-new88044__feature-description {
        font-size: 1em;
      }
      .page-new88044__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-new88044__provider-logo-wrapper {
        width: 100px;
        height: 70px;
      }
      .page-new88044__faq-question h3 {
        font-size: 1.1em;
      }
      .page-new88044__faq-answer {
        font-size: 0.95em;
      }
      .page-new88044__cta-bottom-title {
        font-size: 2em;
      }
      .page-new88044__cta-bottom-description {
        font-size: 1em;
      }
      .page-new88044__floating-button-wrapper {
        bottom: 15px;
        right: 15px;
      }
      .page-new88044__floating-button {
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    /* Mobile image responsiveness - MUST use !important */
    @media (max-width: 768px) {
        .page-new88044__hero-image,
        .page-new88044__game-card-image,
        .page-new88044__feature-icon,
        .page-new88044__provider-logo {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-new88044__hero-image-wrapper,
        .page-new88044__game-card-image-wrapper,
        .page-new88044__feature-icon-wrapper,
        .page-new88044__provider-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  