
    :root {
      --page-taihitclub-primary-bg: #1a1a2e; /* Dark blue/purple */
      --page-taihitclub-secondary-bg: #2e2e4a; /* Slightly lighter dark blue */
      --page-taihitclub-text-color: #e0e0e0; /* Light grey */
      --page-taihitclub-accent-color: #ffcc00; /* Gold/Yellow */
      --page-taihitclub-button-hover: #e6b800; /* Darker gold */
      --page-taihitclub-border-color: #4a4a6e; /* Muted border */
      --page-taihitclub-safe-zone: 160px; /* For header overlap */
    }

    .page-taihitclub {
      font-family: 'Arial', sans-serif;
      color: var(--page-taihitclub-text-color);
      background-color: var(--page-taihitclub-primary-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating footer/button if any */
    }

    .page-taihitclub-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-taihitclub-primary-bg);
      border-radius: 8px;
      text-align: center;
    }
    
    .page-taihitclub-section:nth-child(even) {
      background-color: var(--page-taihitclub-secondary-bg);
    }

    .page-taihitclub-h1, .page-taihitclub-h2, .page-taihitclub-h3 {
      color: var(--page-taihitclub-accent-color);
      margin-bottom: 15px;
      text-align: center;
      font-weight: bold;
    }

    .page-taihitclub-h1 {
      font-size: 2.2em;
      padding-top: var(--page-taihitclub-safe-zone); /* Safety zone for header */
      margin-top: -var(--page-taihitclub-safe-zone); /* Pull h1 up to make space for safe zone */
      padding-bottom: 10px;
    }
    .page-taihitclub-h2 {
      font-size: 1.8em;
      margin-top: 30px;
    }
    .page-taihitclub-h3 {
      font-size: 1.4em;
    }

    .page-taihitclub-paragraph {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-taihitclub-button {
      display: inline-block;
      background-color: var(--page-taihitclub-accent-color);
      color: var(--page-taihitclub-primary-bg);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-taihitclub-button:hover {
      background-color: var(--page-taihitclub-button-hover);
      color: var(--page-taihitclub-primary-bg); /* Ensure contrast */
    }

    .page-taihitclub-hero {
      position: relative;
      text-align: center;
      padding-bottom: 20px;
      background-color: var(--page-taihitclub-primary-bg);
    }

    .page-taihitclub-hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: contain; /* Ensure image keeps its aspect ratio */
      padding-top: var(--page-taihitclub-safe-zone); /* Push image down to respect safe zone */
    }

    .page-taihitclub-hero-content {
      padding: 10px 15px;
      margin-top: -50px; /* Overlap image slightly for better flow */
      position: relative;
      z-index: 1;
      background: linear-gradient(to top, var(--page-taihitclub-primary-bg) 50%, transparent 100%);
      padding-bottom: 20px;
    }

    .page-taihitclub-hero-content .page-taihitclub-h1 {
      font-size: 1.8em;
      margin-bottom: 10px;
      padding-top: 0; /* Already accounted for by hero-image */
      margin-top: 0;
    }

    .page-taihitclub-hero-content .page-taihitclub-paragraph {
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-taihitclub-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-taihitclub-pulse 2s infinite;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

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

    .page-taihitclub-game-grid, .page-taihitclub-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 15px;
      padding: 15px 0;
      justify-content: center;
    }

    .page-taihitclub-game-card, .page-taihitclub-provider-logo {
      background-color: var(--page-taihitclub-primary-bg);
      border: 1px solid var(--page-taihitclub-border-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-taihitclub-game-card img, .page-taihitclub-provider-logo img {
      max-width: 100%;
      height: 80px; /* Fixed height for logos */
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-taihitclub-game-card a, .page-taihitclub-provider-logo a {
      text-decoration: none;
      color: var(--page-taihitclub-text-color);
      font-weight: bold;
      font-size: 0.9em;
      display: block; /* Make the whole card clickable for game cards */
      padding-top: 5px;
    }
    
    .page-taihitclub-game-card a:hover {
        color: var(--page-taihitclub-accent-color);
    }

    .page-taihitclub-provider-logo a {
        padding-top: 0;
        font-size: 0.8em;
    }

    .page-taihitclub-list {
      list-style: none;
      padding: 0;
      margin: 0 auto 20px auto;
      max-width: 600px;
      text-align: left;
    }

    .page-taihitclub-list li {
      background-color: var(--page-taihitclub-primary-bg);
      border: 1px solid var(--page-taihitclub-border-color);
      margin-bottom: 10px;
      padding: 10px 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
    }

    .page-taihitclub-list li strong {
      color: var(--page-taihitclub-accent-color);
      margin-right: 10px;
      font-size: 1.1em;
    }
    
    .page-taihitclub-faq-item {
        margin-bottom: 15px;
        border: 1px solid var(--page-taihitclub-border-color);
        border-radius: 8px;
        overflow: hidden;
        background-color: var(--page-taihitclub-primary-bg);
    }

    .page-taihitclub-faq-question {
        background-color: var(--page-taihitclub-secondary-bg);
        padding: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: var(--page-taihitclub-accent-color);
        font-size: 1.1em;
    }

    .page-taihitclub-faq-question::after {
        content: '+';
        font-size: 1.5em;
        transition: transform 0.3s ease;
    }

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

    .page-taihitclub-faq-answer {
        padding: 15px;
        background-color: var(--page-taihitclub-primary-bg);
        display: none;
        text-align: left;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-taihitclub-section {
        padding: 30px 40px;
      }
      .page-taihitclub-h1 {
        font-size: 3em;
      }
      .page-taihitclub-h2 {
        font-size: 2.2em;
      }
      .page-taihitclub-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        max-width: 1000px;
        margin: 0 auto;
      }
      .page-taihitclub-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
      }
      .page-taihitclub-hero-content .page-taihitclub-h1 {
        font-size: 2.5em;
      }
      .page-taihitclub-hero-image {
        max-height: 500px; /* Limit height on desktop */
      }
      .page-taihitclub-floating-button {
        bottom: 30px;
        right: 30px;
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }
  