
    /* Tổng quan */
    .page-dagatruc88 {
      font-family: Arial, sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

    /* Tiêu đề */
    .page-dagatruc88 h1, .page-dagatruc88 h2, .page-dagatruc88 h3 {
      color: #FFD700; /* Chữ vàng */
      text-align: center;
      margin-bottom: 25px;
      margin-top: 40px;
    }

    .page-dagatruc88 h1 {
      font-size: 2.5em;
      margin-bottom: 20px;
      padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
    }

    .page-dagatruc88 h2 {
      font-size: 2em;
      border-bottom: 2px solid #FFD700;
      padding-bottom: 10px;
      margin-top: 50px;
    }

    .page-dagatruc88 h3 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    /* Đoạn văn */
    .page-dagatruc88 p {
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Liên kết */
    .page-dagatruc88 a {
      color: #FFD700;
      text-decoration: none;
    }

    .page-dagatruc88 a:hover {
      text-decoration: underline;
    }

    /* Nút */
    .page-dagatruc88__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 8px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-dagatruc88__button:hover {
      background-color: #FFA500; /* Màu cam đậm hơn khi hover */
      color: #FFFFFF;
    }

    /* Phần Hero */
    .page-dagatruc88__hero-section {
      text-align: center;
      padding: 10px 0 40px 0; /* padding-top: 10px cho hero */
      background-color: #1a1a1a;
      margin-bottom: 30px;
    }

    .page-dagatruc88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-dagatruc88__hero-content {
      padding: 0 15px;
    }

    /* Nút đăng nhập nổi */
    .page-dagatruc88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      animation: page-dagatruc88__pulse 1.5s infinite;
    }

    @keyframes page-dagatruc88__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Phần giới thiệu */
    .page-dagatruc88__intro-section {
      background-color: #1a1a1a;
      padding: 30px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Lưới trò chơi */
    .page-dagatruc88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 30px;
    }

    .page-dagatruc88__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-dagatruc88__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-dagatruc88__game-item img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 10px;
      display: block;
      object-fit: cover;
      min-height: 150px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-dagatruc88__game-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: #FFFFFF;
    }

    /* Phần hướng dẫn */
    .page-dagatruc88__guide-section {
      background-color: #1a1a1a;
      padding: 30px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagatruc88__guide-steps {
      list-style: none;
      padding: 0;
    }

    .page-dagatruc88__guide-steps li {
      background-color: #000000;
      border: 1px solid #FFD700;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-dagatruc88__guide-steps li strong {
      color: #FFD700;
      font-size: 1.2em;
      flex-shrink: 0;
    }

    .page-dagatruc88__guide-steps li p {
      margin: 0;
      text-align: left;
    }

    /* Phần khuyến mãi */
    .page-dagatruc88__promo-section {
      text-align: center;
      background-color: #2a2a2a;
      padding: 40px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagatruc88__promo-section h2 {
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-dagatruc88__promo-section p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    /* FAQ */
    .page-dagatruc88__faq-section {
      background-color: #1a1a1a;
      padding: 30px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagatruc88__faq-item {
      margin-bottom: 15px;
      border: 1px solid #FFD700;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-dagatruc88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #000000;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-dagatruc88__faq-question:hover {
      background-color: #0d0d0d;
    }

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

    .page-dagatruc88__faq-toggle {
      font-size: 1.5em;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

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

    .page-dagatruc88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #000000;
      color: #E0E0E0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Hình ảnh chung */
    .page-dagatruc88 img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box; /* Đảm bảo padding không làm tràn */
    }

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-dagatruc88 h1 {
        font-size: 2em;
        padding-top: 10px; /* Đảm bảo không bị che bởi header cố định trên mobile */
      }

      .page-dagatruc88 h2 {
        font-size: 1.6em;
      }

      .page-dagatruc88 h3 {
        font-size: 1.3em;
      }

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

      .page-dagatruc88__game-item {
        padding: 10px;
      }

      .page-dagatruc88__game-item img {
        min-height: 100px;
      }

      .page-dagatruc88__game-item h3 {
        font-size: 1em;
      }

      .page-dagatruc88__guide-steps li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
      }

      .page-dagatruc88__guide-steps li strong {
        font-size: 1.1em;
      }

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

      .page-dagatruc88__faq-answer {
        padding: 15px 10px;
      }

      .page-dagatruc88__floating-button {
        width: 95%;
        padding: 10px 15px;
      }

      .page-dagatruc88 img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-dagatruc88 h1 {
        font-size: 1.8em;
      }
      .page-dagatruc88 h2 {
        font-size: 1.4em;
      }
      .page-dagatruc88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  