
    :root {
      --page-tyt88-primary-color: #e44d26; /* A vibrant orange/red, common in betting sites */
      --page-tyt88-secondary-color: #333;
      --page-tyt88-accent-color: #ffcc00; /* Gold/yellow for highlights */
      --page-tyt88-background-dark: #1a1a1a;
      --page-tyt88-background-light: #2a2a2a;
      --page-tyt88-text-color: #f0f0f0;
      --page-tyt88-text-dark: #333;
      --page-tyt88-border-color: #444;
      --page-tyt88-border-radius: 8px;
    }

    /* Base styles for the page container */
    .page-tyt88 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-tyt88-background-dark);
      color: var(--page-tyt88-text-color);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, body handles header offset */
    }

    /* Utility classes */
    .page-tyt88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    .page-tyt88__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-tyt88-border-color);
    }

    .page-tyt88__section:last-of-type {
      border-bottom: none;
    }

    .page-tyt88__heading-primary {
      font-size: 2.8em;
      color: var(--page-tyt88-accent-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-tyt88__heading-secondary {
      font-size: 2em;
      color: var(--page-tyt88-primary-color);
      margin-bottom: 15px;
      text-transform: uppercase;
      border-bottom: 2px solid var(--page-tyt88-accent-color);
      display: inline-block;
      padding-bottom: 5px;
    }

    .page-tyt88__text-center {
      text-align: center;
    }

    .page-tyt88__button {
      display: inline-block;
      background-color: var(--page-tyt88-primary-color);
      color: var(--page-tyt88-text-color);
      padding: 12px 25px;
      border-radius: var(--page-tyt88-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin: 10px;
    }

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

    /* Hero Section */
    .page-tyt88__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,online_casino,tyt88]') no-repeat center center/cover;
      padding: 80px 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      color: var(--page-tyt88-text-color);
      position: relative;
      border-radius: var(--page-tyt88-border-radius);
      overflow: hidden;
      margin: 0 15px 20px;
    }
    
    .page-tyt88__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-tyt88__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-tyt88-accent-color);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-tyt88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #fff;
    }

    /* Floating Buttons */
    .page-tyt88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-tyt88__floating-button {
      background-color: var(--page-tyt88-primary-color);
      color: var(--page-tyt88-text-color);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-tyt88__floating-button:hover {
      background-color: #f75d33;
      transform: scale(1.05);
    }
    
    /* Product Display */
    .page-tyt88__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-tyt88__product-card {
      background-color: var(--page-tyt88-background-light);
      border-radius: var(--page-tyt88-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      border: 1px solid var(--page-tyt88-border-color);
    }

    .page-tyt88__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-tyt88__product-title {
      font-size: 1.4em;
      color: var(--page-tyt88-primary-color);
      margin-bottom: 10px;
    }

    .page-tyt88__product-description {
      font-size: 0.95em;
      color: var(--page-tyt88-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-tyt88__promotion-item {
      background-color: var(--page-tyt88-background-light);
      border-radius: var(--page-tyt88-border-radius);
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      border: 1px solid var(--page-tyt88-border-color);
    }

    .page-tyt88__promotion-item h3 {
      color: var(--page-tyt88-accent-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-tyt88__promotion-item p {
      color: var(--page-tyt88-text-color);
      margin-bottom: 15px;
    }

    .page-tyt88__promotion-image {
      width: 100%;
      height: auto;
      border-radius: var(--page-tyt88-border-radius);
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Why Choose Us Section */
    .page-tyt88__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tyt88__feature-card {
      background-color: var(--page-tyt88-background-light);
      border-radius: var(--page-tyt88-border-radius);
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-tyt88-border-color);
    }

    .page-tyt88__feature-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      object-fit: contain;
      box-sizing: border-box;
      display: block;
      margin-left: auto;
      margin-right: auto;
      min-width: 200px;
      min-height: 200px;
    }

    .page-tyt88__feature-card h3 {
      color: var(--page-tyt88-primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-tyt88__feature-card p {
      color: var(--page-tyt88-text-color);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-tyt88__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-tyt88__faq-item {
      background-color: var(--page-tyt88-background-light);
      border-radius: var(--page-tyt88-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-tyt88-border-color);
    }

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

    .page-tyt88__faq-question:hover {
      background-color: #f75d33;
    }

    .page-tyt88__faq-question h3 {
      margin: 0;
      font-size: 1em;
      color: var(--page-tyt88-text-color);
      pointer-events: none;
    }

    .page-tyt88__faq-toggle {
      position: relative;
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }
    .page-tyt88__faq-toggle::before {
        content: '+';
        position: absolute;
    }
    .page-tyt88__faq-item.active .page-tyt88__faq-toggle::before {
        content: '−';
    }

    .page-tyt88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #3a3a3a;
      color: var(--page-tyt88-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-tyt88__faq-answer p {
      margin: 15px 0;
      font-size: 0.95em;
    }

    .page-tyt88__faq-item.active .page-tyt88__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Payment Methods & Game Providers */
    .page-tyt88__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
      align-items: center;
    }

    .page-tyt88__logo-item {
      background-color: var(--page-tyt88-background-light);
      border-radius: var(--page-tyt88-border-radius);
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      border: 1px solid var(--page-tyt88-border-color);
      transition: transform 0.2s ease;
    }
    .page-tyt88__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-tyt88__logo-image {
      max-width: 100%;
      max-height: 90px;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
      box-sizing: border-box;
    }


    /* Call to Action Section */
    .page-tyt88__cta-section {
      background-color: var(--page-tyt88-primary-color);
      padding: 50px 15px;
      border-radius: var(--page-tyt88-border-radius);
      margin: 20px 15px;
      color: var(--page-tyt88-text-color);
    }

    .page-tyt88__cta-section h2 {
      color: var(--page-tyt88-text-color);
      font-size: 2.5em;
      margin-bottom: 20px;
    }

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


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-tyt88__hero-title {
        font-size: 2.5em;
      }

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

      .page-tyt88__heading-primary {
        font-size: 2em;
      }

      .page-tyt88__heading-secondary {
        font-size: 1.6em;
      }

      .page-tyt88__section {
        padding: 30px 0;
      }

      .page-tyt88__product-grid,
      .page-tyt88__feature-grid,
      .page-tyt88__logo-grid {
        grid-template-columns: 1fr;
      }

      .page-tyt88__product-card,
      .page-tyt88__feature-card,
      .page-tyt88__promotion-item,
      .page-tyt88__faq-item,
      .page-tyt88__logo-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-tyt88__container {
        padding: 15px;
      }

      .page-tyt88__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      /* Image responsiveness for mobile */
      .page-tyt88__product-image,
      .page-tyt88__promotion-image,
      .page-tyt88__feature-image,
      .page-tyt88__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tyt88__product-image {
        height: 180px;
      }
      .page-tyt88__logo-item {
        height: 100px;
      }
    }

    /* Ensure good contrast */
    body {
      background-color: var(--page-tyt88-background-dark);
      color: var(--page-tyt88-text-color);
    }
    .page-tyt88__hero-title, .page-tyt88__hero-subtitle { color: #fff; }
    .page-tyt88__heading-primary { color: var(--page-tyt88-accent-color); }
    .page-tyt88__heading-secondary { color: var(--page-tyt88-primary-color); }
    .page-tyt88__button, .page-tyt88__floating-button { color: var(--page-tyt88-text-color); background-color: var(--page-tyt88-primary-color); }
    .page-tyt88__product-title, .page-tyt88__feature-card h3 { color: var(--page-tyt88-primary-color); }
    .page-tyt88__promotion-item h3 { color: var(--page-tyt88-accent-color); }
    .page-tyt88__faq-question { color: var(--page-tyt88-text-color); background-color: var(--page-tyt88-primary-color); }
    .page-tyt88__faq-answer { color: var(--page-tyt88-text-color); background-color: #3a3a3a; }
    .page-tyt88__cta-section { color: var(--page-tyt88-text-color); background-color: var(--page-tyt88-primary-color); }
    .page-tyt88__cta-section h2 { color: var(--page-tyt88-text-color); }

    /* Specific list item responsive requirements */
    .page-tyt88__faq-list, .page-tyt88__product-grid, .page-tyt88__feature-grid, .page-tyt88__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-tyt88__faq-item, .page-tyt88__product-card, .page-tyt88__feature-card, .page-tyt88__logo-item {
        box-sizing: border-box !important;
    }
    @media (max-width: 768px) {
        .page-tyt88__faq-item, .page-tyt88__product-card, .page-tyt88__feature-card, .page-tyt88__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
        .page-tyt88__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
        }
    }
  