
    /* CSS styles for the pg99 page */
    .page-pg99 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    /* Hero Section */
    .page-pg99__hero-section {
      text-align: center;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background for visual appeal */
      color: #fff;
      padding: 10px 20px 40px; /* Padding-top for fixed header, bottom for content */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px; /* Ensure a decent height */
    }
    .page-pg99__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .page-pg99__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-pg99__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 25px;
      max-width: 800px;
      color: #eee;
    }
    .page-pg99__hero-cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }
    .page-pg99__hero-cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-pg99__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4d4d; /* Red for urgency */
      color: #fff;
      padding: 15px 25px;
      border-radius: 30px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      max-width: 90%; /* Ensure it fits on smaller screens */
      white-space: nowrap; /* Prevent text wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
      border: none;
    }
    .page-pg99__floating-login-button:hover {
      background-color: #e60000;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Content Sections */
    .page-pg99__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }
    .page-pg99__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      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: 4px;
      background-color: #fdbb2d;
      border-radius: 2px;
    }
    .page-pg99__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Game Categories */
    .page-pg99__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-pg99__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }
    .page-pg99__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    .page-pg99__game-card-image {
      width: 100%;
      max-width: 300px; /* Ensure images are not too wide in cards */
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .page-pg99__game-card-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }
    .page-pg99__game-card-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 10px;
    }

    /* Promotions Section */
    .page-pg99__promotion-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }
    .page-pg99__promotion-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .page-pg99__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    .page-pg99__promotion-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }
    .page-pg99__promotion-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-pg99__promotion-card-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }
    .page-pg99__promotion-card-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
    }
    .page-pg99__promotion-card-button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #333;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to bottom */
    }
    .page-pg99__promotion-card-button:hover {
      background-color: #e6a72c;
    }

    /* Why Choose PG99 */
    .page-pg99__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-pg99__feature-item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .page-pg99__feature-item:hover {
      transform: translateY(-5px);
    }
    .page-pg99__feature-icon {
      width: 200px; /* Min size 200x200 */
      height: 200px; /* Min size 200x200 */
      object-fit: contain;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .page-pg99__feature-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }
    .page-pg99__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-pg99__faq-list {
      margin-top: 30px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }
    .page-pg99__faq-item {
      border-bottom: 1px solid #eee;
    }
    .page-pg99__faq-item:last-child {
      border-bottom: none;
    }
    .page-pg99__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-pg99__faq-question:hover {
      background-color: #f9f9f9;
    }
    .page-pg99__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a6c;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-pg99__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #fdbb2d;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }
    .page-pg99__faq-item.active .page-pg99__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or just change to '-' */
      /* content: '−'; This will be handled by JS */
    }
    .page-pg99__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #fcfcfc;
      color: #555;
    }
    .page-pg99__faq-item.active .page-pg99__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    .page-pg99__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-pg99__hero-section {
        padding: 10px 15px 30px;
        min-height: 250px;
      }
      .page-pg99__hero-title {
        font-size: 2em;
      }
      .page-pg99__hero-subtitle {
        font-size: 1em;
      }
      .page-pg99__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-pg99__floating-login-button {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-pg99__section {
        padding: 30px 15px;
      }
      .page-pg99__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-pg99__text-content {
        font-size: 1em;
      }
      .page-pg99__game-grid,
      .page-pg99__promotion-card-grid,
      .page-pg99__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-pg99__game-card,
      .page-pg99__promotion-card,
      .page-pg99__feature-item {
        padding: 15px;
      }
      .page-pg99__game-card-title,
      .page-pg99__promotion-card-title,
      .page-pg99__feature-title {
        font-size: 1.2em;
      }
      .page-pg99__faq-question {
        padding: 15px 20px;
      }
      .page-pg99__faq-question h3 {
        font-size: 1.1em;
      }
      .page-pg99__faq-answer {
        padding: 0 20px;
      }
      .page-pg99__faq-item.active .page-pg99__faq-answer {
        padding: 15px 20px !important;
      }
      /* Force responsive images */
      .page-pg99 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-pg99__game-card-image,
      .page-pg99__promotion-card-image,
      .page-pg99__feature-icon,
      .page-pg99__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  