
    :root {
      --page-888tg-primary-color: #e44d26; /* Orange-red for action */
      --page-888tg-secondary-color: #333; /* Dark grey for text */
      --page-888tg-accent-color: #007bff; /* Blue for highlights */
      --page-888tg-background-dark: #1a1a1a; /* Dark background */
      --page-888tg-background-light: #2c2c2c; /* Slightly lighter dark background */
      --page-888tg-text-light: #f0f0f0; /* Light text for dark background */
      --page-888tg-text-dark: #333; /* Dark text for light background */
      --page-888tg-border-color: #444;
      --page-888tg-button-hover: #ff6600;
    }

    .page-888tg {
      font-family: 'Arial', sans-serif;
      color: var(--page-888tg-text-light);
      background-color: var(--page-888tg-background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-888tg__hero-section {
      position: relative;
      width: 100%;
      height: 500px; /* Adjust height for mobile view */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, relying on body for main offset */
      box-sizing: border-box;
    }

    .page-888tg__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      padding: 20px;
      box-sizing: border-box;
    }

    .page-888tg__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
    }

    .page-888tg__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
    }

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

    .page-888tg__button {
      background-color: var(--page-888tg-primary-color);
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-888tg__button:hover {
      background-color: var(--page-888tg-button-hover);
      transform: translateY(-2px);
    }

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

    .page-888tg__section-title {
      font-size: 2.5em;
      color: var(--page-888tg-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-888tg__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-888tg__game-card {
      background-color: var(--page-888tg-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-888tg__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    }

    .page-888tg__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-888tg-primary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__game-description {
      font-size: 0.95em;
      color: var(--page-888tg-text-light);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__promotion-item {
      background-color: var(--page-888tg-background-light);
      border-left: 5px solid var(--page-888tg-primary-color);
      padding: 25px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-888tg__promotion-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__promotion-content h3 {
      color: var(--page-888tg-accent-color);
      margin-top: 0;
      font-size: 1.6em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__promotion-content p {
      color: var(--page-888tg-text-light);
      margin-bottom: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .page-888tg__feature-card {
      background-color: var(--page-888tg-background-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-888tg__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__feature-card h3 {
      color: var(--page-888tg-primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__feature-card p {
      color: var(--page-888tg-text-light);
      font-size: 0.95em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-888tg__logo-item {
      background-color: var(--page-888tg-background-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      max-width: 180px;
      box-sizing: border-box;
    }

    .page-888tg__logo-item img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(80%); /* Slight grayscale for consistency */
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-888tg__logo-item img:hover {
      filter: grayscale(0%);
    }

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

    .page-888tg__news-card {
      background-color: var(--page-888tg-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-888tg__news-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__news-content {
      padding: 20px;
      box-sizing: border-box;
    }

    .page-888tg__news-title {
      font-size: 1.4em;
      color: var(--page-888tg-accent-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__news-meta {
      font-size: 0.85em;
      color: #aaa;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__news-excerpt {
      font-size: 0.95em;
      color: var(--page-888tg-text-light);
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-888tg__faq-item {
      background-color: var(--page-888tg-background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-888tg__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-888tg-background-light);
      color: var(--page-888tg-text-light);
      border-bottom: 1px solid var(--page-888tg-border-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-888tg__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-888tg__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-888tg-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: calc(100% - 30px); /* Account for toggle icon */
      box-sizing: border-box;
    }

    .page-888tg__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-888tg-accent-color);
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-888tg__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;
      color: var(--page-888tg-text-light);
      background-color: #222;
      border-top: 1px solid var(--page-888tg-border-color);
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-888tg__hero-section {
        height: 400px;
      }

      .page-888tg__hero-title {
        font-size: 2.5em;
      }

      .page-888tg__hero-subtitle {
        font-size: 1.2em;
      }

      .page-888tg__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        justify-content: space-around;
        background-color: rgba(26, 26, 26, 0.95);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      }

      .page-888tg__button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-888tg__section {
        padding: 30px 15px;
      }

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

      .page-888tg__game-card, .page-888tg__feature-card, .page-888tg__news-card, .page-888tg__promotion-item, .page-888tg__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-888tg__game-categories-grid, .page-888tg__feature-grid, .page-888tg__news-grid, .page-888tg__payment-providers-grid {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-888tg__game-title, .page-888tg__game-description, .page-888tg__promotion-content h3, .page-888tg__promotion-content p, .page-888tg__feature-card h3, .page-888tg__feature-card p, .page-888tg__news-title, .page-888tg__news-meta, .page-888tg__news-excerpt, .page-888tg__faq-question h3, .page-888tg__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-888tg__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-888tg__promotion-icon {
        margin-bottom: 10px;
      }

      .page-888tg__faq-question h3 {
        font-size: 1.1em;
      }

      .page-888tg__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-888tg__hero-section {
        height: 350px;
      }

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

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

      .page-888tg__button {
        padding: 8px 10px;
        font-size: 0.9em;
      }

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

      .page-888tg__game-image {
        height: 180px;
      }
    }
  