
    :root {
      --page-tt88login__primary-color: #007bff;
      --page-tt88login__secondary-color: #6c757d;
      --page-tt88login__accent-color: #ffc107;
      --page-tt88login__text-color: #333;
      --page-tt88login__background-color: #f8f9fa;
      --page-tt88login__white: #ffffff;
      --page-tt88login__dark-grey: #212529;
      --page-tt88login__light-grey: #e9ecef;
    }

    .page-tt88login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-tt88login__text-color);
      background-color: var(--page-tt88login__background-color);
      padding-bottom: 80px; /* Space for sticky button */
    }

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

    .page-tt88login__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-tt88login__section--light {
      background-color: var(--page-tt88login__white);
    }

    .page-tt88login__section--dark {
      background-color: var(--page-tt88login__dark-grey);
      color: var(--page-tt88login__white);
    }

    .page-tt88login__section--dark h2,
    .page-tt88login__section--dark h3,
    .page-tt88login__section--dark p {
      color: var(--page-tt88login__white);
    }

    .page-tt88login__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px; /* Adjusted padding-top for fixed header */
      background: linear-gradient(135deg, var(--page-tt88login__primary-color), #0056b3);
      color: var(--page-tt88login__white);
      text-align: center;
    }

    .page-tt88login__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-tt88login__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .page-tt88login__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      line-height: 1.2;
      color: var(--page-tt88login__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-tt88login__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-tt88login__white);
    }

    .page-tt88login__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-tt88login__accent-color);
      color: var(--page-tt88login__dark-grey);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-tt88login__button:hover {
      background-color: #ffda6a;
      transform: translateY(-2px);
    }

    .page-tt88login__sticky-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-tt88login__primary-color);
      padding: 15px 0;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-tt88login__sticky-button .page-tt88login__button {
      background-color: var(--page-tt88login__accent-color);
      color: var(--page-tt88login__dark-grey);
      font-size: 1.2em;
      padding: 15px 40px;
      width: calc(100% - 30px);
      max-width: 400px;
    }

    .page-tt88login__sticky-button .page-tt88login__button:hover {
      background-color: #ffda6a;
    }

    .page-tt88login__title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-tt88login__primary-color);
    }

    .page-tt88login__subtitle {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-tt88login__secondary-color);
    }

    .page-tt88login__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

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

    .page-tt88login__game-card {
      background-color: var(--page-tt88login__white);
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-tt88login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

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

    .page-tt88login__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-tt88login__game-card-description {
      font-size: 0.95em;
      color: var(--page-tt88login__secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-tt88login__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-tt88login__step-item {
      background-color: var(--page-tt88login__white);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-tt88login__step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background-color: var(--page-tt88login__primary-color);
      color: var(--page-tt88login__white);
      border-radius: 50%;
      font-size: 1.5em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-tt88login__step-content h3 {
      font-size: 1.3em;
      color: var(--page-tt88login__primary-color);
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-tt88login__step-content p {
      font-size: 1em;
      color: var(--page-tt88login__text-color);
      margin-bottom: 0;
    }

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

    .page-tt88login__promo-card {
      background-color: var(--page-tt88login__white);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      height: 100%;
    }

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

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

    .page-tt88login__promo-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-tt88login__promo-card-title {
      font-size: 1.5em;
      color: var(--page-tt88login__primary-color);
      margin-bottom: 10px;
    }

    .page-tt88login__promo-card-description {
      font-size: 1em;
      color: var(--page-tt88login__secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-tt88login__faq-section {
      background-color: var(--page-tt88login__light-grey);
      padding: 60px 0;
    }

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

    .page-tt88login__faq-item {
      background-color: var(--page-tt88login__white);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-tt88login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-tt88login__primary-color);
      color: var(--page-tt88login__white);
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-tt88login__faq-question:hover {
      background-color: #0056b3;
    }

    .page-tt88login__faq-question h3 {
      margin: 0;
      color: var(--page-tt88login__white);
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
      text-align: left;
    }

    .page-tt88login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      transition: transform 0.3s ease;
    }

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

    .page-tt88login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-tt88login__white);
      color: var(--page-tt88login__text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-tt88login__faq-answer p {
      margin-top: 0;
      margin-bottom: 0;
      font-size: 1em;
      line-height: 1.6;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-tt88login__hero-section {
        padding-top: 10px; /* Adjusted padding-top for fixed header on mobile */
      }

      .page-tt88login__hero-content h1 {
        font-size: 2em;
      }

      .page-tt88login__hero-content p {
        font-size: 1em;
      }

      .page-tt88login__title {
        font-size: 1.8em;
      }

      .page-tt88login__subtitle {
        font-size: 1.2em;
      }

      .page-tt88login__text {
        font-size: 0.95em;
        padding: 0 10px;
      }

      .page-tt88login__game-card-title,
      .page-tt88login__promo-card-title {
        font-size: 1.2em;
      }

      .page-tt88login__game-card-description,
      .page-tt88login__promo-card-description {
        font-size: 0.9em;
      }

      .page-tt88login__steps-list,
      .page-tt88login__faq-list {
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tt88login__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tt88login__step-content h3 {
        text-align: center;
      }
      .page-tt88login__step-content p {
        text-align: left;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-tt88login__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-tt88login__faq-answer {
        padding: 0 15px;
      }

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

    /* Ensure all images are responsive */
    .page-tt88login img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
      display: block; /* Remove extra space below images */
    }

    /* Container for images to prevent overflow */
    .page-tt88login__image-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
      margin-bottom: 15px; /* Add some space below images */
    }
  