
    /* Reset và cơ bản */
    .page-188v {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-188v__section {
      padding: 40px 0;
      text-align: center;
    }

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

    .page-188v__sub-heading {
      color: #FFFFFF;
      font-size: 1.8em;
      margin-bottom: 20px;
    }

    .page-188v__text {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    .page-188v__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-188v__button:hover {
      background-color: #FFA500;
      color: #333333;
    }

    /* Hero Section */
    .page-188v__hero-section {
      background-color: #000000;
      padding-top: 150px; /* Cho khoảng trống an toàn cho header cố định */
      position: relative;
      overflow: hidden;
    }

    .page-188v__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và nội dung bên dưới */
    }

    .page-188v__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

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

    .page-188v__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-188v__hero-description {
      font-size: 1.2em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-188v__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-188v__pulse 1.5s infinite;
    }

    @keyframes page-188v__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

    /* Game Categories */
    .page-188v__game-categories {
      background-color: #1a1a1a;
    }

    .page-188v__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-188v__category-item {
      background-color: #222222;
      padding: 20px 10px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333333;
    }

    .page-188v__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
    }

    .page-188v__category-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        min-height: 120px; /* Đảm bảo chiều cao tối thiểu cho hình ảnh */
    }

    .page-188v__category-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      display: block;
      object-fit: contain; /* Đảm bảo hình ảnh không bị biến dạng */
      min-width: 200px; /* Đảm bảo kích thước tối thiểu */
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-188v__category-title {
      font-size: 1.1em;
      color: #FFD700;
      margin-top: 10px;
      font-weight: bold;
    }

    /* Why Choose Us Section */
    .page-188v__why-choose-us {
      background-color: #000000;
    }

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

    .page-188v__feature-item {
      background-color: #222222;
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      border-left: 4px solid #FFD700;
      transition: background-color 0.3s ease;
    }

    .page-188v__feature-item:hover {
      background-color: #333333;
    }

    .page-188v__feature-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-188v__feature-description {
      color: #E0E0E0;
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-188v__providers-section {
      background-color: #1a1a1a;
      padding-bottom: 60px;
    }

    .page-188v__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-188v__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: #222222;
        border-radius: 8px;
        min-height: 100px; /* Đảm bảo chiều cao tối thiểu cho logo */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-188v__provider-logo-wrapper:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }

    .page-188v__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      min-width: 200px; /* Đảm bảo kích thước tối thiểu */
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    /* FAQ Section */
    .page-188v__faq-section {
      background-color: #000000;
      padding-top: 60px;
    }

    .page-188v__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-188v__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid #333333;
    }

    .page-188v__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-188v__faq-question:hover {
      background-color: #333333;
    }

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

    .page-188v__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle icon */
    }

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

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

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

    /* Call to Action Section */
    .page-188v__cta-section {
      background-color: #1a1a1a;
      padding: 60px 0;
    }

    .page-188v__cta-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-188v__cta-description {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-188v__hero-section {
        padding-top: 120px; /* Điều chỉnh khoảng trống an toàn cho mobile */
      }

      .page-188v__hero-title {
        font-size: 2.2em;
      }

      .page-188v__hero-description {
        font-size: 1em;
      }

      .page-188v__heading {
        font-size: 2em;
      }

      .page-188v__sub-heading {
        font-size: 1.5em;
      }

      .page-188v__categories-grid,
      .page-188v__features-grid,
      .page-188v__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-188v__category-item,
      .page-188v__feature-item {
        padding: 15px;
      }

      .page-188v__category-title {
        font-size: 1em;
      }

      .page-188v__feature-title {
        font-size: 1.2em;
      }

      .page-188v__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-188v__faq-question h3 {
          font-size: 1.1em;
      }

      .page-188v__faq-answer {
        padding: 0 20px;
      }

      .page-188v__faq-item.active .page-188v__faq-answer {
        padding: 15px 20px !important;
      }

      .page-188v__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-188v__section {
        padding: 30px 0;
      }

      .page-188v__cta-title {
        font-size: 1.8em;
      }

      .page-188v__cta-description {
        font-size: 1em;
      }
    }

    /* Ensure all images are responsive */
    .page-188v img {
      max-width: 100% !important;
      height: auto !important;
      display: block; /* Loại bỏ khoảng trắng dưới ảnh */
    }

    .page-188v__hero-image-wrapper,
    .page-188v__category-image-wrapper,
    .page-188v__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
  