
    :root {
      --page-new88link-primary: #FFD700; /* Gold */
      --page-new88link-secondary: #000000; /* Black */
      --page-new88link-accent: #FF4500; /* OrangeRed */
      --page-new88link-background: #1a1a1a; /* Dark Grey */
      --page-new88link-text: #f0f0f0; /* Light Grey */
      --page-new88link-card-bg: #2a2a2a; /* Slightly lighter dark grey */
      --page-new88link-border: #444;
      --page-new88link-button-hover: #e6c200;
    }

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

    .page-new88link-section {
      padding: 20px 15px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-new88link-section-hero {
      text-align: center;
      padding: 0;
      background-color: var(--page-new88link-secondary);
      position: relative;
      overflow: hidden;
    }

    .page-new88link-hero-image {
      width: 100%;
      height: auto;
      max-height: 400px; /* Limit height on desktop */
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .page-new88link-hero-content {
      position: relative; /* Ensure content is above image if needed, though image is top */
      padding: 20px 15px;
      color: var(--page-new88link-text);
      background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    }

    .page-new88link-hero-content h1 {
      font-size: 1.8em;
      color: var(--page-new88link-primary);
      margin-bottom: 10px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    .page-new88link-hero-content p {
      font-size: 1em;
      margin-bottom: 20px;
    }

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

    .page-new88link-button:hover {
      background-color: var(--page-new88link-button-hover);
      color: var(--page-new88link-secondary);
    }

    .page-new88link-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-new88link-primary);
      color: var(--page-new88link-secondary);
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      z-index: 1000;
      white-space: nowrap;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-new88link-floating-button:hover {
      background-color: var(--page-new88link-button-hover);
      transform: translateX(-50%) translateY(-3px);
    }
    .page-new88link-floating-button .icon {
      margin-right: 8px;
      font-size: 1.2em;
    }

    .page-new88link h2 {
      font-size: 1.6em;
      color: var(--page-new88link-primary);
      text-align: center;
      margin-bottom: 25px;
      padding-top: 20px;
    }

    .page-new88link h3 {
      font-size: 1.3em;
      color: var(--page-new88link-primary);
      margin-bottom: 15px;
    }

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

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

    .page-new88link-card {
      background-color: var(--page-new88link-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-new88link-border);
    }

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

    .page-new88link-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-new88link-card-content {
      padding: 15px;
    }

    .page-new88link-card-content h3 {
      margin-top: 0;
      font-size: 1.2em;
      color: var(--page-new88link-primary);
      margin-bottom: 10px;
    }

    .page-new88link-card-content p {
      font-size: 0.9em;
      color: var(--page-new88link-text);
      margin-bottom: 15px;
    }

    .page-new88link-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

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

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

    .page-new88link-app-section {
      text-align: center;
    }

    .page-new88link-app-images {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .page-new88link-app-images img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      border: 1px solid var(--page-new88link-border);
      border-radius: 10px;
      padding: 10px;
      background-color: var(--page-new88link-card-bg);
    }

    .page-new88link-contact-info {
      text-align: center;
      margin-top: 30px;
    }

    .page-new88link-contact-info a {
      color: var(--page-new88link-primary);
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .page-new88link-contact-info a:hover {
      color: var(--page-new88link-accent);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-new88link-hero-content h1 {
        font-size: 2.5em;
      }
      .page-new88link-hero-content p {
        font-size: 1.1em;
      }
      .page-new88link h2 {
        font-size: 2em;
      }
      .page-new88link-section {
        padding: 40px 20px;
      }
      .page-new88link-floating-button {
        bottom: 30px;
        font-size: 1.2em;
        padding: 18px 35px;
      }
    }
  