
    .page-tf88v {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px;
      /* For fixed header, if body padding-top is not set */
      /* padding-top: var(--header-offset, 122px); */
    }

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

    .page-tf88v__section {
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-tf88v__section--dark {
      background-color: #16213e;
    }

    .page-tf88v__section--gradient {
      background: linear-gradient(135deg, #1a1a2e, #0f3460);
    }

    .page-tf88v__hero-section {
      background-size: cover;
      background-position: center;
      color: #ffffff;
      padding: 100px 0 80px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      padding-top: 10px; /* Decorative top spacing, body already handles header offset */
    }

    .page-tf88v__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-tf88v__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-tf88v__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #e94560;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-tf88v__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #f0f0f0;
    }

    .page-tf88v__button-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-tf88v__button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      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-tf88v__button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    .page-tf88v__heading {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-tf88v__sub-heading {
      font-size: 1.8em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .page-tf88v__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #c0c0c0;
    }

    .page-tf88v__usp-list {
      list-style: none;
      padding: 0;
      margin: 0 auto 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
    }

    .page-tf88v__usp-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 10px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-tf88v__usp-item:hover {
      transform: translateY(-5px);
    }

    .page-tf88v__usp-item h3 {
      color: #e94560;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-tf88v__usp-item p {
      color: #c0c0c0;
      font-size: 1em;
    }

    .page-tf88v__image-wrapper {
      margin: 40px auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-tf88v__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

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

    .page-tf88v__game-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

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

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

    .page-tf88v__game-card-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-tf88v__game-card-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-tf88v__game-card-button:hover {
      background-color: #ff6a80;
    }

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

    .page-tf88v__guide-step-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 10px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-tf88v__guide-step-item:hover {
      transform: translateY(-5px);
    }

    .page-tf88v__guide-step-item h3 {
      color: #e94560;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-tf88v__guide-step-item p {
      color: #c0c0c0;
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-tf88v__promo-banner {
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      border-radius: 10px;
      margin-top: 40px;
      position: relative;
    }

    .page-tf88v__promo-banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      z-index: 1;
    }

    .page-tf88v__promo-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-tf88v__promo-title {
      font-size: 2.5em;
      color: #ffe000;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-tf88v__promo-description {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
    }

    .page-tf88v__faq-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0;
      max-width: 900px;
      text-align: left;
    }

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

    .page-tf88v__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #1a1a2e;
      color: #e94560;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-tf88v__faq-question:hover {
      background-color: #2b2b4d;
    }

    .page-tf88v__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Allow click on parent div */
      color: inherit;
    }

    .page-tf88v__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Allow click on parent div */
    }

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

    .page-tf88v__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #c0c0c0;
      font-size: 1em;
    }

    .page-tf88v__faq-item.active .page-tf88v__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-tf88v__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .page-tf88v__floating-button {
      background-color: #ffe000;
      color: #1a1a2e;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

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

    @media (max-width: 992px) {
      .page-tf88v__hero-title {
        font-size: 3em;
      }

      .page-tf88v__heading {
        font-size: 2.2em;
      }

      .page-tf88v__usp-item {
        flex: 1 1 calc(50% - 30px);
      }

      .page-tf88v__guide-step-item {
        flex: 1 1 calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-tf88v__hero-section {
        padding: 80px 0 60px;
        min-height: 450px;
      }

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

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

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

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

      .page-tf88v__sub-heading {
        font-size: 1.4em;
        margin-bottom: 20px;
      }

      .page-tf88v__text-content {
        font-size: 0.95em;
      }

      .page-tf88v__usp-list,
      .page-tf88v__guide-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-tf88v__usp-item,
      .page-tf88v__guide-step-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-tf88v__usp-item h3,
      .page-tf88v__guide-step-item h3 {
        font-size: 1.3em;
      }

      .page-tf88v__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tf88v__game-card-title {
        font-size: 1.2em;
      }

      .page-tf88v__promo-banner {
        padding: 60px 15px;
      }

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

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

      .page-tf88v__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

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

      .page-tf88v__floating-promo {
        bottom: 15px;
        right: 15px;
      }

      .page-tf88v__floating-button {
        padding: 12px 20px;
        font-size: 0.95em;
      }

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

    @media (max-width: 480px) {
      .page-tf88v__hero-title {
        font-size: 1.8em;
      }
      .page-tf88v__hero-description {
        font-size: 0.9em;
      }
      .page-tf88v__button-group {
        flex-direction: column;
      }
      .page-tf88v__button {
        width: 100%;
      }
      .page-tf88v__heading {
        font-size: 1.6em;
      }
      .page-tf88v__usp-item,
      .page-tf88v__guide-step-item {
        padding: 15px;
      }
      .page-tf88v__faq-question {
        font-size: 1em;
      }
      .page-tf88v__faq-answer {
        font-size: 0.9em;
      }
    }
  