
    /* CSS Styles for tydo88 page */
    .page-tydo88 {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
    }

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

    /* Hero Section */
    .page-tydo88__hero-section {
      position: relative;
      background-color: #0d47a1; /* Dark blue for a strong base */
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Spacing for fixed header */
      padding-bottom: 60px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-tydo88__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .page-tydo88__hero-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      opacity: 0.6; /* Slightly transparent to make text pop */
      filter: brightness(0.7); /* Darken image slightly */
      min-height: 300px; /* Ensure minimum height */
    }

    .page-tydo88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
      border-radius: 10px;
      margin-top: 50px; /* Push content down from top for better visual */
    }

    .page-tydo88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-tydo88__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 25px;
      color: #f0f8ff;
    }

    .page-tydo88__hero-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for urgency */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
    }

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

    /* Floating Promotion Button */
    .page-tydo88__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Matching hero button */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-tydo88__pulse 1.5s infinite;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-tydo88__floating-promo:hover {
      background-color: #e63900;
      transform: scale(1.05);
    }

    @keyframes page-tydo88__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Section Styling */
    .page-tydo88__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-tydo88__section-title {
      color: #0d47a1;
      font-size: 2.2em;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-tydo88__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-tydo88__text-content p {
      margin-bottom: 15px;
    }

    .page-tydo88__list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-tydo88__list-item {
      background-color: #f0f8ff;
      border-left: 5px solid #0d47a1;
      padding: 10px 15px;
      margin-bottom: 10px;
      border-radius: 4px;
      font-size: 1.05em;
      color: #333;
    }

    /* Game Categories */
    .page-tydo88__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tydo88__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-tydo88__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-tydo88__game-card-image {
      width: 100%;
      height: 200px; /* Min height 200px */
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%;
      height: auto; /* Ensure image scales responsively */
    }

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

    .page-tydo88__game-card-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tydo88__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-tydo88__game-card-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to bottom */
    }

    .page-tydo88__game-card-button:hover {
      background-color: #e63900;
    }

    /* Steps Section */
    .page-tydo88__steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-tydo88__step-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      border-bottom: 4px solid #0d47a1;
    }

    .page-tydo88__step-icon {
      width: 250px; /* Enforce min width */
      height: 150px; /* Enforce min height */
      margin: 0 auto 15px auto;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-tydo88__step-title {
      font-size: 1.3em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-tydo88__step-description {
      font-size: 1em;
      color: #666;
    }

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

    .page-tydo88__promo-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

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

    .page-tydo88__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-tydo88__promo-image {
      width: 100%;
      height: 220px; /* Min height 200px */
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-tydo88__promo-content {
      padding: 20px;
    }

    .page-tydo88__promo-title {
      font-size: 1.5em;
      color: #ff4500;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tydo88__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-tydo88__promo-button {
      display: inline-block;
      background-color: #0d47a1;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-tydo88__promo-button:hover {
      background-color: #0a3a82;
    }

    /* FAQ Section */
    .page-tydo88__faq-section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-tydo88__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-tydo88__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #f9f9f9;
    }

    .page-tydo88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0d47a1;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-tydo88__faq-question:hover {
      background-color: #0a3a82;
    }

    .page-tydo88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-tydo88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-tydo88__faq-item.active .page-tydo88__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-tydo88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #ffffff;
      color: #555;
      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-tydo88__faq-item.active .page-tydo88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-tydo88__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-tydo88__container {
        padding: 10px;
      }

      .page-tydo88__hero-section {
        padding-top: 10px; /* Spacing for fixed header on mobile */
        padding-bottom: 40px;
      }

      .page-tydo88__hero-content {
        margin-top: 30px;
      }

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

      .page-tydo88__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-tydo88__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }

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

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

      .page-tydo88__game-categories,
      .page-tydo88__steps,
      .page-tydo88__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tydo88__game-card-image-wrapper,
      .page-tydo88__promo-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-tydo88__game-card-image,
      .page-tydo88__promo-image,
      .page-tydo88__step-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-tydo88__step-icon {
        width: 100% !important;
        height: auto !important;
        max-height: 150px !important; /* Limit height on small screens */
      }

      .page-tydo88__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }

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

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

      .page-tydo88__faq-answer {
        padding: 15px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-tydo88__hero-title {
        font-size: 1.8em;
      }

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