
    /* Reset và các cài đặt cơ bản cho trang daga88 */
    .page-daga88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #FFFFFF; /* Màu chữ trắng */
      background-color: #000000; /* Màu nền đen */
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Ngăn chặn tràn ngang */
    }

    /* Đảm bảo tất cả hình ảnh đều responsive và có kích thước phù hợp */
    .page-daga88 img {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trắng dưới ảnh */
      object-fit: cover; /* Đảm bảo ảnh không bị bóp méo khi có chiều cao cố định */
    }
    
    .page-daga88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section - Phần banner chính */
    .page-daga88__hero-section {
      text-align: center;
      padding-top: 160px; /* Vùng an toàn cho header cố định */
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a; /* Nền hơi xám cho phần hero */
    }
    
    .page-daga88__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px; /* Khoảng cách giữa ảnh và nội dung bên dưới */
    }

    .page-daga88__hero-content {
      padding: 20px 15px 40px;
      position: relative;
      z-index: 1;
    }

    .page-daga88__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-daga88__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-daga88__hero-button {
      display: inline-block;
      background-color: #FFD700; /* Màu vàng */
      color: #000000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-daga88__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Floating Login Button - Nút đăng nhập nổi */
    .page-daga88__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Màu vàng */
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.05em;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Ngăn chặn ngắt dòng */
    }

    .page-daga88__floating-login-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* General Section Styling - Phong cách chung cho các phần */
    .page-daga88__section {
      padding: 60px 0;
      text-align: center;
      border-bottom: 1px solid #333; /* Đường phân cách giữa các phần */
    }

    .page-daga88__section:last-of-type {
      border-bottom: none;
    }

    .page-daga88__section-title {
      font-size: 2.2em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-daga88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700; /* Đường gạch chân màu vàng */
      border-radius: 2px;
    }

    .page-daga88__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #FFFFFF;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game Categories - Danh mục trò chơi */
    .page-daga88__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-daga88__game-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      height: 100%;
      color: #FFFFFF; /* Đảm bảo màu chữ trong thẻ a là trắng */
    }

    .page-daga88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    
    .page-daga88__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Chiều cao cố định cho hình ảnh game */
    }

    .page-daga88__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-daga88__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-daga88__game-card-title {
      font-size: 1.4em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 10px;
      text-decoration: none;
    }

    .page-daga88__game-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
      flex-grow: 1;
    }
    
    /* Promotions Section - Các chương trình khuyến mãi */
    .page-daga88__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-daga88__promotion-card {
        background-color: #1a1a1a;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        text-align: left;
    }

    .page-daga88__promotion-card:hover {
        transform: translateY(-5px);
        background-color: #2a2a2a;
    }

    .page-daga88__promotion-title {
        font-size: 1.5em;
        color: #FFD700; /* Màu vàng */
        margin-bottom: 15px;
    }

    .page-daga88__promotion-description {
        color: #FFFFFF;
        margin-bottom: 20px;
        font-size: 1em;
    }

    .page-daga88__promotion-button {
        display: inline-block;
        background-color: #FFD700;
        color: #000000;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-daga88__promotion-button:hover {
        background-color: #e6c200;
    }

    /* Game Providers Section - Nhà cung cấp game */
    .page-daga88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Điều chỉnh minmax để logo không quá nhỏ */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-daga88__provider-logo-wrapper {
        background-color: #1a1a1a;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px; /* Cố định chiều cao cho khung logo */
        width: 100%;
        max-width: 180px; /* Giới hạn chiều rộng tối đa */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-daga88__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Giới hạn chiều cao của logo bên trong */
      width: auto;
      object-fit: contain;
    }

    /* FAQ Section - Câu hỏi thường gặp */
    .page-daga88__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-daga88__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-daga88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }

    .page-daga88__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-daga88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700; /* Màu vàng */
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-daga88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700; /* Màu vàng */
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-daga88__faq-item.active .page-daga88__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-daga88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #FFFFFF;
      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-daga88__faq-item.active .page-daga88__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-daga88__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-daga88__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Call to Action Section - Kêu gọi hành động */
    .page-daga88__cta-section {
      background-color: #1a1a1a;
      padding: 80px 0;
      margin-top: 60px;
    }

    .page-daga88__cta-title {
      font-size: 2.5em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 20px;
    }

    .page-daga88__cta-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-daga88__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

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


    /* Responsive Design - Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-daga88__hero-section {
        padding-top: 120px; /* Điều chỉnh cho mobile header */
      }
      .page-daga88__hero-title {
        font-size: 2em;
      }
      .page-daga88__hero-description {
        font-size: 1em;
      }
      .page-daga88__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-daga88__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.95em;
      }
      .page-daga88__section {
        padding: 40px 0;
      }
      .page-daga88__section-title {
        font-size: 1.8em;
      }
      .page-daga88__game-categories {
        grid-template-columns: 1fr;
      }
      .page-daga88__promotion-grid {
          grid-template-columns: 1fr;
      }
      .page-daga88__providers-grid {
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-daga88__provider-logo-wrapper {
          height: 80px;
          max-width: 150px;
      }
      .page-daga88__provider-logo {
          max-height: 60px;
      }
      .page-daga88__faq-question {
        padding: 15px 20px;
      }
      .page-daga88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-daga88__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-daga88__faq-item.active .page-daga88__faq-answer {
        padding: 15px 20px !important;
      }
      .page-daga88__cta-section {
        padding: 60px 0;
      }
      .page-daga88__cta-title {
        font-size: 2em;
      }
      .page-daga88__cta-description {
        font-size: 1em;
      }
      .page-daga88__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      /* Cưỡng chế các kiểu responsive cho hình ảnh trên di động */
      .page-daga88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-daga88__hero-image-wrapper,
      .page-daga88__game-card-image-wrapper,
      .page-daga88__provider-logo-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
    @media (max-width: 480px) {
        .page-daga88__floating-login-button {
            left: 50%;
            transform: translateX(-50%);
            right: auto;
            width: calc(100% - 40px);
            max-width: 300px;
        }
    }
  