
    /* Tổng quan và thiết lập cơ bản */
    .page-dagac6 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    /* Thiết lập container chính */
    .page-dagac6__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Tiêu đề phần */
    .page-dagac6__section-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 40px;
      font-size: 2.2em;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }

    .page-dagac6__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      border-radius: 2px;
    }

    /* Nút hành động chung */
    .page-dagac6__button {
      display: inline-block;
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-dagac6__button:hover {
      background-color: #c0392b; /* Màu đỏ đậm hơn */
      transform: translateY(-2px);
    }

    /* Phần Hero */
    .page-dagac6__hero-section {
      position: relative;
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 10px 0 60px; /* padding-top để tránh header cố định */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-dagac6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-dagac6__hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-dagac6__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-dagac6__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      font-weight: 300;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    /* Nút khuyến mãi cố định (Floating Promo Button) */
    .page-dagac6__promo-button-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f39c12; /* Màu vàng cam nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      max-width: 250px; /* Giới hạn chiều rộng */
      text-align: center;
      box-sizing: border-box;
    }

    .page-dagac6__promo-button-fixed:hover {
      background-color: #e67e22; /* Màu vàng cam đậm hơn */
      transform: translateY(-3px);
    }

    /* Phần giới thiệu */
    .page-dagac6__intro-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .page-dagac6__intro-text {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1em;
      color: #555;
    }

    /* Phần danh mục trò chơi */
    .page-dagac6__game-categories {
      padding: 60px 0;
      background-color: #f1f2f6;
    }

    .page-dagac6__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-dagac6__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

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

    .page-dagac6__game-image {
      width: 100%;
      height: 200px; /* Kích thước tối thiểu 200x200px */
      object-fit: cover;
      display: block;
      box-sizing: border-box;
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng của thẻ cha */
    }

    .page-dagac6__game-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin: 20px 10px 10px;
      font-weight: 600;
    }

    .page-dagac6__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Phần khuyến mãi */
    .page-dagac6__promotions-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-dagac6__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-dagac6__promotion-item {
      background-color: #fdfefe;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-dagac6__promotion-title {
      font-size: 1.6em;
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-dagac6__promotion-description {
      color: #555;
      margin-bottom: 20px;
    }

    /* Phần hướng dẫn */
    .page-dagac6__how-to-section {
      padding: 60px 0;
      background-color: #f1f2f6;
    }

    .page-dagac6__step-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-dagac6__step-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 cột trên desktop */
      min-width: 280px;
      max-width: 350px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

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

    .page-dagac6__step-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-dagac6__step-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-dagac6__step-description {
      color: #666;
    }

    /* Phần FAQ */
    .page-dagac6__faq-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-dagac6__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
    }

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

    .page-dagac6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #fff;
      font-size: 1.15em;
      font-weight: 600;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-dagac6__faq-question:hover {
      background-color: #c0392b; /* Màu đỏ đậm hơn */
    }

    .page-dagac6__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
      text-align: left;
    }

    .page-dagac6__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }

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

    .page-dagac6__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-dagac6__faq-item.active .page-dagac6__faq-answer {
      max-height: 2000px !important; /* Đảm bảo đủ lớn cho mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Phần lý do chọn */
    .page-dagac6__why-choose-section {
      padding: 60px 0;
      background-color: #f1f2f6;
      text-align: center;
    }

    .page-dagac6__advantage-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-dagac6__advantage-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

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

    .page-dagac6__advantage-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-dagac6__advantage-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-dagac6__advantage-description {
      color: #666;
    }

    /* Phần kêu gọi hành động cuối */
    .page-dagac6__cta-section {
      padding: 80px 0;
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
    }

    .page-dagac6__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-dagac6__cta-text {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive cho di động */
    @media (max-width: 768px) {
      .page-dagac6__hero-title {
        font-size: 2.2em;
      }

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

      .page-dagac6__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-dagac6__intro-text {
        font-size: 1em;
      }

      .page-dagac6__game-grid,
      .page-dagac6__promotion-grid,
      .page-dagac6__advantage-list {
        grid-template-columns: 1fr;
      }

      .page-dagac6__game-card,
      .page-dagac6__promotion-item,
      .page-dagac6__advantage-item {
        max-width: 100%;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-dagac6__step-list {
        flex-direction: column;
        align-items: center;
      }

      .page-dagac6__step-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 25px !important; /* Giảm padding */
      }
      
      .page-dagac6__game-image {
        height: 180px; /* Điều chỉnh chiều cao hình ảnh trên di động */
      }

      .page-dagac6__promo-button-fixed {
        font-size: 0.9em;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
        max-width: 200px; /* Giảm chiều rộng trên di động */
      }

      .page-dagac6__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

      .page-dagac6__faq-question h3 {
        font-size: 1em;
      }

      .page-dagac6__faq-answer {
        padding: 0 20px;
      }

      .page-dagac6__faq-item.active .page-dagac6__faq-answer {
        padding: 15px 20px !important;
      }

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

      .page-dagac6__cta-text {
        font-size: 1em;
      }
    }

    /* Đảm bảo hình ảnh responsive trên di động */
    .page-dagac6 img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    
    /* Đảm bảo tất cả các thẻ có thuộc tính width hoặc max-width được kiểm soát */
    .page-dagac6__container,
    .page-dagac6__hero-content,
    .page-dagac6__intro-text,
    .page-dagac6__faq-list,
    .page-dagac6__cta-text {
      width: 100%; /* Mặc định full width */
      max-width: 1200px; /* Giới hạn max width */
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-dagac6__container,
        .page-dagac6__hero-content,
        .page-dagac6__intro-text,
        .page-dagac6__faq-list,
        .page-dagac6__cta-text {
            max-width: 100% !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-dagac6__game-grid,
        .page-dagac6__promotion-grid,
        .page-dagac6__step-list,
        .page-dagac6__advantage-list {
            padding-left: 15px !important;
            padding-right: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

  