
    /* CSS for page-99ok */
    :root {
      --page-99ok-primary-color: #007bff; /* Blue */
      --page-99ok-secondary-color: #6c757d; /* Grey */
      --page-99ok-accent-color: #ffc107; /* Yellow */
      --page-99ok-background-dark: #1a1a2e; /* Dark Blue-Purple */
      --page-99ok-background-light: #f4f7f6; /* Light Grey-Green */
      --page-99ok-text-light: #ffffff;
      --page-99ok-text-dark: #333333;
      --page-99ok-border-color: #e0e0e0;
    }

    .page-99ok {
      font-family: 'Arial', sans-serif;
      color: var(--page-99ok-text-dark);
      background-color: var(--page-99ok-background-light);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-99ok__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-99ok-text-light);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-99ok__section--dark {
      background-color: var(--page-99ok-background-dark);
      color: var(--page-99ok-text-light);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .page-99ok__section-title {
      text-align: center;
      color: var(--page-99ok-primary-color);
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-99ok__section-title--dark {
      color: var(--page-99ok-accent-color);
    }

    .page-99ok__text-center {
      text-align: center;
    }

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

    /* Hero Section */
    .page-99ok__hero-section {
      padding-top: 120px; /* To clear fixed header - desktop */
      background-color: var(--page-99ok-background-dark);
      color: var(--page-99ok-text-light);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Minimum height for hero */
      position: relative;
      overflow: hidden;
    }

    .page-99ok__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-99ok__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      min-width: 200px; /* Ensure image is at least 200px wide */
      min-height: 200px; /* Ensure image is at least 200px high */
    }

    .page-99ok__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
      max-width: 800px;
    }

    .page-99ok__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-99ok-accent-color);
      line-height: 1.2;
    }

    .page-99ok__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-99ok__hero-button {
      display: inline-block;
      background-color: var(--page-99ok-primary-color);
      color: var(--page-99ok-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-99ok__hero-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-99ok__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Red for urgency/promo */
      color: var(--page-99ok-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-99ok__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-99ok__floating-login-button:hover {
      background-color: #c82333;
      animation: none;
    }

    @keyframes page-99ok__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories Section */
    .page-99ok__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-99ok__game-card {
      background-color: var(--page-99ok-background-dark);
      color: var(--page-99ok-text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-99ok__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .page-99ok__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistent card images */
    }

    .page-99ok__game-card-image {
      max-width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area without stretching */
      display: block;
      transition: transform 0.3s ease;
      min-width: 200px; /* Ensure image is at least 200px wide */
      min-height: 200px; /* Ensure image is at least 200px high */
    }

    .page-99ok__game-card:hover .page-99ok__game-card-image {
        transform: scale(1.05);
    }

    .page-99ok__game-card-content {
      padding: 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-99ok__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-99ok-accent-color);
      font-weight: bold;
    }

    .page-99ok__game-card-description {
      font-size: 0.95em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-99ok__game-card-button {
      display: inline-block;
      background-color: var(--page-99ok-primary-color);
      color: var(--page-99ok-text-light);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-99ok__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Game Providers Section */
    .page-99ok__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-99ok__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    .page-99ok__provider-logo-wrapper:hover {
        transform: translateY(-5px);
    }

    .page-99ok__provider-logo {
      max-width: 200px; /* Ensure logos are displayed at least 200px wide if possible */
      height: auto;
      display: block;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      min-width: 200px; /* Ensure image is at least 200px wide */
      min-height: 200px; /* Ensure image is at least 200px high */
    }

    .page-99ok__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Why Choose Us Section */
    .page-99ok__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-99ok__feature-item {
      background-color: var(--page-99ok-text-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-99ok__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-99ok__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        height: 200px; /* Fixed height for consistent feature icons */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-99ok__feature-icon {
      width: 200px; /* Ensure icon is at least 200px wide */
      height: 200px; /* Ensure icon is at least 200px high */
      object-fit: contain;
      margin: 0 auto 15px;
      color: var(--page-99ok-primary-color);
    }

    .page-99ok__feature-title {
      font-size: 1.6em;
      color: var(--page-99ok-primary-color);
      margin-bottom: 10px;
    }

    .page-99ok__feature-description {
      font-size: 1em;
      color: var(--page-99ok-text-dark);
    }

    /* Guide Section */
    .page-99ok__guide-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-99ok__guide-item {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-left: 5px solid var(--page-99ok-primary-color);
    }

    .page-99ok__guide-title {
      color: var(--page-99ok-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-99ok__faq-list {
      margin-top: 30px;
    }

    .page-99ok__faq-item {
      background-color: var(--page-99ok-text-light);
      border: 1px solid var(--page-99ok-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-99ok__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9ecef; /* Light grey background for question */
      color: var(--page-99ok-text-dark);
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-99ok__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-99ok__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-99ok-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-99ok__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-99ok-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-99ok__faq-item.active .page-99ok__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-99ok__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;
      color: var(--page-99ok-text-dark);
      background-color: var(--page-99ok-text-light);
    }

    .page-99ok__faq-item.active .page-99ok__faq-answer {
      max-height: 2000px !important; /* Use !important as per requirement */
      padding: 20px 25px !important; /* Use !important as per requirement */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-99ok__hero-section {
        padding-top: 100px; /* To clear fixed header - mobile */
        min-height: 400px;
      }

      .page-99ok__hero-title {
        font-size: 2em;
      }

      .page-99ok__hero-description {
        font-size: 1em;
      }

      .page-99ok__section {
        padding: 30px 15px;
      }

      .page-99ok__section-title {
        font-size: 1.8em;
      }

      .page-99ok__game-categories {
        grid-template-columns: 1fr;
      }

      .page-99ok__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-99ok__guide-steps {
        grid-template-columns: 1fr;
      }

      .page-99ok__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Image responsive optimization for mobile */
      .page-99ok__hero-image,
      .page-99ok__game-card-image,
      .page-99ok__provider-logo,
      .page-99ok__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important; /* Allow smaller on mobile, as long as container is 100% */
        min-height: unset !important;
      }
      .page-99ok__hero-image-wrapper,
      .page-99ok__game-card-image-wrapper,
      .page-99ok__provider-logo-wrapper,
      .page-99ok__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-99ok__game-card-image-wrapper {
          height: 180px;
      }
      .page-99ok__provider-logo {
          max-width: 150px !important; /* Adjust max-width for smaller screens if needed */
          height: auto !important;
      }
      .page-99ok__feature-icon-wrapper {
          height: 150px;
      }
      .page-99ok__feature-icon {
          width: 150px !important;
          height: 150px !important;
      }
    }

    @media (max-width: 480px) {
        .page-99ok__hero-title {
            font-size: 1.8em;
        }
        .page-99ok__section-title {
            font-size: 1.6em;
        }
        .page-99ok__faq-question h3 {
            font-size: 1em;
        }
        .page-99ok__faq-toggle {
            font-size: 1.3em;
        }
        .page-99ok__floating-login-button {
            padding: 10px 15px;
            font-size: 0.9em;
        }
    }
  