
    /* CSS Styles for tt88game page */
    .page-tt88game {
      font-family: 'Arial', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    .page-tt88game__hero-section {
      text-align: center;
      padding: 180px 0 60px 0; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a;
      border-bottom: 5px solid #FFD700;
    }

    .page-tt88game__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-tt88game__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-tt88game__hero-subtitle {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-tt88game__promo-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
      border: none;
      cursor: pointer;
    }

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

    .page-tt88game__section {
      padding: 60px 0;
      border-bottom: 1px solid #333;
    }

    .page-tt88game__section:last-of-type {
      border-bottom: none;
    }

    .page-tt88game__section-title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-tt88game__text-block {
      margin-bottom: 20px;
      color: #ccc;
    }

    .page-tt88game__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-tt88game__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

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

    .page-tt88game__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
    }

    .page-tt88game__game-content {
      padding: 20px;
    }

    .page-tt88game__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-tt88game__game-description {
      font-size: 0.95em;
      color: #aaa;
    }

    .page-tt88game__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-tt88game__feature-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
      border-left: 5px solid #FFD700;
      box-sizing: border-box; /* Important for list items */
    }

    .page-tt88game__feature-item-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-tt88game__feature-item-text {
      color: #ccc;
    }

    .page-tt88game__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-tt88game__step-item {
      flex: 1 1 300px;
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      border: 1px solid #333;
      box-sizing: border-box; /* Important for list items */
    }

    .page-tt88game__step-number {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1;
    }

    .page-tt88game__step-title {
      font-size: 1.4em;
      color: #fff;
      margin-bottom: 10px;
    }

    .page-tt88game__step-description {
      color: #aaa;
    }

    .page-tt88game__faq-section {
      padding: 60px 0;
      background-color: #000;
    }

    .page-tt88game__faq-title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-tt88game__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

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

    .page-tt88game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #222;
      color: #fff;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-tt88game__faq-question:hover {
      background-color: #333;
    }

    .page-tt88game__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-tt88game__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-tt88game__faq-item.active .page-tt88game__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    .page-tt88game__faq-item.active .page-tt88game__faq-toggle::before {
        content: "−" !important;
    }


    .page-tt88game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-tt88game__faq-item.active .page-tt88game__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-tt88game__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: none;
      cursor: pointer;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-tt88game__hero-title {
        font-size: 2.5em;
      }
      .page-tt88game__hero-subtitle {
        font-size: 1.3em;
      }
      .page-tt88game__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-tt88game__hero-section {
        padding: 150px 0 40px 0; /* Adjust padding-top for mobile fixed header */
      }
      .page-tt88game__hero-title {
        font-size: 2em;
      }
      .page-tt88game__hero-subtitle {
        font-size: 1.1em;
      }
      .page-tt88game__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-tt88game__section {
        padding: 40px 0;
      }
      .page-tt88game__section-title {
        font-size: 1.8em;
      }
      .page-tt88game__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-tt88game__feature-list,
      .page-tt88game__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-tt88game__feature-item,
      .page-tt88game__step-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;
        overflow-wrap: break-word !important;
      }
      .page-tt88game__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-tt88game__faq-question h3 {
        font-size: 1em;
      }
      .page-tt88game__faq-answer {
        padding: 15px 15px !important;
      }
      .page-tt88game__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-tt88game__game-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
      }
      .page-tt88game img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tt88game__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-tt88game__hero-title {
        font-size: 1.8em;
      }
      .page-tt88game__hero-subtitle {
        font-size: 0.9em;
      }
      .page-tt88game__section-title {
        font-size: 1.5em;
      }
      .page-tt88game__game-title {
        font-size: 1.3em;
      }
      .page-tt88game__feature-item-title {
        font-size: 1.1em;
      }
      .page-tt88game__step-title {
        font-size: 1.2em;
      }
    }
  