
    /* Reset và các biến cơ bản */
    :root {
      --page-new88bet__primary-color: #e44d26; /* Màu cam đỏ */
      --page-new88bet__secondary-color: #333;
      --page-new88bet__accent-color: #f7931e; /* Màu cam sáng */
      --page-new88bet__text-color: #333;
      --page-new88bet__light-text-color: #f5f5f5;
      --page-new88bet__background-color: #f5f5f5;
      --page-new88bet__dark-background: #1a1a1a;
      --page-new88bet__card-background: #fff;
      --page-new88bet__border-color: #ddd;
      --page-new88bet__shadow: rgba(0, 0, 0, 0.1);
      --page-new88bet__max-width: 1200px;
      --page-new88bet__header-height-desktop: 120px; /* Khoảng cách cho header cố định */
      --page-new88bet__header-height-mobile: 100px;  /* Khoảng cách cho header mobile */
    }

    /* Base styles */
    .page-new88bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-new88bet__text-color);
      background-color: var(--page-new88bet__background-color);
      overflow-x: hidden; /* Ngăn chặn scroll ngang */
    }

    /* Container chung */
    .page-new88bet__container {
      max-width: var(--page-new88bet__max-width);
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-new88bet__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: var(--page-new88bet__header-height-desktop); /* Khoảng cách cho header cố định */
      background-color: var(--page-new88bet__dark-background);
      text-align: center;
      box-sizing: border-box;
    }

    .page-new88bet__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-new88bet__hero-image {
      display: block;
      width: 100%; /* Đảm bảo hình ảnh chiếm toàn bộ chiều rộng của wrapper */
      height: auto;
      object-fit: contain; /* Giữ nguyên tỷ lệ, không làm biến dạng */
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá kích thước thật */
    }

    .page-new88bet__hero-content {
      position: absolute;
      bottom: 0; /* Đặt nội dung ở dưới banner */
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
      color: var(--page-new88bet__light-text-color);
      text-align: center;
    }

    .page-new88bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: var(--page-new88bet__accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-new88bet__hero-description {
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-new88bet__btn-primary {
      display: inline-block;
      background-color: var(--page-new88bet__primary-color);
      color: var(--page-new88bet__light-text-color);
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-new88bet__btn-primary:hover {
      background-color: var(--page-new88bet__accent-color);
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-new88bet__floating-login-button {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      background-color: var(--page-new88bet__primary-color);
      color: var(--page-new88bet__light-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-new88bet__floating-login-button:hover {
      background-color: var(--page-new88bet__accent-color);
      transform: translateY(-50%) scale(1.05);
    }
    
    .page-new88bet__floating-login-button span {
        display: block;
        font-size: 0.9em;
        margin-top: 5px;
        opacity: 0.9;
    }

    /* Section Headings */
    .page-new88bet__section-title {
      font-size: 2.5em;
      color: var(--page-new88bet__secondary-color);
      text-align: center;
      margin: 40px 0 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    /* Game Categories/Products */
    .page-new88bet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .page-new88bet__game-card {
      background-color: var(--page-new88bet__card-background);
      border-radius: 12px;
      box-shadow: 0 6px 20px var(--page-new88bet__shadow);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-new88bet__text-color);
      display: flex;
      flex-direction: column;
    }

    .page-new88bet__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .page-new88bet__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Cố định chiều cao để hình ảnh đồng đều */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #eee;
    }

    .page-new88bet__game-card-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Đảm bảo hình ảnh lấp đầy không gian */
      transition: transform 0.3s ease;
    }

    .page-new88bet__game-card:hover .page-new88bet__game-card-image {
        transform: scale(1.05);
    }

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

    .page-new88bet__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-new88bet__primary-color);
      font-weight: bold;
    }

    .page-new88bet__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Game Providers */
    .page-new88bet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
      padding: 20px;
      background-color: var(--page-new88bet__card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px var(--page-new88bet__shadow);
    }

    .page-new88bet__provider-item {
      text-align: center;
      padding: 10px;
      transition: transform 0.2s ease;
    }

    .page-new88bet__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-new88bet__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 80px; /* Cố định chiều cao cho logo */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-new88bet__provider-logo {
      width: 100%; /* Đảm bảo logo chiếm toàn bộ chiều rộng của wrapper */
      height: 100%;
      object-fit: contain; /* Giữ nguyên tỷ lệ, không làm biến dạng */
      max-width: 120px; /* Giới hạn kích thước logo */
      filter: grayscale(80%); /* Hiệu ứng xám */
      transition: filter 0.3s ease;
    }

    .page-new88bet__provider-item:hover .page-new88bet__provider-logo {
      filter: grayscale(0%); /* Loại bỏ hiệu ứng xám khi hover */
    }

    .page-new88bet__provider-name {
      font-size: 0.9em;
      margin-top: 10px;
      color: #555;
      font-weight: bold;
    }

    /* About Section */
    .page-new88bet__about-section {
      background-color: var(--page-new88bet__primary-color);
      color: var(--page-new88bet__light-text-color);
      padding: 60px 0;
      text-align: center;
      margin-bottom: 50px;
    }

    .page-new88bet__about-title {
      color: var(--page-new88bet__light-text-color);
      margin-bottom: 20px;
    }

    .page-new88bet__about-content {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .page-new88bet__about-content p {
        margin-bottom: 15px;
    }

    /* Promotion Banner */
    .page-new88bet__promotion-banner {
      background-color: var(--page-new88bet__accent-color);
      color: var(--page-new88bet__light-text-color);
      padding: 40px 20px;
      text-align: center;
      margin-bottom: 50px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-new88bet__promotion-banner h3 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-new88bet__light-text-color);
    }

    .page-new88bet__promotion-banner p {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-new88bet__faq-section {
      margin-bottom: 50px;
    }

    .page-new88bet__faq-list {
      background-color: var(--page-new88bet__card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px var(--page-new88bet__shadow);
      padding: 20px;
    }

    .page-new88bet__faq-item {
      border-bottom: 1px solid var(--page-new88bet__border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-new88bet__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-new88bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 0;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-new88bet__secondary-color);
      transition: color 0.3s ease;
    }

    .page-new88bet__faq-question:hover {
      color: var(--page-new88bet__primary-color);
    }

    .page-new88bet__faq-question h3 {
        margin: 0;
        font-size: 1.1em; /* Giữ kích thước phù hợp với dòng */
        pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
        flex-grow: 1;
    }

    .page-new88bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

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

    .page-new88bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 0.95em;
    }

    .page-new88bet__faq-item.active .page-new88bet__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }
    
    .page-new88bet__faq-answer p {
        margin-bottom: 10px;
    }
    .page-new88bet__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Payment Methods */
    .page-new88bet__payment-methods {
      margin-bottom: 50px;
      background-color: var(--page-new88bet__dark-background);
      padding: 40px 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-new88bet__payment-methods .page-new88bet__section-title {
        color: var(--page-new88bet__light-text-color);
    }
    .page-new88bet__payment-methods .page-new88bet__section-title::after {
        background-color: var(--page-new88bet__accent-color);
    }

    .page-new88bet__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-new88bet__payment-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 60px; /* Cố định chiều cao cho logo thanh toán */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
        background-color: var(--page-new88bet__card-background);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-new88bet__payment-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-width: 100px;
    }

    /* Social Media */
    .page-new88bet__social-media {
        text-align: center;
        margin-bottom: 50px;
    }
    .page-new88bet__social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    .page-new88bet__social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: var(--page-new88bet__secondary-color);
        border-radius: 50%;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .page-new88bet__social-link:hover {
        transform: translateY(-5px);
        background-color: var(--page-new88bet__primary-color);
    }
    .page-new88bet__social-icon {
        width: 40px;
        height: 40px;
        object-fit: contain;
        filter: invert(100%) brightness(1.8); /* Làm trắng biểu tượng */
    }
    /* Specific social colors for better branding */
    .page-new88bet__social-link--youtube { background-color: #FF0000; }
    .page-new88bet__social-link--whatsapp { background-color: #25D366; }
    .page-new88bet__social-link--line { background-color: #00C300; }
    .page-new88bet__social-link--tiktok { background-color: #000000; } /* TikTok has a black logo usually */
    .page-new88bet__social-link--telegram { background-color: #0088CC; }
    .page-new88bet__social-link--facebook { background-color: #1877F2; }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-new88bet__hero-section {
        padding-top: var(--page-new88bet__header-height-mobile); /* Điều chỉnh cho mobile */
      }
      .page-new88bet__hero-title {
        font-size: 2em;
      }
      .page-new88bet__hero-description {
        font-size: 1em;
      }
      .page-new88bet__section-title {
        font-size: 2em;
        margin: 30px 0 20px;
      }
      .page-new88bet__game-categories {
        grid-template-columns: 1fr;
      }
      .page-new88bet__game-card-image-wrapper {
        height: 180px;
      }
      .page-new88bet__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-new88bet__floating-login-button {
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-new88bet__floating-login-button span {
          font-size: 0.8em;
      }
      .page-new88bet__about-content {
        font-size: 1em;
      }
      .page-new88bet__promotion-banner h3 {
        font-size: 1.8em;
      }
      .page-new88bet__promotion-banner p {
        font-size: 1em;
      }
      .page-new88bet__faq-question {
        font-size: 1em;
        padding: 10px 0;
      }
      .page-new88bet__faq-question h3 {
          font-size: 1em;
      }
      .page-new88bet__faq-answer {
        padding: 0 10px;
      }
      .page-new88bet__faq-item.active .page-new88bet__faq-answer {
        padding: 15px 10px !important;
      }
      .page-new88bet__social-link {
          width: 50px;
          height: 50px;
      }
      .page-new88bet__social-icon {
          width: 30px;
          height: 30px;
      }
    }

    /* Force responsive image styles for all images in mobile view */
    @media (max-width: 768px) {
      .page-new88bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-new88bet__hero-image-wrapper,
      .page-new88bet__game-card-image-wrapper,
      .page-new88bet__provider-logo-wrapper,
      .page-new88bet__payment-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  