
    /* CSS cho trang good88 */
    .page-good88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #1a1a1a;
      color: #f0f0f0;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi nút nổi */
    }

    .page-good88 a {
      color: #66ccff;
      text-decoration: none;
    }

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

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

    .page-good88 .hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-good88 .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 400px; /* Giới hạn chiều cao banner */
    }

    .page-good88 .banner-text {
      position: absolute;
      bottom: 10%; /* Điều chỉnh vị trí chữ trên banner */
      left: 50%;
      transform: translateX(-50%);
      color: #f0f0f0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-align: center;
      padding: 10px 20px;
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0.5);
      max-width: 90%;
    }

    .page-good88 .banner-text h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffcc00;
      line-height: 1.2;
    }

    .page-good88 .banner-text p {
      font-size: 1.1em;
      margin-bottom: 0;
    }

    .page-good88 .section-title {
      text-align: center;
      font-size: 2em;
      color: #ffcc00;
      margin-top: 40px;
      margin-bottom: 25px;
      position: relative;
    }

    .page-good88 .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #66ccff;
      margin: 10px auto 0;
    }

    .page-good88 .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
    }

    .page-good88 .floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
      text-decoration: none;
    }

    .page-good88 .floating-button .icon {
      margin-right: 8px;
      font-size: 1.3em;
    }

    .page-good88 .intro-section p {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-good88 .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
      justify-content: center;
    }

    .page-good88 .game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
    }

    .page-good88 .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }

    .page-good88 .game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #ffcc00;
    }

    .page-good88 .game-card h3 {
      font-size: 1.1em;
      color: #f0f0f0;
      margin: 15px 10px 10px;
      flex-grow: 1;
    }

    .page-good88 .game-card .play-button {
      background-color: #66ccff;
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-good88 .game-card .play-button:hover {
      background-color: #33aaff;
      text-decoration: none;
    }

    .page-good88 .promotions-section {
      background-color: #222222;
      padding: 40px 0;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-good88 .promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-good88 .promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-good88 .promo-card:hover {
      transform: translateY(-5px);
    }

    .page-good88 .promo-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-good88 .promo-card .promo-content {
      padding: 15px;
    }

    .page-good88 .promo-card h3 {
      font-size: 1.3em;
      color: #ffcc00;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-good88 .promo-card p {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-good88 .promo-card .read-more {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-good88 .promo-card .read-more:hover {
      background-color: #e6b800;
      text-decoration: none;
    }

    .page-good88 .info-section {
      padding: 40px 0;
    }

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

    .page-good88 .info-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-good88 .info-card h3 {
      color: #ffcc00;
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 15px;
      border-bottom: 1px solid #3a3a3a;
      padding-bottom: 10px;
    }

    .page-good88 .info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-good88 .info-card ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .page-good88 .info-card ul li::before {
      content: '✔';
      color: #66ccff;
      position: absolute;
      left: 0;
      top: 0;
    }

    .page-good88 .faq-section {
      padding: 40px 0;
    }

    .page-good88 .faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-good88 .faq-question {
      padding: 15px 20px;
      background-color: #333333;
      color: #ffcc00;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
    }

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

    .page-good88 .faq-answer {
      padding: 15px 20px;
      background-color: #2a2a2a;
      color: #cccccc;
      display: none;
    }

    .page-good88 .faq-answer.active {
      display: block;
    }

    .page-good88 .faq-question .toggle-icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-good88 .faq-question.active .toggle-icon {
      transform: rotate(180deg);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-good88 .hero-banner img {
        height: 250px;
      }
      .page-good88 .banner-text h1 {
        font-size: 1.8em;
      }
      .page-good88 .banner-text p {
        font-size: 1em;
      }
      .page-good88 .section-title {
        font-size: 1.8em;
      }
      .page-good88 .floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-good88 .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      }
      .page-good88 .game-card img {
        height: 100px;
      }
      .page-good88 .promo-grid, .page-good88 .info-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .page-good88 .hero-banner img {
        height: 200px;
      }
      .page-good88 .banner-text h1 {
        font-size: 1.5em;
      }
      .page-good88 .banner-text p {
        font-size: 0.9em;
      }
      .page-good88 .section-title {
        font-size: 1.6em;
      }
      .page-good88 .floating-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-good88 .floating-button .icon {
        margin-right: 5px;
        font-size: 1.1em;
      }
    }
  