
    /* Base styles for the page */
    .page-q99-com {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define */
    }

    /* General section styling */
    .page-q99-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
      background-color: #16213e; /* Slightly lighter dark for sections */
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-q99-com__section-title {
      font-size: 2.5em;
      color: #e94560; /* Highlight color */
      margin-bottom: 30px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-q99-com__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-q99-com__hero-section {
      background-color: #0f3460;
      padding: 60px 20px;
      padding-top: 10px; /* Small top padding as body already has offset */
      position: relative;
      overflow: hidden;
      border-radius: 0; /* No border-radius for hero */
      margin-bottom: 20px;
    }

    .page-q99-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-q99-com__hero-title {
      font-size: 3.5em;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-q99-com__hero-description {
      font-size: 1.3em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-q99-com__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-q99-com__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .page-q99-com__hero-image:hover {
      transform: scale(1.03);
    }

    /* Floating Buttons */
    .page-q99-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-q99-com__floating-button {
      background-color: #e94560;
      color: #ffffff;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline for a-like behavior */
      display: block; /* Make it block to take padding */
      text-align: center;
    }

    .page-q99-com__floating-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    /* Game Categories */
    .page-q99-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-q99-com__game-card {
      background-color: #2b3a55;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-q99-com__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-q99-com__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent card size */
    }

    .page-q99-com__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-q99-com__game-card-title {
      font-size: 1.8em;
      color: #e94560;
      margin: 20px 0 10px;
      padding: 0 15px;
      text-align: center;
    }

    .page-q99-com__game-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px;
      text-align: center;
    }

    /* Promotions Section */
    .page-q99-com__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-q99-com__promotion-item {
      background-color: #2b3a55;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-q99-com__promotion-item:hover {
      transform: translateY(-5px);
      background-color: #3f5170;
    }

    .page-q99-com__promotion-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-q99-com__promotion-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Why Choose Section */
    .page-q99-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-q99-com__feature-card {
      background-color: #2b3a55;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-q99-com__feature-card:hover {
      transform: translateY(-8px);
      background-color: #3f5170;
    }

    .page-q99-com__feature-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-q99-com__feature-image {
      max-width: 150px; /* Adjust size for feature icons */
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-q99-com__feature-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-q99-com__feature-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* Providers & Payments */
    .page-q99-com__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-q99-com__logo-item-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 10px;
      background-color: #2b3a55;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-q99-com__logo-item-container:hover {
      transform: scale(1.05);
    }

    .page-q99-com__logo-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: grayscale(20%); /* Subtle effect, not color change */
      transition: filter 0.3s ease;
    }

    .page-q99-com__logo-image:hover {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-q99-com__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-q99-com__faq-item {
      background-color: #2b3a55;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-q99-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3f5170;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-q99-com__faq-question:hover {
      background-color: #e94560;
    }

    .page-q99-com__faq-question h3 {
      margin: 0;
      color: inherit; /* Ensure h3 color matches parent */
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-q99-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-q99-com__faq-item.active .page-q99-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X visually */
    }

    .page-q99-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
      text-align: left;
    }

    .page-q99-com__faq-item.active .page-q99-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }
    
    /* Call to Action Section */
    .page-q99-com__cta-section {
        background-color: #e94560;
        color: #ffffff;
        padding: 50px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        max-width: 1200px;
        margin: 40px auto;
        text-align: center;
    }

    .page-q99-com__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .page-q99-com__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-q99-com__cta-button {
        background-color: #0f3460;
        color: #ffffff;
        border: none;
        padding: 15px 40px;
        border-radius: 30px;
        font-size: 1.3em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: inline-block; /* For proper padding and alignment */
        text-decoration: none;
    }

    .page-q99-com__cta-button:hover {
        background-color: #16213e;
        transform: translateY(-3px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-q99-com {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
      }
      .page-q99-com__hero-title {
        font-size: 2.5em;
      }
      .page-q99-com__hero-description {
        font-size: 1em;
      }
      .page-q99-com__section-title {
        font-size: 2em;
      }
      .page-q99-com__game-grid,
      .page-q99-com__promotion-list,
      .page-q99-com__features-grid,
      .page-q99-com__logo-grid {
        grid-template-columns: 1fr; /* Single column layout for most grids */
        gap: 20px;
      }
      .page-q99-com__game-card-image-container {
        height: 180px; /* Adjust height for smaller screens */
      }
      .page-q99-com__promotion-item,
      .page-q99-com__feature-card,
      .page-q99-com__logo-item-container,
      .page-q99-com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-q99-com__promotion-list,
      .page-q99-com__features-grid,
      .page-q99-com__logo-grid,
      .page-q99-com__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust overall padding for sections */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-q99-com__section {
        padding: 30px 15px;
      }
      .page-q99-com__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-q99-com__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-q99-com__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-q99-com__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-q99-com__faq-answer {
        padding: 0 20px;
      }
      .page-q99-com__faq-item.active .page-q99-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-q99-com__cta-title {
        font-size: 2em;
      }
      .page-q99-com__cta-description {
        font-size: 1em;
      }
      .page-q99-com__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      /* Image responsiveness */
      .page-q99-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-q99-com__hero-image-container,
      .page-q99-com__game-card-image-container,
      .page-q99-com__feature-image-container,
      .page-q99-com__logo-item-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
    
    @media (max-width: 480px) {
        .page-q99-com__hero-title {
            font-size: 2em;
        }
        .page-q99-com__section-title {
            font-size: 1.8em;
        }
        .page-q99-com__floating-buttons {
            flex-direction: row;
            width: calc(100% - 30px);
            left: 15px;
            right: 15px;
            justify-content: space-around;
        }
        .page-q99-com__floating-button {
            flex: 1;
            margin: 0 5px;
        }
        .page-q99-com__game-card-image-container {
          height: 150px;
        }
        .page-q99-com__cta-title {
            font-size: 1.8em;
        }
    }
  