
    /* CSS cho trang typhu88 */
    :root {
      --page-typhu88-primary-color: #007bff; /* Màu xanh dương */
      --page-typhu88-secondary-color: #28a745; /* Màu xanh lá */
      --page-typhu88-accent-color: #ffc107; /* Màu vàng */
      --page-typhu88-text-color: #343a40; /* Màu chữ tối */
      --page-typhu88-light-bg: #f8f9fa; /* Nền sáng */
      --page-typhu88-dark-bg: #e9ecef; /* Nền tối nhẹ */
      --page-typhu88-white: #ffffff;
      --page-typhu88-border-color: #dee2e6;
    }

    .page-typhu88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-typhu88-text-color);
      background-color: var(--page-typhu88-light-bg);
      padding: 20px 0;
    }

    .page-typhu88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-typhu88-hero {
      background: linear-gradient(135deg, var(--page-typhu88-primary-color) 0%, #0056b3 100%);
      color: var(--page-typhu88-white);
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-typhu88-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-typhu88-white);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-typhu88-hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-typhu88-btn {
      display: inline-block;
      background-color: var(--page-typhu88-accent-color);
      color: var(--page-typhu88-text-color);
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-typhu88-btn:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-typhu88-section {
      background-color: var(--page-typhu88-white);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-typhu88-section h2 {
      color: var(--page-typhu88-primary-color);
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-typhu88-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-typhu88-accent-color);
      border-radius: 2px;
    }

    .page-typhu88-section h3 {
      color: var(--page-typhu88-secondary-color);
      font-size: 1.6em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

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

    .page-typhu88-card {
      background-color: var(--page-typhu88-light-bg);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-typhu88-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-typhu88-card img {
      max-width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-typhu88-card h4 {
      font-size: 1.4em;
      color: var(--page-typhu88-primary-color);
      margin-bottom: 10px;
    }

    .page-typhu88-card p {
      font-size: 0.95em;
      color: var(--page-typhu88-text-color);
      flex-grow: 1;
    }

    .page-typhu88-list {
      list-style: none;
      padding-left: 0;
    }

    .page-typhu88-list li {
      background-color: var(--page-typhu88-dark-bg);
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-typhu88-list li::before {
      content: '✔';
      color: var(--page-typhu88-secondary-color);
      margin-right: 10px;
      font-weight: bold;
    }

    .page-typhu88-cta-banner {
      background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
      color: var(--page-typhu88-white);
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-typhu88-cta-banner h2 {
      color: var(--page-typhu88-white);
      margin-bottom: 20px;
      font-size: 2.2em;
    }

    .page-typhu88-cta-banner h2::after {
      background-color: var(--page-typhu88-accent-color);
    }

    .page-typhu88-faq-item {
      margin-bottom: 20px;
      border: 1px solid var(--page-typhu88-border-color);
      border-radius: 5px;
      overflow: hidden;
    }

    .page-typhu88-faq-question {
      background-color: var(--page-typhu88-dark-bg);
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-typhu88-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-typhu88-faq-question:hover {
      background-color: #d8e1e8;
    }

    .page-typhu88-faq-question span {
      font-size: 1.2em;
    }

    .page-typhu88-faq-answer {
      padding: 15px 20px;
      background-color: var(--page-typhu88-white);
      display: none;
      border-top: 1px solid var(--page-typhu88-border-color);
    }

    .page-typhu88-floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-typhu88-secondary-color);
      color: var(--page-typhu88-white);
      padding: 12px 20px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s ease;
    }

    .page-typhu88-floating-promo:hover {
      transform: scale(1.05);
    }

    .page-typhu88-floating-promo img {
      width: 24px;
      height: 24px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-typhu88-hero h1 {
        font-size: 2em;
      }
      .page-typhu88-hero p {
        font-size: 1em;
      }
      .page-typhu88-section {
        padding: 25px;
      }
      .page-typhu88-section h2 {
        font-size: 1.8em;
      }
      .page-typhu88-grid {
        grid-template-columns: 1fr;
      }
      .page-typhu88-floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  