
    /* Tổng quan */
    :root {
      --primary-color: #e44d26; /* Cam */
      --secondary-color: #333; /* Xám đậm */
      --accent-color: #f7b731; /* Vàng */
      --background-dark: #1a1a1a; /* Nền tối */
      --background-light: #2c2c2c; /* Nền sáng hơn */
      --text-light: #f0f0f0; /* Chữ sáng */
      --text-dark: #333; /* Chữ tối */
      --border-color: #444; /* Viền */
      --button-bg: var(--primary-color);
      --button-text: var(--text-light);
      --hover-color: #ff6f40;
    }

    .page-3389 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Đảm bảo không có scroll ngang */
      padding-top: 10px; /* Nhỏ hơn để body padding-top xử lý chính */
    }

    /* Các phần chung */
    .page-3389__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-3389__section--dark {
      background-color: var(--background-dark);
    }

    .page-3389__section--light {
      background-color: var(--background-light);
    }

    .page-3389__heading {
      color: var(--accent-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      line-height: 1.3;
    }

    .page-3389__subheading {
      color: var(--text-light);
      font-size: 1.5em;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .page-3389__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .page-3389__button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-3389__button:hover {
      background-color: var(--hover-color);
    }

    /* Hero Section */
    .page-3389__hero-section {
      background-color: var(--background-dark);
      padding: 60px 15px 40px; /* Điều chỉnh padding top để tránh double header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-3389__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-3389__hero-subtitle {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-3389__hero-image-container {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3389__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    /* Nút nổi Đăng Ký/Đăng Nhập */
    .page-3389__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-3389__floating-button {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 100px;
    }

    .page-3389__floating-button:hover {
      background-color: var(--hover-color);
      transform: translateY(-2px);
    }

    /* Phần giới thiệu trò chơi */
    .page-3389__game-showcase {
      background-color: var(--background-light);
      padding: 60px 15px;
    }

    .page-3389__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3389__game-card {
      background-color: var(--background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-3389__game-card:hover {
      transform: translateY(-5px);
    }

    .page-3389__game-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-3389__game-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 200px; /* Đảm bảo ảnh không quá nhỏ */
      min-width: 200px; /* Đảm bảo ảnh không quá nhỏ */
    }

    .page-3389__game-content {
      padding: 20px;
      text-align: left;
    }

    .page-3389__game-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      pointer-events: none; /* Ngăn chặn sự kiện click trên tiêu đề */
    }

    .page-3389__game-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

    /* Phần Khuyến mãi */
    .page-3389__promotions-section {
      background-color: var(--background-dark);
    }

    .page-3389__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3389__promo-item {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Đảm bảo item chiếm toàn bộ chiều rộng có sẵn */
    }

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

    .page-3389__promo-title {
      color: var(--accent-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-3389__promo-description {
      color: var(--text-light);
      font-size: 1em;
      margin-bottom: 15px;
    }

    /* Phần nhà cung cấp & thanh toán */
    .page-3389__partners-section {
      background-color: var(--background-light);
    }

    .page-3389__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3389__partner-logo-wrapper {
      width: 100%;
      max-width: 180px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #3a3a3a;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-3389__partner-logo {
      max-width: 100%;
      max-height: 80%;
      height: auto;
      object-fit: contain;
      min-width: 200px; /* Đảm bảo ảnh không quá nhỏ */
      min-height: 200px; /* Đảm bảo ảnh không quá nhỏ */
    }

    /* FAQ Section */
    .page-3389__faq-section {
      background-color: var(--background-dark);
    }

    .page-3389__faq-list {
      margin-top: 40px;
      text-align: left;
      padding: 0;
      list-style: none;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-3389__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      width: 100%;
    }

    .page-3389__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-3389__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-3389__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--accent-color);
      pointer-events: none; /* Ngăn chặn sự kiện click trên tiêu đề */
    }

    .page-3389__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên biểu tượng */
    }

    .page-3389__faq-item.active .page-3389__faq-toggle {
      transform: rotate(45deg); /* Biến đổi '+' thành 'x' hoặc '-' */
    }

    .page-3389__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-light);
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-3389__cta-section {
      background-color: var(--primary-color);
      padding: 50px 15px;
    }

    .page-3389__cta-title {
      color: var(--text-light);
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-3389__cta-text {
      color: var(--text-light);
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-3389__hero-title {
        font-size: 2.5em;
      }

      .page-3389__hero-subtitle {
        font-size: 1.4em;
      }

      .page-3389__heading {
        font-size: 2em;
      }

      .page-3389__subheading {
        font-size: 1.2em;
      }

      .page-3389__section {
        padding: 30px 15px;
      }

      .page-3389__game-grid,
      .page-3389__promo-list,
      .page-3389__partners-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-3389__game-card,
      .page-3389__promo-item,
      .page-3389__faq-item,
      .page-3389__partner-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Điều chỉnh padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-3389__game-image-wrapper {
          height: 180px; /* Điều chỉnh chiều cao hình ảnh trên di động */
      }
      .page-3389__game-image {
          min-height: 180px;
      }
      .page-3389__partner-logo-wrapper {
          height: 80px;
      }
      .page-3389__partner-logo {
          min-width: 150px;
          min-height: 150px;
      }


      .page-3389__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row; /* Nút nổi nằm ngang trên di động */
        width: calc(100% - 20px);
        justify-content: space-around;
      }

      .page-3389__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-3389__faq-question {
        padding: 15px 20px;
      }

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

      .page-3389__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-3389__hero-title {
        font-size: 2em;
      }
      .page-3389__hero-subtitle {
        font-size: 1.2em;
      }
      .page-3389__heading {
        font-size: 1.8em;
      }
      .page-3389__subheading {
        font-size: 1em;
      }
      .page-3389__floating-buttons {
          flex-direction: row;
          justify-content: space-between;
      }
      .page-3389__floating-button {
          width: 48%;
      }
    }
  