
    :root {
      --primary-color: #e44d26; /* Màu sắc nổi bật cho các nút kêu gọi hành động */
      --secondary-color: #333;
      --accent-color: #f7b731; /* Vàng/Gold cho các điểm nhấn */
      --background-color: #1a1a1a;
      --card-background: #2a2a2a;
      --text-color: #f5f5f5;
      --border-color: #444;
      --button-hover-color: #ff6a3d;
      --faq-question-bg: #333;
      --faq-answer-bg: #2a2a2a;
      --faq-border-color: #555;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--background-color);
      color: var(--text-color);
      line-height: 1.6;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-5tt88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 80px 15px; /* Thêm padding-bottom cho các nút nổi */
      box-sizing: border-box;
    }

    /* Khoảng cách đầu trang cho các phần không phải hero */
    .page-5tt88__section:not(.page-5tt88__hero-section) {
        padding-top: 10px; /* Padding trang trí nhỏ ở trên */
    }

    .page-5tt88__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 20px 60px 20px; /* Padding trang trí nhỏ ở trên, nhiều hơn ở dưới cho nội dung */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-5tt88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Làm mờ hình nền để dễ đọc chữ */
    }

    .page-5tt88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Nền bán trong suốt để dễ đọc */
      border-radius: 10px;
    }

    .page-5tt88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .page-5tt88__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 25px;
        color: #ddd;
    }

    .page-5tt88__promo-button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-5tt88__promo-button:hover {
      background-color: var(--button-hover-color);
    }

    .page-5tt88__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-5tt88__section-title {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-5tt88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    .page-5tt88__text-content {
      padding: 0 20px;
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: justify;
    }
    .page-5tt88__text-content p {
        margin-bottom: 15px;
    }

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

    .page-5tt88__game-card {
      background-color: var(--background-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-5tt88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    }

    .page-5tt88__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }

    .page-5tt88__game-card-content {
      padding: 20px;
    }

    .page-5tt88__game-card-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--accent-color);
    }

    .page-5tt88__game-card-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-5tt88__features-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .page-5tt88__features-item {
      background-color: var(--background-color);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    .page-5tt88__features-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-5tt88__features-item p {
      color: #ccc;
      font-size: 0.9em;
    }

    .page-5tt88__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      border-top: 1px solid var(--border-color);
    }

    .page-5tt88__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 0;
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      border-radius: 5px;
      font-size: 1.0em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: block; /* Đảm bảo chiếm toàn bộ chiều rộng mục flex */
    }

    .page-5tt88__floating-button:hover {
      background-color: var(--button-hover-color);
    }
    
    /* Kiểu dáng phần FAQ */
    .page-5tt88__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-5tt88__faq-item {
      background-color: var(--faq-question-bg);
      border: 1px solid var(--faq-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .page-5tt88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--faq-question-bg);
      color: var(--text-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-5tt88__faq-question:hover {
      background-color: #444;
    }

    .page-5tt88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-5tt88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      width: 24px;
      text-align: center;
      transition: transform 0.3s ease;
      color: var(--accent-color);
      pointer-events: none; /* Ngăn span chặn sự kiện click */
    }

    .page-5tt88__faq-item.active .page-5tt88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-5tt88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--faq-answer-bg);
      color: #ccc;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-5tt88__faq-item.active .page-5tt88__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }
    
    .page-5tt88__faq-answer p {
        margin: 0 0 10px 0;
    }
    .page-5tt88__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Hình ảnh phản hồi chung */
    .page-5tt88 img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
      border-radius: 8px; /* Đồng bộ với kiểu dáng thẻ */
    }

    /* Điều chỉnh phản hồi */
    @media (max-width: 768px) {
      .page-5tt88 {
        padding: 10px 10px 80px 10px; /* Điều chỉnh padding cho màn hình nhỏ hơn */
      }

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

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

      .page-5tt88__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-5tt88__game-grid {
        grid-template-columns: 1fr; /* Một cột trên di động */
        padding: 0 15px;
      }
      
      .page-5tt88__game-card-image {
        height: 180px; /* Chiều cao hình ảnh nhỏ hơn một chút cho di động */
      }

      .page-5tt88__features-list {
        grid-template-columns: 1fr; /* Một cột trên di động */
        padding: 0 15px;
      }
      
      .page-5tt88__features-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important; /* Đảm bảo văn bản ngắt dòng */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-5tt88__faq-container {
        padding: 0 15px;
      }
      
      .page-5tt88__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      
      .page-5tt88__faq-question h3 {
        font-size: 1em;
      }
      
      .page-5tt88__faq-answer {
        padding: 15px !important;
      }

      .page-5tt88 img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
    }
  