
    /* CSS styles for the one88 page */
    :root {
      --page-one88-primary: #0a1128; /* Dark blue */
      --page-one88-secondary: #001f54; /* Slightly lighter dark blue */
      --page-one88-accent: #fcd535; /* Gold/Yellow */
      --page-one88-text: #e0e0e0; /* Light gray for text */
      --page-one88-text-dark: #333333; /* Dark text for light backgrounds */
      --page-one88-danger: #dc3545; /* Red for emphasis */
      --page-one88-success: #28a745; /* Green for success */
      --page-one88-border-radius: 8px;
    }

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

    .page-one88 a {
      color: var(--page-one88-accent);
      text-decoration: none;
    }

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

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

    /* Hero Section */
    .page-one88-hero {
      text-align: center;
      padding: 20px 0;
      background-color: var(--page-one88-secondary);
      position: relative;
      overflow: hidden;
    }

    .page-one88-hero-banner {
      width: 100%;
      max-width: 100%; /* Ensures banner stays within bounds */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: var(--page-one88-border-radius);
      object-fit: cover; /* Ensures image covers area without distortion */
    }

    .page-one88-hero h1 {
      font-size: 2.2em;
      color: var(--page-one88-accent);
      margin-top: 15px;
      margin-bottom: 20px;
      padding: 0 10px;
    }

    .page-one88-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    /* Floating Buttons */
    .page-one88-floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      gap: 10px; /* Space between buttons */
    }

    .page-one88-btn {
      flex: 1; /* Make buttons take equal space */
      padding: 12px 15px;
      border: none;
      border-radius: var(--page-one88-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease;
      color: var(--page-one88-text-dark); /* Ensure dark text on light buttons */
      white-space: nowrap; /* Prevent text wrapping */
      overflow: hidden; /* Hide overflow if text is too long */
      text-overflow: ellipsis; /* Add ellipsis for overflow */
      max-width: 48%; /* Adjust for gap */
    }

    .page-one88-btn-register {
      background-color: var(--page-one88-accent);
      color: var(--page-one88-primary); /* Dark text on accent button */
    }

    .page-one88-btn-register:hover {
      background-color: #e6c229;
    }

    .page-one88-btn-login {
      background-color: var(--page-one88-success);
      color: white;
    }

    .page-one88-btn-login:hover {
      background-color: #218838;
    }

    /* Sections */
    .page-one88-section {
      padding: 30px 0;
      margin-bottom: 20px;
      background-color: var(--page-one88-primary);
      border-bottom: 1px solid var(--page-one88-secondary);
    }

    .page-one88-section:last-of-type {
      border-bottom: none;
    }

    .page-one88-section h2 {
      font-size: 1.8em;
      color: var(--page-one88-accent);
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-one88-section h3 {
      font-size: 1.4em;
      color: var(--page-one88-text);
      margin-top: 20px;
      margin-bottom: 15px;
      padding-left: 10px;
    }

    .page-one88-section p {
      margin-bottom: 15px;
      padding: 0 15px;
    }

    .page-one88-section ul {
      list-style-type: disc;
      margin-left: 25px;
      margin-bottom: 15px;
      padding: 0 15px;
    }

    .page-one88-section ul li {
      margin-bottom: 8px;
    }

    /* Game Categories/Products */
    .page-one88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-one88-game-card {
      background-color: var(--page-one88-secondary);
      border-radius: var(--page-one88-border-radius);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
    }

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

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

    .page-one88-game-card h4 {
      font-size: 1.1em;
      color: var(--page-one88-accent);
      margin: 10px 5px;
      flex-grow: 1; /* Allow title to take up available space */
    }

    .page-one88-game-card .page-one88-game-link {
      display: block;
      background-color: var(--page-one88-accent);
      color: var(--page-one88-primary);
      padding: 8px 0;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-decoration: none;
      border-bottom-left-radius: var(--page-one88-border-radius);
      border-bottom-right-radius: var(--page-one88-border-radius);
    }

    .page-one88-game-card .page-one88-game-link:hover {
      background-color: #e6c229;
      text-decoration: none;
    }

    /* Features/Benefits */
    .page-one88-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-one88-feature-item {
      background-color: var(--page-one88-secondary);
      padding: 20px;
      border-radius: var(--page-one88-border-radius);
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-one88-feature-item img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .page-one88-feature-item h3 {
      color: var(--page-one88-accent);
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .page-one88-feature-item p {
      color: var(--page-one88-text);
      padding: 0; /* Remove extra padding from general p rule */
    }

    /* App Download */
    .page-one88-app-download {
      text-align: center;
      background-color: var(--page-one88-secondary);
      padding: 40px 20px;
      border-radius: var(--page-one88-border-radius);
      margin: 0 15px;
    }

    .page-one88-app-download .qr-code {
      width: 150px;
      height: 150px;
      margin-bottom: 20px;
      border: 5px solid var(--page-one88-accent);
      border-radius: var(--page-one88-border-radius);
    }

    .page-one88-app-download .download-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .page-one88-app-download .download-buttons .page-one88-btn {
      width: 100%;
      max-width: 300px; /* Limit width on larger screens */
      margin: 0 auto;
      padding: 12px 20px;
      font-size: 1.1em;
      background-color: var(--page-one88-accent);
      color: var(--page-one88-primary);
    }

    .page-one88-app-download .download-buttons .page-one88-btn:hover {
      background-color: #e6c229;
    }

    /* FAQ */
    .page-one88-faq-item {
        background-color: var(--page-one88-secondary);
        border-radius: var(--page-one88-border-radius);
        margin-bottom: 15px;
        padding: 15px;
    }

    .page-one88-faq-item h3 {
        color: var(--page-one88-accent);
        margin-top: 0;
        margin-bottom: 10px;
        padding-left: 0;
    }

    .page-one88-faq-item p {
        padding: 0;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-one88-hero h1 {
        font-size: 3em;
      }
      .page-one88-section h2 {
        font-size: 2.5em;
      }
      .page-one88-floating-buttons {
        justify-content: center;
        gap: 20px;
        padding: 15px 0;
      }
      .page-one88-btn {
        max-width: 200px;
        font-size: 1.2em;
      }
      .page-one88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-one88-app-download .download-buttons {
        flex-direction: row;
        justify-content: center;
      }
      .page-one88-app-download .download-buttons .page-one88-btn {
        max-width: 200px;
      }
    }

    @media (min-width: 1024px) {
      .page-one88 .page-one88-container {
        padding: 20px;
      }
      .page-one88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
  