
    :root {
      --page-five88-primary-bg: #0a0a0a;
      --page-five88-secondary-bg: #1a1a1a;
      --page-five88-text-color: #f0f0f0;
      --page-five88-accent-color: #FFD700; /* Gold */
      --page-five88-link-color: #87CEEB; /* Sky Blue */
      --page-five88-button-bg: #00BFFF; /* Deep Sky Blue */
      --page-five88-button-text: #ffffff;
      --page-five88-border-color: #333;
      --page-five88-shadow-color: rgba(0, 0, 0, 0.5);
    }

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

    .page-five88 a {
      color: var(--page-five88-link-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-five88 a:hover {
      color: var(--page-five88-accent-color);
      text-decoration: underline;
    }

    .page-five88 h1, .page-five88 h2, .page-five88 h3, .page-five88 h4 {
      color: var(--page-five88-accent-color);
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px var(--page-five88-shadow-color);
    }

    .page-five88 h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }

    .page-five88 h2 {
      font-size: 2em;
      border-bottom: 2px solid var(--page-five88-accent-color);
      padding-bottom: 10px;
      margin-top: 40px;
    }

    .page-five88 h3 {
      font-size: 1.5em;
      margin-top: 30px;
      color: var(--page-five88-button-bg);
    }

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

    .page-five88 .page-five88-hero {
      text-align: center;
      padding: 0;
      background-color: var(--page-five88-secondary-bg);
    }

    .page-five88-hero-banner {
      width: 100%;
      height: auto;
      max-height: 300px; /* Adjust as needed */
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .page-five88-hero-content {
      padding: 20px 15px;
    }

    .page-five88-button {
      display: inline-block;
      background-color: var(--page-five88-button-bg);
      color: var(--page-five88-button-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-transform: uppercase;
      font-weight: bold;
      margin-top: 20px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-five88-button:hover {
      background-color: #009ACD; /* Slightly darker deep sky blue */
      transform: translateY(-2px);
      text-decoration: none;
    }

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

    .page-five88-game-card {
      background-color: var(--page-five88-secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 4px 8px var(--page-five88-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-five88-border-color);
    }

    .page-five88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    }

    .page-five88-game-card img {
      width: 100%;
      max-width: 120px;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .page-five88-game-card h3 {
      font-size: 1.1em;
      margin: 0;
      color: var(--page-five88-text-color);
      text-shadow: none;
    }

    .page-five88-game-card h3 a {
      color: var(--page-five88-text-color);
    }

    .page-five88-game-card h3 a:hover {
      color: var(--page-five88-accent-color);
      text-decoration: none;
    }

    .page-five88-list {
      list-style-type: disc;
      padding-left: 20px;
      margin-top: 15px;
    }

    .page-five88-list li {
      margin-bottom: 10px;
    }

    .page-five88-fixed-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-five88-button-bg);
      color: var(--page-five88-button-text);
      padding: 15px 10px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 -2px 10px var(--page-five88-shadow-color);
      z-index: 1000;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .page-five88-fixed-button:hover {
      background-color: #009ACD;
      text-decoration: none;
    }

    .page-five88-fixed-button span {
      display: block;
      margin-top: 5px;
      font-size: 0.9em;
      opacity: 0.9;
    }

    .page-five88-article {
      background-color: var(--page-five88-secondary-bg);
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px var(--page-five88-shadow-color);
    }

    .page-five88-article p {
      margin-bottom: 10px;
    }

    .page-five88-article ul {
      list-style-type: square;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-five88-article img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 15px auto;
      border-radius: 8px;
    }

    .page-five88-provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-five88-provider-item {
      background-color: var(--page-five88-secondary-bg);
      padding: 10px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px var(--page-five88-shadow-color);
      font-weight: bold;
      color: var(--page-five88-text-color);
      border: 1px solid var(--page-five88-border-color);
    }

    .page-five88-payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-five88-payment-item {
      background-color: var(--page-five88-secondary-bg);
      padding: 10px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px var(--page-five88-shadow-color);
      font-weight: bold;
      color: var(--page-five88-text-color);
      border: 1px solid var(--page-five88-border-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-five88 h1 {
        font-size: 2em;
      }
      .page-five88 h2 {
        font-size: 1.6em;
      }
      .page-five88 h3 {
        font-size: 1.3em;
      }
      .page-five88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-five88-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-five88-fixed-button {
        font-size: 1em;
        padding: 12px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-five88 h1 {
        font-size: 1.8em;
      }
      .page-five88 h2 {
        font-size: 1.4em;
      }
      .page-five88-game-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-five88-hero-banner {
        max-height: 200px;
      }
    }
  