
    /* Tổng quan */
    .page-daga68 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-daga68__hero-section {
      padding-top: 120px; /* Khoảng cách cho header cố định */
      background-color: #fff;
      text-align: center;
      padding-bottom: 40px;
    }

    @media (max-width: 768px) {
      .page-daga68__hero-section {
        padding-top: 100px; /* Khoảng cách cho header cố định trên di động */
      }
    }

    .page-daga68__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-daga68__section:nth-child(even) {
      background-color: #f0f0f0;
    }

    .page-daga68__heading {
      color: #0056b3;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-daga68__subheading {
      color: #0056b3;
      margin-bottom: 15px;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-daga68__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Hero Section */
    .page-daga68__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-daga68__hero-title {
      font-size: 3em;
      color: #d9534f;
      margin-bottom: 10px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .page-daga68__hero-description {
      font-size: 1.3em;
      color: #666;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Nút Đăng nhập/Đăng ký nổi */
    .page-daga68__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #d9534f;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    .page-daga68__floating-button-icon {
      width: 24px;
      height: 24px;
      vertical-align: middle;
      filter: brightness(0) invert(1); /* Chỉ dùng để đổi màu icon thành trắng */
    }

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

    .page-daga68__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

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

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

    .page-daga68__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    @media (max-width: 768px) {
      .page-daga68__game-image,
      .page-daga68__game-image-wrapper {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
      }
    }

    .page-daga68__game-title {
      font-size: 1.4em;
      color: #0056b3;
      margin: 20px 15px 10px 15px;
      font-weight: bold;
      text-decoration: none;
      display: block;
    }

    .page-daga68__game-description {
      font-size: 0.95em;
      color: #777;
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-daga68__game-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }

    .page-daga68__game-link:hover {
      background-color: #0056b3;
    }

    /* Providers Section */
    .page-daga68__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-daga68__provider-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
      min-height: 100px; /* Đảm bảo kích thước tối thiểu cho item */
    }

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

    .page-daga68__provider-logo {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .page-daga68__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
      }
    }

    /* FAQ Section */
    .page-daga68__faq-list {
      margin-top: 30px;
      text-align: left;
    }

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

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

    .page-daga68__faq-question:hover {
      background-color: #e0e0e0;
    }

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

    .page-daga68__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 */
      color: #d9534f;
    }

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

    .page-daga68__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    @media (max-width: 768px) {
      .page-daga68__hero-title {
        font-size: 2.2em;
      }
      .page-daga68__hero-description {
        font-size: 1em;
      }
      .page-daga68__heading {
        font-size: 2em;
      }
      .page-daga68__subheading {
        font-size: 1.5em;
      }
      .page-daga68__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-daga68__faq-question, .page-daga68__faq-question h3 {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-daga68__faq-answer {
        padding: 0 20px;
      }
      .page-daga68__faq-item.active .page-daga68__faq-answer {
        padding: 15px 20px !important;
      }
    }
  