
    /* CSS Reset for the main content to ensure consistency within its scope */
    .page-w88link * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .page-w88link {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f5f7fa;
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-w88link-hero {
      background-color: #001f3f; /* Dark blue */
      color: #ffffff;
      text-align: center;
      padding: 40px 15px 20px;
      position: relative;
      overflow: hidden;
    }

    .page-w88link-hero-banner {
      width: 100%;
      max-width: 800px; /* Ensures banner is centered and not too wide */
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-w88link-hero h1 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-w88link-hero p {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-w88link-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-Red */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-w88link-section {
      padding: 40px 0;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-w88link-section:nth-of-type(even) {
      background-color: #e6f7ff; /* Light blue for alternating sections */
    }

    .page-w88link-section h2 {
      font-size: 2em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-w88link-section h3 {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-w88link-section p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-w88link-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-w88link-list-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-w88link-list-item:hover {
      transform: translateY(-5px);
    }

    .page-w88link-list-item h3 {
      color: #001f3f;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-w88link-list-item p {
      font-size: 0.95em;
      color: #555;
      text-align: left;
    }

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

    .page-w88link-game-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none; /* For link cards */
      color: inherit;
      display: block;
    }

    .page-w88link-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-w88link-game-card h4 {
      font-size: 1.1em;
      color: #001f3f;
      padding: 10px;
      margin: 0;
      background-color: #f0f8ff;
      border-top: 1px solid #e0e0e0;
    }

    .page-w88link-game-card p {
        font-size: 0.85em;
        color: #666;
        padding: 0 10px 10px;
        margin: 0;
        text-align: center;
    }

    .page-w88link-faq-item {
      background-color: #f0f8ff;
      border: 1px solid #cceeff;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-w88link-faq-question {
      padding: 15px 20px;
      background-color: #e0f2ff;
      color: #001f3f;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-w88link-faq-question:hover {
      background-color: #cce0ff;
    }

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

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

    .page-w88link-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      background-color: #f9fcff;
    }

    .page-w88link-faq-answer.active {
      max-height: 200px; /* Adjust based on expected content height */
      padding: 15px 20px;
    }

    .page-w88link-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Orange-Red */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-w88link-floating-button:hover {
      background-color: #e03e00;
      transform: scale(1.05);
      animation: none;
    }

    .page-w88link-floating-button svg {
      width: 24px;
      height: 24px;
      fill: #ffffff;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-w88link-hero h1 {
        font-size: 1.8em;
      }
      .page-w88link-section h2 {
        font-size: 1.6em;
      }
      .page-w88link-list {
        grid-template-columns: 1fr;
      }
      .page-w88link-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-w88link-game-card img {
        height: 100px;
      }
      .page-w88link-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-w88link-hero h1 {
        font-size: 1.5em;
      }
      .page-w88link-section h2 {
        font-size: 1.4em;
      }
      .page-w88link-floating-button {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 10px;
        text-align: center;
        justify-content: center;
      }
    }
    
    /* Ensure link colors have good contrast */
    .page-w88link a {
        color: #007bff; /* A standard blue that usually has good contrast */
        text-decoration: none;
    }
    .page-w88link a:hover {
        text-decoration: underline;
        color: #0056b3;
    }
    .page-w88link-hero a {
        color: #ffd700; /* Gold for hero links */
    }
    .page-w88link-hero a:hover {
        color: #ffc107;
    }
  