
    /* Reset và các cài đặt chung cho trang */
    .page-f16878login {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ tổng thể sáng để đảm bảo độ tương phản */
      background-color: #1a1a2e; /* Nền tối đậm */
      line-height: 1.6;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    /* Hero Section - Banner chính */
    .page-f16878login__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Chiều cao tương đối cho banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ffffff;
      padding-top: 10px; /* Khoảng cách cần thiết để tránh bị thanh điều hướng cố định che khuất */
      box-sizing: border-box;
      background: linear-gradient(135deg, #2c003e 0%, #0a011a 100%); /* Gradient nền mặc định nếu ảnh không tải */
    }

    .page-f16878login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Giảm độ mờ để nội dung chữ dễ đọc hơn */
      z-index: 0;
      max-width: 100%; /* Đảm bảo ảnh responsive */
      height: auto;
    }

    .page-f16878login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 90%;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Nền cho nội dung để tăng độ tương phản với ảnh */
      border-radius: 10px;
    }

    .page-f16878login__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffd700; /* Màu vàng nổi bật */
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
    }

    .page-f16878login__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    /* Floating Login Button - Nút đăng nhập nổi */
    .page-f16878login__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Màu cam đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .page-f16878login__floating-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    /* Các phần nội dung chung */
    .page-f16878login__section {
      padding: 40px 20px;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-f16878login__section--dark {
      background-color: #0d0d1e;
    }

    .page-f16878login__section-title {
      font-size: 2em;
      margin-bottom: 30px;
      color: #ffd700;
      text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }

    .page-f16878login__section-description {
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #cccccc;
      font-size: 1.1em;
    }

    /* Game Categories - Danh mục trò chơi */
    .page-f16878login__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-f16878login__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-f16878login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-f16878login__game-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh để đảm bảo hình ảnh có kích thước đủ lớn */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-f16878login__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%; /* Đảm bảo hình ảnh responsive */
      height: auto;
    }

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

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

    .page-f16878login__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #ffd700;
    }

    .page-f16878login__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-f16878login__game-button {
      background-color: #ff4500;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease;
      border: none;
      outline: none;
      cursor: pointer;
    }

    .page-f16878login__game-button:hover {
      background-color: #e63900;
    }

    /* Benefits Section - Lợi ích */
    .page-f16878login__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-f16878login__benefit-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }
    
    .page-f16878login__benefit-icon-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    .page-f16878login__benefit-icon-img {
        width: 250px; /* Kích thước tối thiểu 200px */
        height: 250px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-f16878login__benefit-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-f16878login__benefit-text {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* Call to Action - Kêu gọi hành động */
    .page-f16878login__cta-section {
      background: linear-gradient(90deg, #ff4500 0%, #ff8c00 100%);
      padding: 60px 20px;
      color: #ffffff;
      text-align: center;
    }

    .page-f16878login__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
    }

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

    .page-f16878login__cta-button {
      background-color: #1a1a2e;
      color: #ffd700;
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      outline: none;
      cursor: pointer;
    }

    .page-f16878login__cta-button:hover {
      background-color: #0d0d1e;
      color: #ffffff;
    }

    /* FAQ Section - Câu hỏi thường gặp */
    .page-f16878login__faq-section {
      padding: 40px 20px;
      background-color: #1a1a2e;
      text-align: center;
    }

    .page-f16878login__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

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

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

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

    .page-f16878login__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-f16878login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút toggle chặn sự kiện click */
    }

    .page-f16878login__faq-item.active .page-f16878login__faq-toggle {
      transform: rotate(45deg); /* Biến dấu cộng thành dấu trừ */
    }

    .page-f16878login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Padding ban đầu */
      color: #cccccc;
      background-color: #2a2a4a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-f16878login__faq-item.active .page-f16878login__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important; /* Padding cuối cùng khi mở */
      opacity: 1;
    }

    /* Responsive Design - Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-f16878login__hero-section {
        height: 50vh;
        padding-top: 10px; /* Đảm bảo khoảng cách cho header cố định trên di động */
      }

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

      .page-f16878login__hero-subtitle {
        font-size: 1em;
      }

      .page-f16878login__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

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

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

      .page-f16878login__game-categories {
        grid-template-columns: 1fr; /* Một cột trên di động */
      }

      .page-f16878login__game-image-wrapper {
        height: 180px;
      }

      .page-f16878login__game-image,
      .page-f16878login__benefit-icon-img {
        max-width: 100% !important; /* Đảm bảo hình ảnh không tràn ra ngoài trên di động */
        height: auto !important;
      }

      .page-f16878login__cta-title {
        font-size: 2em;
      }

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

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

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

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