
    :root {
      --page-tt88casino__primary-color: #FFD700; /* Yellow */
      --page-tt88casino__secondary-color: #FFFFFF; /* White */
      --page-tt88casino__background-color: #000000; /* Black */
      --page-tt88casino__accent-color: #FF4500; /* OrangeRed for emphasis */
      --page-tt88casino__text-color-dark: #333333; /* Dark text for contrast on light elements */
    }

    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: var(--page-tt88casino__background-color);
      color: var(--page-tt88casino__secondary-color);
      line-height: 1.6;
      text-align: center;
    }

    .page-tt88casino__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Space for fixed header */
      box-sizing: border-box;
      background-color: var(--page-tt88casino__background-color);
    }

    .page-tt88casino__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-tt88casino__hero-content {
      padding: 20px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-tt88casino__hero-title {
      color: var(--page-tt88casino__primary-color);
      font-size: 2.8em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-tt88casino__hero-subtitle {
      color: var(--page-tt88casino__secondary-color);
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-tt88casino__cta-button {
      display: inline-block;
      background-color: var(--page-tt88casino__accent-color);
      color: var(--page-tt88casino__secondary-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-tt88casino__cta-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-tt88casino__sticky-button-container {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 300px;
      box-sizing: border-box;
    }

    .page-tt88casino__sticky-button {
      width: 100%;
      padding: 15px 20px;
      background-color: var(--page-tt88casino__accent-color);
      color: var(--page-tt88casino__secondary-color);
      border: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-tt88casino__sticky-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-tt88casino__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: left;
    }

    .page-tt88casino__section-title {
      color: var(--page-tt88casino__primary-color);
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-tt88casino__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: 80px;
      height: 4px;
      background-color: var(--page-tt88casino__primary-color);
      border-radius: 2px;
    }

    .page-tt88casino__text-block {
      margin-bottom: 20px;
      color: var(--page-tt88casino__secondary-color);
    }

    .page-tt88casino__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-tt88casino__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 15px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-tt88casino__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }

    .page-tt88casino__game-image {
      width: 100%;
      max-width: 150px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 10px;
    }
    
    .page-tt88casino__game-title {
      color: var(--page-tt88casino__primary-color);
      font-size: 1.1em;
      font-weight: bold;
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-tt88casino__info-card {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-tt88casino__info-card-icon {
      width: 100%;
      max-width: 80px;
      height: auto;
      margin-bottom: 15px;
    }

    .page-tt88casino__info-card-title {
      color: var(--page-tt88casino__primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-tt88casino__info-card-description {
      color: var(--page-tt88casino__secondary-color);
      font-size: 0.95em;
    }

    .page-tt88casino__faq-section {
      background-color: #0d0d0d;
      padding: 50px 20px;
      max-width: 1000px;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      text-align: left;
    }

    .page-tt88casino__faq-item {
      border-bottom: 1px solid #333;
      margin-bottom: 15px;
    }

    .page-tt88casino__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-tt88casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: var(--page-tt88casino__secondary-color);
      transition: color 0.3s ease;
    }

    .page-tt88casino__faq-question:hover {
      color: var(--page-tt88casino__primary-color);
    }

    .page-tt88casino__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
      flex-grow: 1;
      padding-right: 10px;
    }

    .page-tt88casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-tt88casino__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      min-width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-tt88casino__faq-item.active .page-tt88casino__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar visually */
    }

    .page-tt88casino__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;
      box-sizing: border-box;
    }

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

    .page-tt88casino__faq-answer p {
      margin: 0;
      font-size: 0.95em;
    }

    .page-tt88casino__legal-disclaimer {
      padding: 30px 20px;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 0.85em;
      color: #888;
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-tt88casino__hero-section {
        padding-top: 10px; /* Space for fixed header */
      }

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

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

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

      .page-tt88casino__section {
        padding: 30px 15px;
      }

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

      .page-tt88casino__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }

      .page-tt88casino__game-item {
        padding: 10px;
      }

      .page-tt88casino__game-image {
        max-width: 120px;
      }

      .page-tt88casino__game-title {
        font-size: 1em;
      }

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

      .page-tt88casino__faq-section {
        padding: 30px 15px;
        margin: 30px auto;
      }

      .page-tt88casino__faq-question h3 {
        font-size: 1em;
      }

      .page-tt88casino__faq-answer {
        padding: 0 10px;
      }

      .page-tt88casino__faq-item.active .page-tt88casino__faq-answer {
        padding: 15px 10px !important;
      }
      
      /* Ensure all images are responsive on mobile */
      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tt88casino__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-tt88casino__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-tt88casino__info-card-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-tt88casino__sticky-button-container {
        width: calc(100% - 40px); /* Adjust for padding on small screens */
      }
    }

    @media (max-width: 480px) {
      .page-tt88casino__hero-title {
        font-size: 1.8em;
      }
      .page-tt88casino__section-title {
        font-size: 1.6em;
      }
      .page-tt88casino__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-tt88casino__game-image {
        max-width: 100px;
      }
    }
  