
    .page-go99 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Fixed header spacing */
    .page-go99__hero-section,
    .page-go99__about-section { /* If no hero, this will be the first */
      padding-top: 120px; /* Desktop default */
    }

    @media (max-width: 768px) {
      .page-go99__hero-section,
      .page-go99__about-section {
        padding-top: 100px; /* Mobile default */
      }
    }

    /* General section styling */
    .page-go99__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-go99__section-title {
      text-align: center;
      color: #0056b3; /* Dark blue for contrast */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .page-go99__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-go99__section {
        padding: 20px 15px;
      }
    }

    /* Image styling */
    .page-go99 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      border-radius: 8px;
    }
    .page-go99__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .page-go99 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-go99__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    /* Hero Section */
    .page-go99__hero-section {
      position: relative;
      text-align: center;
      background-color: #0a1931; /* Dark background for hero */
      padding-bottom: 40px;
      overflow: hidden; /* Ensure content doesn't spill */
    }
    .page-go99__hero-image-container {
      margin: 0 auto;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-go99__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px; /* Limit height for large screens */
      object-fit: cover;
      border-radius: 0;
    }
    .page-go99__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
      width: 90%;
      max-width: 800px;
      z-index: 10;
    }
    .page-go99__hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffda44; /* Gold color */
      line-height: 1.2;
    }
    .page-go99__hero-content p {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }
    @media (max-width: 768px) {
      .page-go99__hero-content h1 {
        font-size: 2em;
      }
      .page-go99__hero-content p {
        font-size: 1em;
      }
      .page-go99__hero-image {
        max-height: 300px;
      }
    }

    /* Floating Login Button */
    .page-go99__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4d4d; /* Red for attention */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .page-go99__floating-login-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-go99__floating-login-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    /* Game Grid */
    .page-go99__game-grid,
    .page-go99__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-content: center;
    }
    .page-go99__game-card,
    .page-go99__provider-logo {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
      text-decoration: none; /* For game cards that are links */
      color: inherit;
      display: block; /* Ensure the whole card is clickable */
    }
    .page-go99__game-card:hover,
    .page-go99__provider-logo:hover {
      transform: translateY(-5px);
    }
    .page-go99__game-card-image-container,
    .page-go99__provider-logo-container {
      height: 180px; /* Fixed height for consistent card appearance */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: #eee;
      padding: 10px;
    }
    .page-go99__game-card-image,
    .page-go99__provider-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; /* Ensure full image is visible */
      border-radius: 0; /* No border-radius for game logos */
    }
    .page-go99__game-card-title,
    .page-go99__provider-name {
      padding: 15px;
      font-size: 1.2em;
      font-weight: bold;
      color: #0056b3;
    }
    .page-go99__game-card-title a {
      text-decoration: none;
      color: #0056b3;
    }
    .page-go99__game-card-title a:hover {
      text-decoration: underline;
    }

    /* Promotions Section */
    .page-go99__promotions-section {
      background-color: #e0f7fa; /* Light blue background */
    }
    .page-go99__promo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      margin: 20px auto;
      max-width: 800px;
    }
    .page-go99__promo-card-image-container {
      width: 100%;
      max-width: 400px;
      margin-bottom: 20px;
    }
    .page-go99__promo-card-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .page-go99__promo-card h3 {
      color: #d32f2f; /* Red for promo title */
      font-size: 1.8em;
      margin-bottom: 10px;
    }
    .page-go99__promo-card p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }
    .page-go99__promo-card-button {
      background-color: #4CAF50; /* Green button */
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-go99__promo-card-button:hover {
      background-color: #45a049;
    }
    @media (max-width: 768px) {
      .page-go99__promo-card h3 {
        font-size: 1.4em;
      }
      .page-go99__promo-card p {
        font-size: 1em;
      }
    }

    /* How-to Guide Section */
    .page-go99__guide-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }
    .page-go99__guide-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    .page-go99__guide-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #007bff;
      color: white;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 15px;
    }
    .page-go99__guide-item h3 {
      margin-top: 0;
      color: #007bff;
      font-size: 1.5em;
    }
    .page-go99__guide-item p {
      font-size: 1.1em;
      color: #555;
    }
    @media (max-width: 768px) {
      .page-go99__guide-item h3 {
        font-size: 1.2em;
      }
      .page-go99__guide-item p {
        font-size: 0.95em;
      }
      .page-go99__guide-item::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
      }
    }

    /* FAQ Section */
    .page-go99__faq-section {
      background-color: #f0f8ff; /* Light blue-gray */
    }
    .page-go99__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .page-go99__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #e9f7ff;
      color: #0056b3;
      font-weight: bold;
      font-size: 1.2em;
      border-bottom: 1px solid #eee;
    }
    .page-go99__faq-question:hover {
      background-color: #d6eeff;
    }
    .page-go99__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }
    .page-go99__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from intercepting click */
    }
    .page-go99__faq-item.active .page-go99__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }
    .page-go99__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
    }
    .page-go99__faq-item.active .page-go99__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-go99__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-go99__faq-question h3 {
        font-size: 1em;
      }
      .page-go99__faq-toggle {
        font-size: 1.2em;
      }
      .page-go99__faq-item.active .page-go99__faq-answer {
        padding: 15px 15px !important;
      }
    }

    /* Testimonials Section */
    .page-go99__testimonials-section {
      background-color: #fdfae6; /* Light yellow background */
    }
    .page-go99__testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .page-go99__testimonial-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      font-style: italic;
      color: #444;
    }
    .page-go99__testimonial-card p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }
    .page-go99__testimonial-card strong {
      display: block;
      text-align: right;
      color: #0056b3;
      font-style: normal;
    }
    @media (max-width: 768px) {
      .page-go99__testimonial-card p {
        font-size: 1em;
      }
    }

    /* Call to Action Section */
    .page-go99__cta-section {
      text-align: center;
      background-color: #0056b3; /* Dark blue background */
      color: #fff;
      padding: 60px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }
    .page-go99__cta-section h2 {
      color: #ffda44; /* Gold color */
      font-size: 3em;
      margin-bottom: 20px;
    }
    .page-go99__cta-section p {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-go99__cta-button {
      background-color: #ff4d4d; /* Red button */
      color: white;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.5em;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .page-go99__cta-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-go99__cta-section h2 {
        font-size: 2em;
      }
      .page-go99__cta-section p {
        font-size: 1.1em;
      }
      .page-go99__cta-button {
        padding: 15px 25px;
        font-size: 1.2em;
      }
    }
  