
    /* Tổng thể */
    .page-tt88casino {
      font-family: Arial, sans-serif;
      background-color: #000000;
      color: #ffffff;
      line-height: 1.6;
      padding-bottom: 50px; /* Đảm bảo có khoảng trống cho footer */
    }

    /* Tiêu đề chính */
    .page-tt88casino__hero-section {
      position: relative;
      text-align: center;
      padding-top: 140px; /* Đảm bảo không bị che bởi header cố định */
      padding-bottom: 40px;
      overflow: hidden;
      background-color: #1a1a1a;
    }

    .page-tt88casino__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-tt88casino__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .page-tt88casino__hero-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-tt88casino__hero-subtitle {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-tt88casino__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-tt88casino__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Phần chung cho các section */
    .page-tt88casino__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-tt88casino__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 40px;
      position: relative;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-tt88casino__section-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-tt88casino__game-item {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-tt88casino__game-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-tt88casino__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #333;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-tt88casino__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-tt88casino__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-tt88casino__game-description {
      font-size: 0.95em;
      color: #cccccc;
      line-height: 1.5;
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Phần nhà cung cấp */
    .page-tt88casino__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-tt88casino__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-tt88casino__provider-item:hover {
      transform: scale(1.05);
    }

    .page-tt88casino__provider-logo {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      display: block;
      box-sizing: border-box;
    }

    /* FAQ */
    .page-tt88casino__faq-section {
      background-color: #1a1a1a;
    }

    .page-tt88casino__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-tt88casino__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-tt88casino__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

    .page-tt88casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #1e1e1e;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
      line-height: 1.6;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    /* Liên hệ và ưu đãi */
    .page-tt88casino__promo-section {
      background: linear-gradient(45deg, #000000, #333333);
      border-radius: 12px;
      padding: 50px 30px;
      margin-top: 60px;
    }

    .page-tt88casino__promo-title {
      color: #FFD700;
      font-size: 2em;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-tt88casino__promo-text {
      color: #e0e0e0;
      font-size: 1.1em;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Phản hồi */
    .page-tt88casino__testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-tt88casino__testimonial-item {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      text-align: left;
      box-sizing: border-box;
    }

    .page-tt88casino__testimonial-quote {
      font-style: italic;
      color: #cccccc;
      margin-bottom: 15px;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-tt88casino__testimonial-author {
      font-weight: bold;
      color: #FFD700;
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-tt88casino__hero-section {
        padding-top: 140px; /* Đảm bảo an toàn cho mobile */
        padding-bottom: 30px;
      }

      .page-tt88casino__hero-title {
        font-size: 2em;
      }

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

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

      .page-tt88casino__section {
        padding: 40px 15px;
      }

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

      .page-tt88casino__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-tt88casino__game-grid,
      .page-tt88casino__provider-grid,
      .page-tt88casino__testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tt88casino__game-item,
      .page-tt88casino__provider-item,
      .page-tt88casino__testimonial-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-tt88casino__game-image {
        height: 180px;
      }

      .page-tt88casino__game-title {
        font-size: 1.3em;
      }

      .page-tt88casino__game-description {
        font-size: 0.9em;
      }

      .page-tt88casino__faq-question {
        padding: 12px 15px;
      }

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

      .page-tt88casino__faq-answer {
        padding: 15px 15px !important;
        font-size: 0.9em;
      }

      .page-tt88casino__promo-section {
        padding: 40px 20px;
      }

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

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

    @media (max-width: 480px) {
      .page-tt88casino__hero-title {
        font-size: 1.8em;
      }

      .page-tt88casino__hero-subtitle {
        font-size: 0.9em;
      }

      .page-tt88casino__section-title {
        font-size: 1.6em;
      }
    }
  