
    /* Base styles */
    .page-tt88nohugame {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #ffffff; /* White text */
      line-height: 1.6;
      padding-bottom: 20px; /* Space for footer */
    }

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

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

    .page-tt88nohugame__heading {
      color: #ffd700; /* Yellow for headings */
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-tt88nohugame__subheading {
      color: #ffd700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-tt88nohugame__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ffffff;
    }

    /* Hero Section */
    .page-tt88nohugame__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Desktop clearance for fixed header */
      padding-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-tt88nohugame__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for text */
      border-radius: 8px;
      margin-top: 20px; /* Space below image */
      max-width: 800px;
      box-sizing: border-box;
    }

    .page-tt88nohugame__hero-title {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 10px;
      line-height: 1.2;
    }

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

    .page-tt88nohugame__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Promotion Banner */
    .page-tt88nohugame__promo-banner {
      background-color: #333333; /* Dark grey for promo */
      padding: 30px 20px;
      margin: 40px 0;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-tt88nohugame__promo-title {
      font-size: 2.2em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-tt88nohugame__promo-text {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 20px;
    }

    /* Game Categories */
    .page-tt88nohugame__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-tt88nohugame__game-card {
      background-color: #1a1a1a; /* Darker grey for cards */
      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-bottom: 20px;
    }

    .page-tt88nohugame__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-tt88nohugame__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-tt88nohugame__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 15px 10px 10px;
    }

    .page-tt88nohugame__game-card-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Features Section */
    .page-tt88nohugame__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 20px 0;
      margin: 0;
    }

    .page-tt88nohugame__feature-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      border-left: 5px solid #ffd700;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-tt88nohugame__feature-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-tt88nohugame__feature-description {
      color: #ffffff;
      font-size: 1em;
    }

    /* How To Play Section */
    .page-tt88nohugame__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px 0;
      list-style: none;
      margin: 0;
    }

    .page-tt88nohugame__step-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      flex: 1 1 calc(33% - 20px); /* Three columns on desktop */
      min-width: 280px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-tt88nohugame__step-number {
      font-size: 2.5em;
      color: #ffd700;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-tt88nohugame__step-title {
      color: #ffd700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-tt88nohugame__step-description {
      color: #ffffff;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-tt88nohugame__faq-section {
      text-align: left;
    }

    .page-tt88nohugame__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

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

    .page-tt88nohugame__faq-question:hover {
      background-color: #444444;
    }

    .page-tt88nohugame__faq-question h3 {
      margin: 0;
      color: #ffd700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-tt88nohugame__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-tt88nohugame__faq-item.active .page-tt88nohugame__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    
    .page-tt88nohugame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      color: #cccccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-tt88nohugame__hero-section {
        padding-top: 10px; /* Mobile clearance for fixed header */
      }
      .page-tt88nohugame__hero-title {
        font-size: 2.2em;
      }
      .page-tt88nohugame__hero-description {
        font-size: 1em;
      }
      .page-tt88nohugame__heading {
        font-size: 2em;
      }
      .page-tt88nohugame__subheading {
        font-size: 1.5em;
      }
      .page-tt88nohugame__text {
        font-size: 0.95em;
      }
      .page-tt88nohugame__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-tt88nohugame__promo-title {
        font-size: 1.8em;
      }
      .page-tt88nohugame__promo-text {
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-tt88nohugame__game-categories,
      .page-tt88nohugame__features-list,
      .page-tt88nohugame__steps-list {
        grid-template-columns: 1fr; /* Single column for all grids */
        gap: 15px;
        padding: 10px 0;
      }

      .page-tt88nohugame__game-card,
      .page-tt88nohugame__feature-item,
      .page-tt88nohugame__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-tt88nohugame__game-card-image {
        height: 180px; /* Adjust image height for mobile */
      }

      .page-tt88nohugame__faq-question {
        font-size: 1.1em;
        padding: 15px 18px;
      }
      .page-tt88nohugame__faq-question h3 {
        font-size: 1.1em;
      }
      .page-tt88nohugame__faq-answer {
        padding: 15px 18px !important; /* Adjust padding for mobile */
      }
    }

    /* Image responsive and style requirements */
    .page-tt88nohugame img {
      max-width: 100% !important;
      height: auto !important;
      display: block;
      box-sizing: border-box !important;
      border: none; /* Ensure no unwanted borders */
      /* No filter properties to change color */
    }
    .page-tt88nohugame__image-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden;
      box-sizing: border-box !important;
      margin: 0 auto; /* Center images */
    }

  