
    .page-88agame {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo có khoảng trống cho nút nổi */
    }

    .page-88agame .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-88agame .hero {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #2a0a5e, #1a1a2e); /* Gradient nền */
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-88agame .hero h1 {
      font-size: 2.8em;
      color: #ffbe0b; /* Màu vàng nổi bật */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88agame .hero p {
      font-size: 1.2em;
      color: #c0c0c0;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-88agame .button-group-floating {
      position: sticky; /* Hoặc fixed nếu muốn luôn hiển thị */
      top: 0;
      z-index: 1000;
      background-color: rgba(26, 26, 46, 0.95);
      padding: 10px 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      margin-bottom: 20px;
    }

    .page-88agame .btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      color: #ffffff;
      text-align: center;
      min-width: 120px;
    }

    .page-88agame .btn-primary {
      background-color: #ff6b6b; /* Màu đỏ cam */
    }

    .page-88agame .btn-primary:hover {
      background-color: #e65a5a;
      transform: translateY(-2px);
    }

    .page-88agame .btn-secondary {
      background-color: #ffbe0b; /* Màu vàng */
      color: #1a1a2e;
    }

    .page-88agame .btn-secondary:hover {
      background-color: #e6a700;
      transform: translateY(-2px);
    }

    .page-88agame .section-title {
      font-size: 2em;
      color: #ffbe0b;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-88agame .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ff6b6b;
      border-radius: 2px;
    }

    .page-88agame .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .page-88agame .game-card {
      background-color: #2c2c4d; /* Nền thẻ game */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-88agame .game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88agame .game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-88agame .game-card-content {
      padding: 20px;
    }

    .page-88agame .game-card h3 {
      font-size: 1.5em;
      color: #ffbe0b;
      margin-bottom: 10px;
    }

    .page-88agame .game-card p {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-88agame .game-card .btn-play {
      background-color: #ff6b6b;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-88agame .game-card .btn-play:hover {
      background-color: #e65a5a;
    }

    .page-88agame .promo-banner {
      background: url('[GALLERY:banner:promotion,bonus,188k]') no-repeat center center/cover;
      border-radius: 12px;
      padding: 50px 30px;
      text-align: center;
      margin-bottom: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-88agame .promo-banner h2 {
      font-size: 2.5em;
      color: #ffbe0b;
      margin-bottom: 15px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-88agame .promo-banner p {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-88agame .promo-banner .btn-action {
      background-color: #ff6b6b;
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-88agame .promo-banner .btn-action:hover {
      background-color: #e65a5a;
      transform: translateY(-3px);
    }

    .page-88agame .why-choose-us ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .page-88agame .why-choose-us li {
      background-color: #2c2c4d;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }

    .page-88agame .why-choose-us li:hover {
      background-color: #3a3a60;
    }

    .page-88agame .why-choose-us li strong {
      display: block;
      font-size: 1.3em;
      color: #ffbe0b;
      margin-bottom: 10px;
    }

    .page-88agame .why-choose-us li p {
      color: #c0c0c0;
      font-size: 0.95em;
    }

    .page-88agame .other-keywords-section {
      background-color: #2c2c4d;
      border-radius: 12px;
      padding: 30px;
      margin-top: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-88agame .other-keywords-section h2 {
      font-size: 1.8em;
      color: #ffbe0b;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-88agame .other-keywords-section p {
      color: #c0c0c0;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-88agame .other-keywords-section ul {
      list-style: disc;
      padding-left: 20px;
      color: #c0c0c0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 10px;
    }

    .page-88agame .other-keywords-section ul li {
      margin-bottom: 5px;
      font-size: 0.95em;
    }

    .page-88agame .other-keywords-section ul li strong {
      color: #ff6b6b;
    }

    @media (max-width: 768px) {
      .page-88agame .hero {
        padding: 40px 15px;
      }

      .page-88agame .hero h1 {
        font-size: 2em;
      }

      .page-88agame .hero p {
        font-size: 1em;
      }

      .page-88agame .btn {
        padding: 10px 20px;
        font-size: 1em;
        min-width: unset;
      }

      .page-88agame .button-group-floating {
        flex-direction: row; /* Giữ nguyên hàng ngang cho di động */
        gap: 10px;
        padding: 8px 10px;
      }

      .page-88agame .section-title {
        font-size: 1.8em;
      }

      .page-88agame .game-grid {
        grid-template-columns: 1fr;
      }

      .page-88agame .promo-banner {
        padding: 30px 20px;
      }

      .page-88agame .promo-banner h2 {
        font-size: 2em;
      }

      .page-88agame .promo-banner p {
        font-size: 1.1em;
      }

      .page-88agame .promo-banner .btn-action {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-88agame .why-choose-us ul {
        grid-template-columns: 1fr;
      }
    }
  