
    :root {
      --page-helo88-primary-bg: #1a1a2e;
      --page-helo88-secondary-bg: #16213e;
      --page-helo88-accent-color: #e94560;
      --page-helo88-text-color: #e0e0e0;
      --page-helo88-heading-color: #ffffff;
      --page-helo88-button-bg: #0f3460;
      --page-helo88-button-hover-bg: #0a2342;
      --page-helo88-border-color: #0d1b2a;
      --page-helo88-card-bg: #0d1b2a;
      --page-helo88-footer-height: 50px; /* Placeholder for shared footer height */
    }

    .page-helo88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-helo88-text-color);
      background-color: var(--page-helo88-primary-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-helo88-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-helo88-secondary-bg);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-helo88-section h1,
    .page-helo88-section h2,
    .page-helo88-section h3 {
      color: var(--page-helo88-heading-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-helo88-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

    .page-helo88-button:hover {
      background-color: #d63d55;
      transform: translateY(-2px);
    }

    .page-helo88-floating-button {
      position: fixed;
      bottom: calc(20px + var(--page-helo88-footer-height)); /* Adjust for footer height */
      right: 20px;
      z-index: 1000;
      background-color: var(--page-helo88-button-bg);
      color: var(--page-helo88-heading-color);
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      animation: page-helo88-pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      line-height: 1.2;
      font-size: 1.1em;
    }

    .page-helo88-floating-button span {
      display: block;
      font-size: 0.8em;
      opacity: 0.9;
    }

    .page-helo88-floating-button:hover {
      background-color: var(--page-helo88-button-hover-bg);
      animation: none;
    }

    @keyframes page-helo88-pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(15, 52, 96, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(15, 52, 96, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(15, 52, 96, 0);
      }
    }

    .page-helo88-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
      justify-content: center;
    }

    .page-helo88-card {
      background-color: var(--page-helo88-card-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-helo88-card:hover {
      transform: translateY(-5px);
    }

    .page-helo88-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-helo88-card h3 {
      font-size: 1.1em;
      margin-bottom: 5px;
      color: var(--page-helo88-heading-color);
    }

    .page-helo88-card p {
      font-size: 0.9em;
      color: var(--page-helo88-text-color);
    }

    .page-helo88-game-card {
      background-color: var(--page-helo88-card-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-helo88-game-card:hover {
      transform: translateY(-5px);
    }

    .page-helo88-game-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      display: block;
    }

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

    .page-helo88-game-card h3 {
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-helo88-heading-color);
    }

    .page-helo88-game-card p {
      font-size: 0.9em;
      line-height: 1.5;
      color: var(--page-helo88-text-color);
      margin-bottom: 15px;
    }

    .page-helo88-game-card a {
      display: inline-block;
      padding: 8px 15px;
      background-color: var(--page-helo88-accent-color);
      color: var(--page-helo88-heading-color);
      text-decoration: none;
      border-radius: 25px;
      font-size: 0.9em;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-helo88-game-card a:hover {
      background-color: #d63d55;
    }

    .page-helo88-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-helo88-list li {
      background-color: var(--page-helo88-card-bg);
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    .page-helo88-list li::before {
      content: '✔';
      color: var(--page-helo88-accent-color);
      font-weight: bold;
      margin-right: 5px;
    }

    .page-helo88-promo-badge {
      display: inline-block;
      background-color: #00b894;
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.8em;
      margin-left: 10px;
      font-weight: bold;
    }

    @media (min-width: 768px) {
      .page-helo88-section {
        padding: 30px;
      }

      .page-helo88-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

      .page-helo88-game-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-helo88-floating-button {
        bottom: calc(30px + var(--page-helo88-footer-height));
        right: 30px;
        font-size: 1.2em;
        padding: 18px 25px;
      }
    }

    @media (min-width: 1024px) {
      .page-helo88-section {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      .page-helo88-game-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  