
    :root {
      --page-tc88-2-primary-color: #007bff; /* Blue */
      --page-tc88-2-secondary-color: #6c757d; /* Gray */
      --page-tc88-2-accent-color: #ffc107; /* Yellow */
      --page-tc88-2-dark-bg: #212529; /* Dark Gray */
      --page-tc88-2-light-bg: #f8f9fa; /* Light Gray */
      --page-tc88-2-text-color: #343a40; /* Dark Text */
      --page-tc88-2-white: #ffffff;
      --page-tc88-2-border-color: #dee2e6;
      --page-tc88-2-gradient-start: #0056b3;
      --page-tc88-2-gradient-end: #007bff;
    }

    .page-tc88-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-tc88-2-text-color);
      background-color: var(--page-tc88-2-light-bg);
      padding-top: 10px; /* Minimal top padding, body handles header offset */
    }

    .page-tc88-2__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: var(--page-tc88-2-white);
    }

    .page-tc88-2__section--dark {
      background-color: var(--page-tc88-2-dark-bg);
      color: var(--page-tc88-2-light-bg);
    }

    .page-tc88-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-tc88-2__header-text {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-tc88-2__header-text h1 {
      color: var(--page-tc88-2-primary-color);
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }
    
    .page-tc88-2__section--dark h1,
    .page-tc88-2__section--dark h2,
    .page-tc88-2__section--dark h3 {
      color: var(--page-tc88-2-accent-color);
    }

    .page-tc88-2__header-text h2 {
      color: var(--page-tc88-2-secondary-color);
      font-size: 1.8em;
      margin-bottom: 20px;
    }

    .page-tc88-2__button {
      display: inline-block;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-tc88-2-white);
      background: linear-gradient(45deg, var(--page-tc88-2-gradient-start), var(--page-tc88-2-gradient-end));
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .page-tc88-2__button:hover {
      background: linear-gradient(45deg, var(--page-tc88-2-gradient-end), var(--page-tc88-2-gradient-start));
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-tc88-2__hero-section {
      text-align: center;
      padding: 80px 20px;
      background-image: url('[GALLERY:hero:1920x1080:gaming,abstract,light]');
      background-size: cover;
      background-position: center;
      color: var(--page-tc88-2-white);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-tc88-2__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }

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

    .page-tc88-2__hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-tc88-2-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-tc88-2__hero-content p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-tc88-2-white);
    }

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

    .page-tc88-2__card {
      background-color: var(--page-tc88-2-white);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px;
    }

    .page-tc88-2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-tc88-2__card-image {
      width: 100%;
      max-width: 300px; /* Ensure images are not too wide */
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      box-sizing: border-box;
      max-height: 200px;
    }

    .page-tc88-2__card h3 {
      color: var(--page-tc88-2-primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-tc88-2__card p {
      font-size: 0.95em;
      color: var(--page-tc88-2-text-color);
    }

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

    .page-tc88-2__features-item {
      background-color: var(--page-tc88-2-light-bg);
      border: 1px solid var(--page-tc88-2-border-color);
      border-radius: 5px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-tc88-2__features-item strong {
      color: var(--page-tc88-2-primary-color);
      font-size: 1.1em;
      margin-bottom: 5px;
      display: block;
    }

    .page-tc88-2__features-item p {
      margin: 0;
      font-size: 0.9em;
    }

    .page-tc88-2__features-icon {
      width: 60px; /* Min size 200x200 for actual image, but this is an icon placeholder */
      height: 60px;
      margin-right: 15px;
      flex-shrink: 0;
      object-fit: contain;
    }

    .page-tc88-2__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-tc88-2__promotion-card {
      background-color: var(--page-tc88-2-white);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .page-tc88-2__promotion-card:hover {
      transform: translateY(-8px);
    }

    .page-tc88-2__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-tc88-2__promotion-content {
      padding: 20px;
    }

    .page-tc88-2__promotion-content h3 {
      font-size: 1.6em;
      color: var(--page-tc88-2-primary-color);
      margin-bottom: 10px;
    }

    .page-tc88-2__promotion-content p {
      font-size: 0.95em;
      color: var(--page-tc88-2-text-color);
      margin-bottom: 15px;
    }

    /* FAQ Section Styles */
    .page-tc88-2__faq-section {
      padding: 40px 20px;
      background-color: var(--page-tc88-2-light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-tc88-2__faq-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-tc88-2__faq-header h2 {
      color: var(--page-tc88-2-primary-color);
      font-size: 2.2em;
    }

    .page-tc88-2__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-tc88-2__faq-item {
      background-color: var(--page-tc88-2-white);
      border: 1px solid var(--page-tc88-2-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-tc88-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: var(--page-tc88-2-white);
      color: var(--page-tc88-2-text-color);
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-tc88-2__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-tc88-2__faq-question h3 {
      margin: 0;
      color: var(--page-tc88-2-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-tc88-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-tc88-2-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-tc88-2__faq-item.active .page-tc88-2__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, visually indicates open */
    }

    .page-tc88-2__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;
      background-color: var(--page-tc88-2-light-bg);
      color: var(--page-tc88-2-text-color);
    }

    .page-tc88-2__faq-item.active .page-tc88-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-tc88-2__faq-answer p {
      margin-bottom: 10px;
      font-size: 0.95em;
    }

    /* CTA Section */
    .page-tc88-2__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-tc88-2-primary-color);
      color: var(--page-tc88-2-white);
      border-radius: 8px;
    }

    .page-tc88-2__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-tc88-2-accent-color);
    }

    .page-tc88-2__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-tc88-2__hero-content h1 {
        font-size: 3em;
      }
      .page-tc88-2__hero-content p {
        font-size: 1.1em;
      }
      .page-tc88-2__header-text h1 {
        font-size: 2.5em;
      }
      .page-tc88-2__header-text h2 {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-tc88-2__hero-section {
        padding: 60px 15px;
      }
      .page-tc88-2__hero-content h1 {
        font-size: 2.5em;
      }
      .page-tc88-2__hero-content p {
        font-size: 1em;
      }
      .page-tc88-2__header-text h1 {
        font-size: 2em;
      }
      .page-tc88-2__header-text h2 {
        font-size: 1.3em;
      }
      .page-tc88-2__section {
        padding: 30px 15px;
      }
      .page-tc88-2__grid,
      .page-tc88-2__promotions-grid,
      .page-tc88-2__features-list {
        grid-template-columns: 1fr;
      }

      /* List item specific mobile responsive styles */
      .page-tc88-2__features-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 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-tc88-2__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tc88-2__card-image,
      .page-tc88-2__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-tc88-2__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-tc88-2__faq-answer {
        padding: 15px !important;
      }
      .page-tc88-2__cta-section h2 {
        font-size: 2em;
      }
      .page-tc88-2__cta-section p {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-tc88-2__hero-content h1 {
        font-size: 2em;
      }
      .page-tc88-2__hero-content p {
        font-size: 0.9em;
      }
      .page-tc88-2__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-tc88-2__header-text h1 {
        font-size: 1.8em;
      }
      .page-tc88-2__header-text h2 {
        font-size: 1.1em;
      }
    }
  