
    /* Base styles for the page */
    .page-99okcom {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #FFFFFF; /* White text */
      background-color: #000000; /* Black background */
      overflow-x: hidden;
    }

    .page-99okcom__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-99okcom__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-99okcom__heading-primary {
      font-size: 3em;
      color: #FFD700; /* Yellow for headings */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-99okcom__heading-secondary {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-99okcom__heading-tertiary {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-99okcom__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #FFFFFF;
    }

    .page-99okcom__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-99okcom__button:hover {
      background-color: #E6B800; /* Darker yellow on hover */
      color: #000000;
    }

    /* Hero Section */
    .page-99okcom__hero-section {
      position: relative;
      padding-top: 140px; /* Safe area for fixed header */
      background-color: #000000;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-99okcom__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-99okcom__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-99okcom__hero-content {
      padding: 20px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-99okcom__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-99okcom__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-99okcom__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
      font-size: 1.2em;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-99okcom__floating-button:hover {
      transform: translateY(-5px);
      background-color: #E6B800;
    }

    /* Game Categories/Products */
    .page-99okcom__game-categories {
      background-color: #000000;
      padding: 60px 0;
    }

    .page-99okcom__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-99okcom__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-99okcom__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-99okcom__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px; /* Fixed height for consistency */
    }

    .page-99okcom__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensure images cover the area without distortion */
      width: 100%;
      height: 100%;
    }

    .page-99okcom__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin: 20px 15px 10px;
      text-decoration: none;
      display: block;
    }

    .page-99okcom__game-title:hover {
      color: #FFFFFF;
    }

    .page-99okcom__game-description {
      font-size: 0.95em;
      color: #CCCCCC;
      padding: 0 15px 15px;
    }

    /* Game Providers */
    .page-99okcom__providers-section {
      background-color: #000000;
      padding: 60px 0;
      border-top: 1px solid #333333;
    }

    .page-99okcom__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-99okcom__provider-logo-wrapper {
      width: 100%;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
      max-width: 200px; /* Max width for logos */
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-99okcom__provider-logo-wrapper:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-99okcom__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Why Choose Us */
    .page-99okcom__why-choose-us {
      background-color: #000000;
      padding: 60px 0;
      border-top: 1px solid #333333;
    }

    .page-99okcom__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-99okcom__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-99okcom__feature-item:hover {
      transform: translateY(-5px);
      background-color: #2a2a2a;
    }

    .page-99okcom__feature-icon-wrapper {
        width: 100%;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
        max-width: 200px;
        overflow: hidden;
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-99okcom__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-99okcom__feature-title {
      color: #FFD700;
      font-size: 1.6em;
      margin-bottom: 10px;
      text-align: center;
    }

    .page-99okcom__feature-description {
      color: #FFFFFF;
      font-size: 1em;
      text-align: center;
    }

    /* FAQ Section */
    .page-99okcom__faq-section {
      background-color: #000000;
      padding: 60px 0;
      border-top: 1px solid #333333;
    }

    .page-99okcom__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

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

    .page-99okcom__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-99okcom__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-99okcom__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-99okcom__faq-item.active .page-99okcom__faq-toggle {
      transform: rotate(45deg); /* Plus becomes an X-like shape */
    }

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

    .page-99okcom__faq-item.active .page-99okcom__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-99okcom__cta-section {
      background-color: #000000;
      padding: 60px 0;
      border-top: 1px solid #333333;
    }

    .page-99okcom__cta-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-99okcom__cta-text {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-99okcom__hero-title {
        font-size: 3em;
      }
      .page-99okcom__heading-primary {
        font-size: 2.5em;
      }
      .page-99okcom__heading-secondary {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-99okcom__hero-section {
        padding-top: 100px; /* Adjust safe area for mobile */
      }
      .page-99okcom__hero-title {
        font-size: 2.5em;
      }
      .page-99okcom__hero-subtitle {
        font-size: 1.2em;
      }
      .page-99okcom__heading-primary {
        font-size: 2em;
      }
      .page-99okcom__heading-secondary {
        font-size: 1.8em;
      }
      .page-99okcom__heading-tertiary {
        font-size: 1.5em;
      }
      .page-99okcom__text {
        font-size: 1em;
      }
      .page-99okcom__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-99okcom__floating-button {
        padding: 12px 25px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-99okcom__game-grid,
      .page-99okcom__providers-grid,
      .page-99okcom__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-99okcom__game-card,
      .page-99okcom__feature-item {
        margin: 0 auto;
        max-width: 400px;
      }
      .page-99okcom__provider-logo-wrapper {
        min-width: 180px; /* Adjust for mobile */
        min-height: 180px; /* Adjust for mobile */
        max-width: 180px;
      }
      .page-99okcom__feature-icon-wrapper {
        min-width: 180px; /* Adjust for mobile */
        min-height: 180px; /* Adjust for mobile */
        max-width: 180px;
      }
      .page-99okcom__faq-question {
        padding: 15px 20px;
      }
      .page-99okcom__faq-question h3 {
        font-size: 1.1em;
      }
      .page-99okcom__faq-answer {
        padding: 15px 20px;
      }
      .page-99okcom__faq-item.active .page-99okcom__faq-answer {
        padding: 15px 20px !important;
      }
      .page-99okcom__section {
        padding: 30px 0;
      }
    }

    @media (max-width: 480px) {
      .page-99okcom__hero-title {
        font-size: 2em;
      }
      .page-99okcom__hero-subtitle {
        font-size: 1em;
      }
      .page-99okcom__heading-primary {
        font-size: 1.8em;
      }
      .page-99okcom__heading-secondary {
        font-size: 1.6em;
      }
      .page-99okcom__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        bottom: 10px;
        right: 10px;
      }
    }

    /* Image responsive optimization for all images */
    .page-99okcom img {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure block-level for proper spacing */
        object-fit: contain; /* Default object-fit, can be overridden if needed */
    }

    .page-99okcom__hero-image,
    .page-99okcom__game-image,
    .page-99okcom__provider-logo,
    .page-99okcom__feature-icon {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    /* Ensure image containers are also responsive */
    .page-99okcom__hero-image-wrapper,
    .page-99okcom__game-image-wrapper,
    .page-99okcom__provider-logo-wrapper,
    .page-99okcom__feature-icon-wrapper {
        width: 100%;
        max-width: 100%; /* Override any fixed max-width for smaller screens */
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-99okcom img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-99okcom__hero-image-wrapper,
        .page-99okcom__game-image-wrapper,
        .page-99okcom__provider-logo-wrapper,
        .page-99okcom__feature-icon-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  