
    /* Reset & Base Styles */
    .page-179vip-com {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Màu chữ sáng cho nền tối */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    /* Fixed Navigation Bar Spacing */
    /* Giả định body đã có padding-top từ shared.css */
    .page-179vip-com__hero-section {
      padding-top: 10px; /* Khoảng đệm trang trí nhỏ */
    }

    /* General Section Styling */
    .page-179vip-com__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #222;
      border-radius: 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-179vip-com__section--alt {
      background-color: #1a1a1a;
    }

    .page-179vip-com__section-title {
      color: #f0c040; /* Màu vàng kim làm điểm nhấn */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-179vip-com__section-subtitle {
      color: #e0e0e0;
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-179vip-com__hero-section {
      text-align: center;
      padding: 60px 15px;
      background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-179vip-com__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-179vip-com__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    /* Floating Buttons */
    .page-179vip-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 15px;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-179vip-com__floating-button {
      background-color: #f0c040;
      color: #1a1a1a;
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      flex-grow: 1;
      margin: 0 5px;
      box-sizing: border-box;
    }

    .page-179vip-com__floating-button:hover {
      background-color: #e0b030;
      transform: translateY(-2px);
    }

    .page-179vip-com__floating-button--secondary {
      background-color: #444;
      color: #f0c040;
      border: 1px solid #f0c040;
    }

    .page-179vip-com__floating-button--secondary:hover {
      background-color: #555;
    }

    /* Game Categories */
    .page-179vip-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-179vip-com__game-card {
      background-color: #333;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-179vip-com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

    .page-179vip-com__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-bottom: 2px solid #f0c040;
    }

    .page-179vip-com__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .page-179vip-com__game-card:hover .page-179vip-com__game-card-image {
      transform: scale(1.05);
    }

    .page-179vip-com__game-card-title {
      font-size: 1.5em;
      color: #f0c040;
      margin: 20px 10px 10px 10px;
      flex-grow: 1;
    }

    .page-179vip-com__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px 15px 15px;
    }

    .page-179vip-com__game-card-button {
      display: inline-block;
      background-color: #f0c040;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 15px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-179vip-com__game-card-button:hover {
      background-color: #e0b030;
    }

    /* Promotions Section */
    .page-179vip-com__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-179vip-com__promotion-item {
      background-color: #3a3a3a;
      border-left: 5px solid #f0c040;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Cho phản hồi trên di động */
    }

    .page-179vip-com__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-179vip-com__promotion-title {
      color: #f0c040;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-179vip-com__promotion-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Why Choose Us Section */
    .page-179vip-com__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-179vip-com__feature-item {
      background-color: #333;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Cho phản hồi trên di động */
    }

    .page-179vip-com__feature-item:hover {
      background-color: #444;
    }

    .page-179vip-com__feature-icon {
      margin-bottom: 20px;
      display: inline-block;
      width: 250px; /* Đảm bảo kích thước tối thiểu 200x200px */
      height: 250px;
      object-fit: contain;
    }

    .page-179vip-com__feature-title {
      color: #f0c040;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-179vip-com__feature-description {
      color: #ccc;
      font-size: 0.9em;
    }

    /* Testimonials/Trust Section */
    .page-179vip-com__testimonial-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 20px;
      padding-bottom: 15px;
      margin-bottom: 20px;
    }

    .page-179vip-com__testimonial-card {
      flex: 0 0 90%; /* Trên di động, hiển thị gần như toàn bộ thẻ */
      scroll-snap-align: start;
      background-color: #3a3a3a;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      min-width: 280px; /* Đảm bảo chiều rộng tối thiểu */
      box-sizing: border-box;
    }

    .page-179vip-com__testimonial-quote {
      font-style: italic;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    .page-179vip-com__testimonial-author {
      font-weight: bold;
      color: #f0c040;
    }

    /* FAQ Section */
    .page-179vip-com__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-179vip-com__faq-item {
      background-color: #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-179vip-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #444;
      color: #f0c040;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-179vip-com__faq-question:hover {
      background-color: #555;
    }

    .page-179vip-com__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn việc chọn văn bản làm gián đoạn sự kiện click */
      flex-grow: 1;
    }

    .page-179vip-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn icon làm gián đoạn sự kiện click */
    }

    .page-179vip-com__faq-item.active .page-179vip-com__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    .page-179vip-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Khoảng đệm ban đầu */
      color: #ccc;
      background-color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action */
    .page-179vip-com__cta-section {
      text-align: center;
      padding: 50px 15px;
      background-color: #f0c040;
      color: #1a1a1a;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-179vip-com__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-179vip-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-179vip-com__cta-button {
      background-color: #1a1a1a;
      color: #f0c040;
      border: 2px solid #1a1a1a;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-179vip-com__cta-button:hover {
      background-color: #333;
      color: #f0c040;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-179vip-com__section {
        padding: 30px 10px;
        margin-bottom: 15px;
      }

      .page-179vip-com__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-179vip-com__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-179vip-com__hero-section {
        padding: 40px 10px;
      }

      .page-179vip-com__hero-title {
        font-size: 2.2em;
      }

      .page-179vip-com__hero-description {
        font-size: 1em;
      }

      .page-179vip-com__floating-buttons {
        padding: 8px 10px;
      }

      .page-179vip-com__floating-button {
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-179vip-com__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-179vip-com__promotion-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-179vip-com__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Điều chỉnh padding cho màn hình nhỏ hơn */
        word-wrap: break-word !important; /* Đảm bảo ngắt từ */
        overflow-wrap: break-word !important;
      }

      .page-179vip-com__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-179vip-com__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px; /* Điều chỉnh padding cho màn hình nhỏ hơn */
        word-wrap: break-word !important; /* Đảm bảo ngắt từ */
        overflow-wrap: break-word !important;
      }

      .page-179vip-com__testimonial-carousel {
        padding-left: 10px;
        padding-right: 10px;
        gap: 15px;
      }

      .page-179vip-com__testimonial-card {
        flex: 0 0 95%; /* Điều chỉnh để hiển thị thêm một chút thẻ tiếp theo */
      }

      .page-179vip-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-179vip-com__faq-answer {
        padding: 15px 15px !important; /* Điều chỉnh padding cho di động */
      }

      .page-179vip-com__cta-title {
        font-size: 2em;
      }

      .page-179vip-com__cta-description {
        font-size: 1em;
      }

      .page-179vip-com__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Image responsiveness for all images */
      .page-179vip-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-179vip-com__game-card-image-wrapper,
      .page-179vip-com__feature-icon-wrapper { /* Đảm bảo wrapper cũng phản hồi */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    /* Đảm bảo độ tương phản tốt cho tất cả các phần tử văn bản */
    .page-179vip-com h1, .page-179vip-com h2, .page-179vip-com h3, .page-179vip-com h4, .page-179vip-com h5, .page-179vip-com h6 {
        color: #f0c040; /* Màu vàng kim làm điểm nhấn */
    }
    .page-179vip-com p, .page-179vip-com li, .page-179vip-com span {
        color: #e0e0e0; /* Chữ sáng */
    }
    .page-179vip-com__cta-section h2, .page-179vip-com__cta-section p {
        color: #1a1a1a; /* Chữ tối trên nền sáng */
    }
    .page-179vip-com__floating-button {
        color: #1a1a1a; /* Chữ tối trên nút vàng kim */
    }
    .page-179vip-com__floating-button--secondary {
        color: #f0c040; /* Chữ vàng kim trên nút tối */
    }
    .page-179vip-com__game-card-button {
        color: #1a1a1a; /* Chữ tối trên nút vàng kim */
    }
  