
    :root {
      --primary-color: #e44d26; /* Cam đỏ */
      --secondary-color: #f7b731; /* Vàng cam */
      --text-color-dark: #333333;
      --text-color-light: #ffffff;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --border-color: #cccccc;
      --header-offset: 122px; /* Default offset, will be overridden by shared.css */
    }

    /* Base styles for the page-88abc-tp content */
    .page-88abc-tp {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set it */
    }

    .page-88abc-tp__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-88abc-tp__section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-88abc-tp__section--dark h2,
    .page-88abc-tp__section--dark h3,
    .page-88abc-tp__section--dark p {
      color: var(--text-color-light);
    }

    .page-88abc-tp__header-title {
      text-align: center;
      margin-bottom: 30px;
      color: var(--primary-color);
      font-size: 2.5em;
      font-weight: bold;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-88abc-tp__header-title span {
      color: var(--secondary-color);
    }

    .page-88abc-tp__description {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      color: var(--text-color-dark);
    }

    .page-88abc-tp__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-88abc-tp__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
      font-size: 1em;
      box-sizing: border-box;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-88abc-tp__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-88abc-tp__floating-button--secondary {
      background-color: var(--secondary-color);
    }

    .page-88abc-tp__floating-button--secondary:hover {
      background-color: #e6a000;
    }

    .page-88abc-tp__promo-banner {
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      color: var(--text-color-light);
      padding: 30px 20px;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-88abc-tp__promo-banner h2 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--text-color-light);
    }

    .page-88abc-tp__promo-banner p {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: var(--text-color-light);
    }

    .page-88abc-tp__promo-button {
      background-color: var(--text-color-light);
      color: var(--primary-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: inline-block; /* Make it behave like a block for padding */
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-88abc-tp__promo-button:hover {
      background-color: #eee;
      color: var(--secondary-color);
    }

    .page-88abc-tp__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-88abc-tp__game-card {
      background-color: var(--text-color-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      width: 100%;
      max-width: 350px; /* Limit card width */
      box-sizing: border-box;
    }

    .page-88abc-tp__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-88abc-tp__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-88abc-tp__game-card-content {
      padding: 20px;
    }

    .page-88abc-tp__game-card-content h3 {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-88abc-tp__game-card-content p {
      font-size: 0.95em;
      color: var(--text-color-dark);
      margin-bottom: 15px;
    }

    .page-88abc-tp__game-card-button {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block; /* Make it behave like a block for padding */
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-88abc-tp__game-card-button:hover {
      background-color: #e6a000;
    }

    .page-88abc-tp__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-88abc-tp__feature-item {
      background-color: var(--text-color-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88abc-tp__feature-item h3 {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-88abc-tp__feature-item p {
      color: var(--text-color-dark);
      font-size: 0.95em;
    }

    .page-88abc-tp__provider-logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-88abc-tp__provider-logo-wrapper {
      padding: 15px;
      background-color: var(--text-color-light);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      width: 100%;
      max-width: 200px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
    }

    .page-88abc-tp__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Adjust max height for logos */
      height: auto;
      display: block;
      object-fit: contain; /* Ensure logos fit without cropping */
    }

    .page-88abc-tp__payment-method-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-88abc-tp__payment-method-item {
      background-color: var(--text-color-light);
      padding: 10px 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      font-weight: bold;
      color: var(--text-color-dark);
      white-space: nowrap;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-88abc-tp__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88abc-tp__faq-item {
      background-color: var(--text-color-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-88abc-tp__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-88abc-tp__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-color-dark);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-88abc-tp__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-88abc-tp__faq-item.active .page-88abc-tp__faq-question {
      background-color: #f0f0f0;
      border-bottom: none;
    }

    .page-88abc-tp__faq-item.active .page-88abc-tp__faq-toggle {
      transform: rotate(45deg); /* A simple visual change for '-' */
    }

    .page-88abc-tp__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
      color: var(--text-color-dark);
    }

    .page-88abc-tp__faq-item.active .page-88abc-tp__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }
    
    .page-88abc-tp__faq-answer p {
      margin: 0;
      color: var(--text-color-dark); /* Ensure text color is visible */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-88abc-tp__section {
        padding: 25px 15px;
      }

      .page-88abc-tp__header-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-88abc-tp__description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-88abc-tp__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-88abc-tp__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        border-radius: 25px;
      }

      .page-88abc-tp__promo-banner {
        padding: 20px 15px;
      }

      .page-88abc-tp__promo-banner h2 {
        font-size: 1.8em;
      }

      .page-88abc-tp__promo-banner p {
        font-size: 1em;
      }

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

      .page-88abc-tp__games-grid,
      .page-88abc-tp__features-list,
      .page-88abc-tp__provider-logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-88abc-tp__game-card {
        max-width: 100%;
      }

      .page-88abc-tp__game-card-image-wrapper {
        height: 180px;
      }

      .page-88abc-tp__feature-item,
      .page-88abc-tp__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-88abc-tp__faq-question {
        padding: 12px 15px;
      }

      .page-88abc-tp__faq-question h3 {
        font-size: 1em;
      }

      .page-88abc-tp__faq-answer {
        padding: 0 15px;
      }
      .page-88abc-tp__faq-item.active .page-88abc-tp__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-88abc-tp__floating-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
      }
      .page-88abc-tp__floating-button {
        font-size: 0.85em;
        padding: 10px 15px;
      }
    }
  