
    /* CSS Styles for pg99 page */
    :root {
      --page-pg99-primary-bg: #1a1a2e; /* Dark blue/purple */
      --page-pg99-secondary-bg: #0d1b2a; /* Even darker blue */
      --page-pg99-text-color: #e0e0e0; /* Light grey */
      --page-pg99-highlight-color: #FFD700; /* Gold/Yellow */
      --page-pg99-accent-color: #28a745; /* Green for success/CTA */
      --page-pg99-border-color: #333;
      --page-pg99-card-bg: #2b2b40;
      --page-pg99-button-text: #1a1a2e;
      --page-pg99-link-color: #90caf9; /* Light blue for links */
      --page-pg99-hover-color: #ffffff;
    }

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

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

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

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

    /* Hero Section */
    .page-pg99 .hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: var(--page-pg99-secondary-bg);
      padding-bottom: 20px; /* Space below banner */
    }

    .page-pg99 .hero-banner-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers area without distortion */
      max-height: 400px; /* Limit height for desktop */
      margin: 0 auto; /* Center the banner image */
    }

    .page-pg99 .hero-content {
      text-align: center;
      padding: 20px 15px;
    }

    .page-pg99 .hero-content h1 {
      font-size: 2.2em;
      color: var(--page-pg99-highlight-color);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-pg99 .hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-pg99 .floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-pg99-accent-color);
      color: var(--page-pg99-button-text);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      max-width: 90%; /* Ensure it fits on smaller screens */
    }

    .page-pg99 .floating-login-button:hover {
      background-color: #38c156; /* Lighter green on hover */
      transform: translateX(-50%) translateY(-5px);
    }

    /* Section Styling */
    .page-pg99 .section {
      padding: 40px 0;
      border-bottom: 1px solid var(--page-pg99-border-color);
    }

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

    .page-pg99 .section-title {
      text-align: center;
      font-size: 2em;
      color: var(--page-pg99-highlight-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    /* Game Cards / Product Display */
    .page-pg99 .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-pg99 .game-card {
      background-color: var(--page-pg99-card-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center; /* Center content inside card */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Center items vertically */
      padding-bottom: 15px;
    }

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

    .page-pg99 .game-card-image {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover; /* Ensures image fills the area */
      display: block;
      margin-bottom: 10px;
    }
    
    .page-pg99 .game-card h3 {
      font-size: 1.1em;
      color: var(--page-pg99-highlight-color);
      margin-bottom: 5px;
      padding: 0 10px;
    }

    .page-pg99 .game-card p {
      font-size: 0.9em;
      color: #ccc;
      padding: 0 10px;
    }

    /* Promotions Section */
    .page-pg99 .promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-pg99 .promo-list li {
      background-color: var(--page-pg99-card-bg);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .page-pg99 .promo-list li strong {
        color: var(--page-pg99-highlight-color);
    }
    .page-pg99 .promo-icon {
        font-size: 1.8em;
        color: var(--page-pg99-accent-color);
        flex-shrink: 0; /* Prevent icon from shrinking */
    }

    /* How-to / FAQ Sections */
    .page-pg99 .steps-list,
    .page-pg99 .faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-pg99 .steps-list li,
    .page-pg99 .faq-list li {
      background-color: var(--page-pg99-card-bg);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-pg99 .steps-list li h3,
    .page-pg99 .faq-list li h3 {
      color: var(--page-pg99-highlight-color);
      font-size: 1.1em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-pg99 .faq-list li p {
        font-size: 0.95em;
        color: #ccc;
    }

    /* General Text */
    .page-pg99 p {
      margin-bottom: 1em;
    }

    .page-pg99 ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 1em;
    }
    .page-pg99 ul li {
        margin-bottom: 0.5em;
    }

    .page-pg99 strong {
      color: var(--page-pg99-highlight-color);
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-pg99 .hero-content h1 {
        font-size: 3em;
      }
      .page-pg99 .hero-content p {
        font-size: 1.2em;
      }
      .page-pg99 .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-pg99 .game-card-image {
        height: 150px;
      }
      .page-pg99 .floating-login-button {
          padding: 18px 40px;
          font-size: 1.3em;
          bottom: 30px;
      }
    }

    @media (min-width: 1024px) {
      .page-pg99 .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      .page-pg99 .game-card-image {
        height: 180px;
      }
    }
  