
    /* CSS Styles for page-helo888 */
    :root {
      --page-helo888-primary-color: #e44d26; /* Vibrant orange/red for action */
      --page-helo888-secondary-color: #333; /* Dark for text */
      --page-helo888-accent-color: #f7b731; /* Gold/yellow for highlights */
      --page-helo888-background-light: #f5f5f5; /* Light background */
      --page-helo888-background-dark: #222; /* Dark background for sections */
      --page-helo888-text-light: #fff; /* Light text on dark background */
      --page-helo888-text-dark: #333; /* Dark text on light background */
      --page-helo888-border-radius: 8px;
      --page-helo888-spacing-unit: 16px;
    }

    .page-helo888 {
      font-family: 'Arial', sans-serif;
      color: var(--page-helo888-text-dark);
      line-height: 1.6;
      background-color: var(--page-helo888-background-light);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-helo888 a {
      color: var(--page-helo888-primary-color);
      text-decoration: none;
    }

    .page-helo888 a:hover {
      text-decoration: underline;
    }

    .page-helo888 .page-helo888-section {
      padding: var(--page-helo888-spacing-unit) 0;
      margin-bottom: var(--page-helo888-spacing-unit);
      text-align: center;
    }

    .page-helo888 .page-helo888-section-dark {
      background-color: var(--page-helo888-background-dark);
      color: var(--page-helo888-text-light);
    }
    .page-helo888 .page-helo888-section-dark h2 {
        color: var(--page-helo888-accent-color); /* Ensure contrast for H2 on dark background */
    }

    .page-helo888 .page-helo888-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--page-helo888-spacing-unit);
    }

    .page-helo888 .page-helo888-hero {
      position: relative;
      overflow: hidden;
      margin-bottom: 0;
      padding: 0;
    }

    .page-helo888 .page-helo888-hero img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 400px; /* Limit height for aesthetic */
    }

    .page-helo888 .page-helo888-hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      color: var(--page-helo888-text-light);
      padding: var(--page-helo888-spacing-unit);
      text-align: center;
    }

    .page-helo888 .page-helo888-hero h1 {
      font-size: 2em;
      margin-bottom: 10px;
      color: var(--page-helo888-accent-color);
    }

    .page-helo888 .page-helo888-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-helo888 .page-helo888-btn {
      display: inline-block;
      background-color: var(--page-helo888-primary-color);
      color: var(--page-helo888-text-light);
      padding: 12px 25px;
      border-radius: var(--page-helo888-border-radius);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-helo888 .page-helo888-btn:hover {
      background-color: #c73c1d;
      text-decoration: none;
      transform: translateY(-2px);
    }

    .page-helo888 .page-helo888-floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-helo888 .page-helo888-floating-buttons .page-helo888-btn {
      min-width: 150px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-helo888 .page-helo888-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-helo888-spacing-unit);
      padding: var(--page-helo888-spacing-unit);
    }

    .page-helo888 .page-helo888-grid-item {
      background-color: #fff;
      padding: var(--page-helo888-spacing-unit);
      border-radius: var(--page-helo888-border-radius);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .page-helo888 .page-helo888-section-dark .page-helo888-grid-item {
        background-color: #333; /* Darker background for items in dark sections */
        color: var(--page-helo888-text-light);
    }
    .page-helo888 .page-helo888-section-dark .page-helo888-grid-item h3 {
        color: var(--page-helo888-text-light);
    }


    .page-helo888 .page-helo888-grid-item img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .page-helo888 .page-helo888-grid-item h3 {
      font-size: 1.2em;
      margin-top: 0;
      color: var(--page-helo888-secondary-color);
    }

    .page-helo888 .page-helo888-game-category-item {
      background-color: var(--page-helo888-background-dark);
      color: var(--page-helo888-text-light);
      padding: var(--page-helo888-spacing-unit);
      border-radius: var(--page-helo888-border-radius);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .page-helo888 .page-helo888-game-category-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-helo888 .page-helo888-game-category-item img {
      max-width: 80px;
      height: auto;
      margin-bottom: 10px;
    }

    .page-helo888 .page-helo888-game-category-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: var(--page-helo888-text-light);
    }

    .page-helo888 .page-helo888-provider-logo,
    .page-helo888 .page-helo888-payment-logo {
      max-width: 100px;
      height: auto;
      margin: 5px auto; /* Centering logos */
      display: block;
    }
    .page-helo888 .page-helo888-payment-logo {
        max-width: 80px;
    }


    .page-helo888 h2 {
      font-size: 1.8em;
      color: var(--page-helo888-primary-color);
      margin-bottom: var(--page-helo888-spacing-unit);
    }

    .page-helo888 h3 {
      font-size: 1.3em;
      color: var(--page-helo888-secondary-color);
      margin-bottom: 10px;
    }

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

    .page-helo888 .page-helo888-list li {
      margin-bottom: 8px;
      position: relative;
      padding-left: 25px;
      color: inherit; /* Inherit color from parent section */
    }

    .page-helo888 .page-helo888-list li::before {
      content: '✔';
      color: var(--page-helo888-primary-color);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .page-helo888 .page-helo888-faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: var(--page-helo888-border-radius);
        margin-bottom: 10px;
        text-align: left;
        color: var(--page-helo888-text-dark);
    }

    .page-helo888 .page-helo888-faq-item summary {
        padding: 15px 20px;
        font-weight: bold;
        cursor: pointer;
        outline: none;
        color: var(--page-helo888-secondary-color);
        list-style: none; /* Hide default arrow */
        position: relative;
    }
    .page-helo888 .page-helo888-faq-item summary::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5em;
        transition: transform 0.2s ease;
    }
    .page-helo888 .page-helo888-faq-item[open] summary::after {
        content: '-';
        transform: translateY(-50%) rotate(0deg); /* No rotation needed for - */
    }

    .page-helo888 .page-helo888-faq-item p {
        padding: 0 20px 15px;
        margin: 0;
        color: var(--page-helo888-text-dark);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-helo888 .page-helo888-hero h1 {
        font-size: 3em;
      }
      .page-helo888 .page-helo888-hero p {
        font-size: 1.3em;
      }
      .page-helo888 .page-helo888-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-helo888 .page-helo888-floating-buttons {
        flex-direction: row;
        bottom: 20px;
        right: 20px;
        left: unset;
      }
    }
  