
    /* Tổng thể */
    .page-daga {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

    .page-daga__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-daga__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-daga__heading {
      color: #c0392b; /* Màu đỏ đậm */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-daga__sub-heading {
      color: #2c3e50; /* Màu xanh đậm */
      margin-top: 30px;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: bold;
    }

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

    .page-daga__link {
      color: #e74c3c; /* Màu đỏ tươi */
      text-decoration: none;
      font-weight: bold;
    }

    .page-daga__link:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .page-daga__hero-section {
      position: relative;
      background-color: #e74c3c; /* Nền đỏ cho hero */
      color: #ffffff;
      padding: 80px 20px 40px; /* Thêm padding-top để tránh header */
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
    }

    .page-daga__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-daga__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      display: block; /* Đảm bảo hình ảnh không bị dãn */
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    .page-daga__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
    }

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

    /* Floating Login Button */
    .page-daga__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #27ae60; /* Màu xanh lá cây */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

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

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

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

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

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

    .page-daga__game-card-image {
      width: 100%; /* Đảm bảo ảnh lấp đầy chiều rộng */
      height: 100%; /* Đảm bảo ảnh lấp đầy chiều cao của container */
      object-fit: cover; /* Cắt ảnh để vừa với container mà không bị méo */
      display: block;
    }

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

    .page-daga__game-card-title {
      font-size: 1.4em;
      color: #c0392b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-daga__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-daga__game-card-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Ngăn nút bị xuống dòng */
    }

    .page-daga__game-card-button:hover {
      background-color: #c0392b;
    }

    /* Game Providers */
    .page-daga__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 20px;
      text-align: center;
    }

    .page-daga__provider-item {
      padding: 10px;
      background-color: #fcfcfc;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px; /* Đảm bảo chiều cao tối thiểu cho logo */
    }

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

    .page-daga__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 80px; /* Cố định chiều cao cho logo */
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .page-daga__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; /* Đảm bảo logo không bị cắt hoặc méo */
      display: block;
    }

    .page-daga__provider-name {
      font-size: 0.9em;
      color: #444;
      font-weight: bold;
    }

    /* Promotions */
    .page-daga__promo-card {
      background-color: #fff3e0; /* Màu nền nhẹ cho khuyến mãi */
      border: 1px solid #ffcc80;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-daga__promo-title {
      font-size: 1.6em;
      color: #e67e22; /* Màu cam */
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-daga__promo-button {
      display: inline-block;
      background-color: #e67e22;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-daga__promo-button:hover {
      background-color: #d35400;
    }

    /* FAQ Section */
    .page-daga__faq-section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-daga__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .page-daga__faq-item:last-child {
      border-bottom: none;
    }

    .page-daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
    }

    .page-daga__faq-question:hover {
      background-color: #f9f9f9;
      border-radius: 5px;
    }

    .page-daga__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      font-weight: bold;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-daga__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
    }

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

    .page-daga__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #666;
      font-size: 1em;
      line-height: 1.8;
      background-color: #fefefe;
      border-radius: 0 0 8px 8px;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-daga__hero-section {
        padding: 60px 15px 30px; /* Điều chỉnh padding-top cho di động */
      }

      .page-daga__hero-title {
        font-size: 2.2em;
      }

      .page-daga__hero-description {
        font-size: 1.1em;
      }

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

      .page-daga__game-grid {
        grid-template-columns: 1fr;
      }

      .page-daga__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-daga__section {
        padding: 20px;
      }

      .page-daga__heading {
        font-size: 2em;
      }

      .page-daga__sub-heading {
        font-size: 1.5em;
      }

      .page-daga__text {
        font-size: 1em;
      }

      .page-daga__game-card-title {
        font-size: 1.2em;
      }

      .page-daga__game-card-description {
        font-size: 0.9em;
      }

      .page-daga__faq-question h3 {
        font-size: 1.1em;
      }

      .page-daga__faq-toggle {
        font-size: 1.5em;
      }

      /* Responsive image optimization for all images */
      .page-daga img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-daga__hero-image-container,
      .page-daga__game-card-image-container,
      .page-daga__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  