
    :root {
      --page-taihitclub-primary-color: #e44d26; /* Cam đậm */
      --page-taihitclub-secondary-color: #f7a000; /* Vàng cam */
      --page-taihitclub-accent-color: #4CAF50; /* Xanh lá */
      --page-taihitclub-text-dark: #333;
      --page-taihitclub-text-light: #fff;
      --page-taihitclub-bg-light: #f9f9f9;
      --page-taihitclub-bg-dark: #2c3e50; /* Xám xanh đậm */
      --page-taihitclub-border-color: #ddd;
    }

    .page-taihitclub {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-taihitclub-text-dark);
      background-color: var(--page-taihitclub-bg-light);
      padding: 20px 0;
    }

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

    .page-taihitclub-hero {
      background: linear-gradient(135deg, var(--page-taihitclub-primary-color), var(--page-taihitclub-secondary-color));
      color: var(--page-taihitclub-text-light);
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .page-taihitclub-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-taihitclub-text-light);
      font-weight: bold;
    }

    .page-taihitclub-hero p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-taihitclub-btn {
      display: inline-block;
      background-color: var(--page-taihitclub-accent-color);
      color: var(--page-taihitclub-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin: 10px;
      border: none;
      cursor: pointer;
    }

    .page-taihitclub-btn:hover {
      background-color: #3e8e41;
      transform: translateY(-2px);
    }

    .page-taihitclub-section {
      background-color: var(--page-taihitclub-text-light);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

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

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

    .page-taihitclub-section h3 {
      color: var(--page-taihitclub-bg-dark);
      font-size: 1.5em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-taihitclub-section p {
      margin-bottom: 15px;
      color: var(--page-taihitclub-text-dark);
    }

    .page-taihitclub-section ul {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-taihitclub-section ol {
      list-style-type: decimal;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-taihitclub-section li {
      margin-bottom: 8px;
      color: var(--page-taihitclub-text-dark);
    }

    .page-taihitclub-image-wrapper {
      text-align: center;
      margin: 30px 0;
    }

    .page-taihitclub-image-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .page-taihitclub-card {
      background-color: #fefefe;
      border: 1px solid var(--page-taihitclub-border-color);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-taihitclub-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-taihitclub-card i {
      font-size: 3em;
      color: var(--page-taihitclub-primary-color);
      margin-bottom: 15px;
    }

    .page-taihitclub-card h3 {
      font-size: 1.4em;
      color: var(--page-taihitclub-bg-dark);
      margin-bottom: 10px;
    }

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

    .page-taihitclub-faq-item {
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-taihitclub-border-color);
      padding-bottom: 15px;
    }

    .page-taihitclub-faq-question {
      font-weight: bold;
      color: var(--page-taihitclub-primary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
    }

    .page-taihitclub-faq-question::after {
      content: '+';
      font-size: 1.2em;
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .page-taihitclub-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-taihitclub-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      padding-top: 0;
      color: var(--page-taihitclub-text-dark);
    }

    .page-taihitclub-faq-answer p {
      padding-top: 10px;
    }

    /* Floating Ad Menu */
    .page-taihitclub-floating-ad {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-taihitclub-primary-color);
      color: var(--page-taihitclub-text-light);
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .page-taihitclub-floating-ad p {
      margin: 0;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-taihitclub-floating-ad .page-taihitclub-btn {
      margin: 0;
      padding: 10px 20px;
      font-size: 1em;
      background-color: var(--page-taihitclub-accent-color);
    }

    .page-taihitclub-floating-ad .page-taihitclub-btn:hover {
      background-color: #3e8e41;
    }

    @media (max-width: 768px) {
      .page-taihitclub-hero h1 {
        font-size: 2em;
      }
      .page-taihitclub-hero p {
        font-size: 1em;
      }
      .page-taihitclub-section {
        padding: 20px;
      }
      .page-taihitclub-section h2 {
        font-size: 1.8em;
      }
      .page-taihitclub-grid {
        grid-template-columns: 1fr;
      }
      .page-taihitclub-floating-ad {
        bottom: 10px;
        right: 10px;
        padding: 10px;
      }
      .page-taihitclub-floating-ad p {
        font-size: 0.9em;
      }
      .page-taihitclub-floating-ad .page-taihitclub-btn {
        padding: 8px 15px;
        font-size: 0.9em;
      }
    }
  