
    :root {
      --page-5vin-primary-color: #e44d26; /* Một màu cam/đỏ rực rỡ */
      --page-5vin-secondary-color: #f7b731; /* Màu vàng kim */
      --page-5vin-dark-bg: #1a1a1a; /* Nền tối */
      --page-5vin-light-text: #ffffff; /* Chữ trắng */
      --page-5vin-gray-text: #cccccc; /* Chữ xám nhạt */
      --page-5vin-border-color: #333333; /* Viền tối hơn */
      --page-5vin-accent-color: #2196f3; /* Màu xanh cho các điểm nhấn/liên kết */
      --page-5vin-hover-color: #ff6f00; /* Màu cam khi di chuột qua */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-5vin-light-text);
      background-color: var(--page-5vin-dark-bg);
      margin: 0;
      padding-top: var(--header-offset, 0); /* Đảm bảo không gian cho header cố định */
      overflow-x: hidden;
    }

    .page-5vin {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 80px; /* Điều chỉnh padding-top cho phần hero, 80px cho không gian footer */
    }

    .page-5vin__section {
      padding: 40px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-5vin-border-color);
    }
    .page-5vin__section:last-of-type {
      border-bottom: none;
    }

    .page-5vin__section-title {
      text-align: center;
      color: var(--page-5vin-primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }
    .page-5vin__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-5vin-secondary-color);
      border-radius: 2px;
    }

    /* Hero Section */
    .page-5vin__hero-section {
      text-align: center;
      padding: 60px 0 20px;
      background: linear-gradient(135deg, var(--page-5vin-dark-bg), #2c2c2c);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-5vin__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: -1;
      max-width: 100%; /* Đảm bảo hình ảnh phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
      box-sizing: border-box;
    }

    .page-5vin__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-5vin__hero-title {
      font-size: 3.5em;
      color: var(--page-5vin-light-text);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-5vin__hero-description {
      font-size: 1.2em;
      color: var(--page-5vin-gray-text);
      margin-bottom: 30px;
    }

    /* Floating Buttons */
    .page-5vin__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-5vin__floating-button {
      background-color: var(--page-5vin-primary-color);
      color: var(--page-5vin-light-text);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Đảm bảo không có gạch chân cho các thẻ a giống nút */
      display: inline-block; /* Để padding và căn chỉnh phù hợp */
      text-align: center;
    }

    .page-5vin__floating-button:hover {
      background-color: var(--page-5vin-hover-color);
      transform: translateY(-2px);
    }

    .page-5vin__floating-button--login {
      background-color: var(--page-5vin-secondary-color);
    }
    .page-5vin__floating-button--login:hover {
      background-color: #e0a32e;
    }

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

    .page-5vin__game-category-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px 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-5vin__game-category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-5vin__game-category-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      max-width: 100%; /* Đảm bảo phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
      box-sizing: border-box;
      border-bottom: 3px solid var(--page-5vin-primary-color);
    }

    .page-5vin__game-category-title {
      font-size: 1.5em;
      color: var(--page-5vin-secondary-color);
      margin: 20px 15px 10px;
    }

    .page-5vin__game-category-description {
      color: var(--page-5vin-gray-text);
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Generic Content */
    .page-5vin__content-text {
      font-size: 1.1em;
      color: var(--page-5vin-gray-text);
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-5vin__content-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
    }

    .page-5vin__content-list-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box; /* Quan trọng cho danh sách phản hồi */
      width: 100%; /* Mặc định cho máy tính để bàn, được điều chỉnh bởi lưới */
    }

    .page-5vin__content-list-item-icon {
      flex-shrink: 0;
      width: 60px; /* Kích thước ví dụ */
      height: 60px;
      object-fit: contain;
      max-width: 100%; /* Đảm bảo phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
      box-sizing: border-box;
    }

    .page-5vin__content-list-item-text {
      color: var(--page-5vin-light-text);
      font-weight: bold;
      font-size: 1.1em;
    }

    /* Payment and Provider Logos */
    .page-5vin__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-5vin__logo-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Chiều cao đồng nhất cho logo */
      box-sizing: border-box;
      width: 100%; /* Chiếm toàn bộ chiều rộng của ô lưới */
    }

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

    .page-5vin__logo-image {
      max-width: 100px;
      max-height: 50px;
      object-fit: contain;
      max-width: 100%; /* Đảm bảo phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
      box-sizing: border-box;
    }

    /* Promotion Banner */
    .page-5vin__promotion-banner {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      margin-top: 40px;
      text-align: center;
      padding: 30px;
    }

    .page-5vin__promotion-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      max-width: 100%; /* Đảm bảo phản hồi */
      height: auto; /* Duy trì tỷ lệ khung hình */
      box-sizing: border-box;
    }

    .page-5vin__promotion-title {
      font-size: 2em;
      color: var(--page-5vin-primary-color);
      margin-bottom: 15px;
    }

    .page-5vin__promotion-description {
      color: var(--page-5vin-gray-text);
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-5vin__promotion-link {
      background-color: var(--page-5vin-accent-color);
      color: var(--page-5vin-light-text);
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-5vin__promotion-link:hover {
      background-color: #1976d2;
    }

    /* FAQ Section */
    .page-5vin__faq-container {
      margin-top: 40px;
    }

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

    .page-5vin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #333333;
      color: var(--page-5vin-light-text);
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 10px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-5vin__faq-question:hover {
      background-color: #444444;
    }

    .page-5vin__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-5vin__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-5vin-secondary-color);
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-5vin__faq-item.active .page-5vin__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng thành dấu X (hiển thị dấu trừ) */
    }

    .page-5vin__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Padding ban đầu */
      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(--page-5vin-gray-text);
      font-size: 1em;
      line-height: 1.8;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-5vin {
        padding: 10px 10px 70px; /* Padding nhỏ hơn cho thiết bị di động */
      }

      .page-5vin__hero-title {
        font-size: 2.5em;
      }

      .page-5vin__hero-description {
        font-size: 1em;
      }

      .page-5vin__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-5vin__game-categories-grid {
        grid-template-columns: 1fr; /* Một cột cho thiết bị di động */
      }

      .page-5vin__game-category-image {
        height: 180px;
      }

      .page-5vin__content-list {
        grid-template-columns: 1fr; /* Một cột cho thiết bị di động */
        padding: 0 !important; /* Xóa padding mặc định của ul */
      }

      .page-5vin__content-list-item {
        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 cho màn hình nhỏ hơn */
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-5vin__content-list-item-icon {
        width: 50px;
        height: 50px;
      }
      .page-5vin__content-list-item-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        font-size: 1em;
      }

      .page-5vin__logo-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cột cho logo trên màn hình nhỏ hơn */
        gap: 15px;
      }

      .page-5vin__logo-item {
        height: 70px;
      }

      .page-5vin__logo-image {
        max-width: 80px;
        max-height: 40px;
      }

      .page-5vin__promotion-title {
        font-size: 1.5em;
      }

      .page-5vin__promotion-description {
        font-size: 0.9em;
      }

      .page-5vin__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-5vin__faq-answer {
        padding: 15px 20px !important; /* Điều chỉnh padding cho thiết bị di động */
        font-size: 0.95em;
      }

      .page-5vin__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Nằm ngang trên màn hình nhỏ */
        width: calc(100% - 30px); /* Điều chỉnh chiều rộng */
        justify-content: center;
      }

      .page-5vin__floating-button {
        flex: 1; /* Phân bổ không gian đều */
        padding: 10px 15px;
        font-size: 1em;
      }

      /* Quy tắc phản hồi hình ảnh */
      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-5vin__game-category-image,
      .page-5vin__content-list-item-icon,
      .page-5vin__logo-image,
      .page-5vin__promotion-image,
      .page-5vin__hero-background-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-5vin__hero-title {
        font-size: 2em;
      }
      .page-5vin__section-title {
        font-size: 1.8em;
      }
      .page-5vin__logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột cho logo trên màn hình rất nhỏ */
      }
    }
  