
    /* Tổng thể */
    .page-tt88bet {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-tt88bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-tt88bet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-tt88bet__section-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-tt88bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-tt88bet__text-white {
      color: #FFFFFF;
    }

    .page-tt88bet__text-yellow {
      color: #FFD700;
    }

    .page-tt88bet__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

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

    /* Hero Section */
    .page-tt88bet__hero-section {
      position: relative;
      background-color: #000000;
      padding-top: 160px; /* An toàn cho header cố định */
      padding-bottom: 40px;
      overflow: hidden;
    }

    .page-tt88bet__hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .page-tt88bet__hero-image-wrapper {
      width: 100%;
      max-width: 800px; /* Kích thước tối đa cho ảnh hero */
      margin: 0 auto 20px auto;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-tt88bet__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo hình ảnh không bị biến dạng */
    }

    .page-tt88bet__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-tt88bet__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
    }

    /* Nút Đăng nhập/Khuyến mãi nổi */
    .page-tt88bet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      animation: page-tt88bet__pulse 2s infinite;
      transition: transform 0.3s ease;
    }

    .page-tt88bet__floating-login-button:hover {
      transform: scale(1.05);
      background-color: #e6c200;
    }

    @keyframes page-tt88bet__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      }
      50% {
        transform: scale(1.03);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      }
    }

    /* Giới thiệu TT88 */
    .page-tt88bet__about-section .page-tt88bet__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 30px;
      text-align: left;
    }

    .page-tt88bet__about-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
    }

    .page-tt88bet__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }

    .page-tt88bet__about-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Danh mục trò chơi */
    .page-tt88bet__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-tt88bet__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      height: 100%;
    }

    .page-tt88bet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-tt88bet__game-card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-tt88bet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Kích thước cố định cho ảnh game */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-tt88bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-tt88bet__game-card-title {
      font-size: 1.3em;
      color: #FFD700;
      padding: 15px;
      margin: 0;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Khuyến mãi */
    .page-tt88bet__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-tt88bet__promo-card-image-wrapper {
      width: 100%;
      max-width: 400px;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-tt88bet__promo-card-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .page-tt88bet__promo-card-title {
      font-size: 2em;
      color: #FFD700;
      margin: 0;
    }

    .page-tt88bet__promo-card-description {
      font-size: 1.1em;
      color: #FFFFFF;
      margin-bottom: 20px;
    }

    /* Nhà cung cấp */
    .page-tt88bet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
    }

    .page-tt88bet__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Kích thước cố định cho logo nhà cung cấp */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-tt88bet__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-tt88bet__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* FAQ */
    .page-tt88bet__faq-section {
      background-color: #0a0a0a;
    }

    .page-tt88bet__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-tt88bet__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-tt88bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      border-bottom: 1px solid #333333;
      transition: background-color 0.3s ease;
    }

    .page-tt88bet__faq-question:hover {
      background-color: #333333;
    }

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

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

    .page-tt88bet__faq-item.active .page-tt88bet__faq-toggle {
      transform: rotate(45deg); /* Biến '+' thành 'x' hoặc '-' */
    }

    .page-tt88bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
    }

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

    /* Call to Action cuối trang */
    .page-tt88bet__cta-section {
      padding: 60px 0;
      background-color: #111111;
    }

    .page-tt88bet__cta-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-tt88bet__cta-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-tt88bet__hero-section {
        padding-top: 140px; /* An toàn cho header cố định trên mobile */
      }

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

      .page-tt88bet__hero-subtitle {
        font-size: 1.2em;
      }

      .page-tt88bet__section {
        padding: 30px 0;
      }

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

      .page-tt88bet__about-section .page-tt88bet__content-wrapper {
        flex-direction: column;
      }

      .page-tt88bet__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-tt88bet__game-card-image-wrapper {
        height: 180px;
      }

      .page-tt88bet__game-card-title {
        font-size: 1.1em;
      }

      .page-tt88bet__promo-card {
        padding: 20px;
      }

      .page-tt88bet__promo-card-title {
        font-size: 1.5em;
      }

      .page-tt88bet__promo-card-description {
        font-size: 1em;
      }

      .page-tt88bet__faq-question {
        padding: 15px 20px;
      }

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

      .page-tt88bet__faq-answer {
        padding: 0 20px;
      }

      .page-tt88bet__faq-item.active .page-tt88bet__faq-answer {
        padding: 15px 20px !important;
      }

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

      .page-tt88bet__cta-description {
        font-size: 1em;
      }

      /* Responsive images for all sections */
      .page-tt88bet__hero-image,
      .page-tt88bet__about-image,
      .page-tt88bet__game-card-image,
      .page-tt88bet__promo-card-image,
      .page-tt88bet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-tt88bet__hero-image-wrapper,
      .page-tt88bet__about-image-wrapper,
      .page-tt88bet__game-card-image-wrapper,
      .page-tt88bet__promo-card-image-wrapper,
      .page-tt88bet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

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

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

      .page-tt88bet__game-card-image-wrapper {
        height: 150px;
      }
    }
  