
    :root {
      --page-94ok__primary-color: #e44d26; /* Orange-red */
      --page-94ok__secondary-color: #f7a000; /* Amber */
      --page-94ok__dark-background: #1a1a2e; /* Dark blue-purple */
      --page-94ok__light-background: #f4f7f6; /* Light gray */
      --page-94ok__text-color: #ffffff;
      --page-94ok__dark-text-color: #333333;
      --page-94ok__border-color: #3e2f5b;
      --page-94ok__card-background: #2b2b4a; /* Slightly lighter dark */
      --page-94ok__button-hover: #ff6f42;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-94ok__dark-text-color);
      background-color: var(--page-94ok__light-background);
      margin: 0;
      padding: 0;
    }

    .page-94ok {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 30px; /* Small top padding, assuming shared.css handles body padding-top */
      box-sizing: border-box;
    }

    .page-94ok__hero-section {
      background: linear-gradient(135deg, var(--page-94ok__dark-background), #3e2f5b);
      color: var(--page-94ok__text-color);
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Small decorative top padding */
    }

    .page-94ok__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.05);
      transform: rotate(45deg);
      z-index: 0;
    }

    .page-94ok__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-94ok__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--page-94ok__secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-94ok__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-94ok__button {
      display: inline-block;
      background-color: var(--page-94ok__primary-color);
      color: var(--page-94ok__text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-94ok__button:hover {
      background-color: var(--page-94ok__button-hover);
      transform: translateY(-2px);
    }

    .page-94ok__hero-image {
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-94ok__section {
      background-color: var(--page-94ok__text-color);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-94ok__section--dark {
      background-color: var(--page-94ok__card-background);
      color: var(--page-94ok__text-color);
    }

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

    .page-94ok__section--dark .page-94ok__section-title {
      color: var(--page-94ok__secondary-color);
    }

    .page-94ok__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-94ok__dark-text-color);
    }

    .page-94ok__section--dark .page-94ok__content-text {
      color: #e0e0e0;
    }

    .page-94ok__game-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-94ok__game-card {
      background-color: var(--page-94ok__card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-94ok__text-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-94ok__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-94ok__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

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

    .page-94ok__game-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    .page-94ok__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      width: 100%; /* Ensure container takes full width */
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-94ok__list-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      color: var(--page-94ok__dark-text-color);
      font-size: 1.05em;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: 100%; /* Default for desktop, to be overridden by media query if needed */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word;
    }

    .page-94ok__list-item::before {
      content: '✔';
      color: var(--page-94ok__primary-color);
      font-weight: bold;
      margin-right: 10px;
    }

    .page-94ok__step-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-94ok__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: var(--page-94ok__card-background);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      color: var(--page-94ok__text-color);
      box-sizing: border-box;
      width: 100%;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-94ok__step-number {
      background-color: var(--page-94ok__primary-color);
      color: var(--page-94ok__text-color);
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-94ok__step-content h3 {
      margin-top: 0;
      margin-bottom: 8px;
      color: var(--page-94ok__secondary-color);
      font-size: 1.3em;
    }

    .page-94ok__step-content p {
      margin: 0;
      font-size: 1em;
      color: #e0e0e0;
    }

    .page-94ok__image-wrapper {
      margin: 30px auto;
      text-align: center;
      max-width: 100%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-94ok__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* FAQ Section */
    .page-94ok__faq-section {
      background-color: var(--page-94ok__text-color);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-94ok__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-94ok__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #eef;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--page-94ok__dark-text-color);
      transition: background-color 0.3s ease;
    }

    .page-94ok__faq-question:hover {
      background-color: #e0e0f0;
    }

    .page-94ok__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-94ok__primary-color);
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-94ok__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-94ok__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-94ok__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-94ok__text-color);
      color: var(--page-94ok__dark-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      line-height: 1.7;
    }

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

    .page-94ok__faq-item.active .page-94ok__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or a dash */
    }

    /* Floating Promotion */
    .page-94ok__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-94ok__secondary-color);
      color: var(--page-94ok__text-color);
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 15px;
      max-width: 300px;
      text-align: center;
      flex-direction: column;
    }

    .page-94ok__floating-promo-text {
      font-weight: bold;
      font-size: 1.1em;
      margin: 0;
      line-height: 1.3;
    }

    .page-94ok__floating-promo .page-94ok__button {
      padding: 10px 20px;
      font-size: 1em;
      background-color: var(--page-94ok__primary-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-94ok {
        padding: 10px 10px 20px;
      }

      .page-94ok__hero-title {
        font-size: 2.2em;
      }

      .page-94ok__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-94ok__game-cards {
        grid-template-columns: 1fr;
      }

      .page-94ok__list,
      .page-94ok__step-list {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-94ok__list-item,
      .page-94ok__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-94ok__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-94ok__faq-question h3 {
        font-size: 1.1em;
      }

      .page-94ok__faq-toggle {
        font-size: 1.5em;
      }

      .page-94ok__faq-answer {
        padding: 0 15px;
      }

      .page-94ok__faq-item.active .page-94ok__faq-answer {
        padding: 15px !important;
      }

      .page-94ok__image-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      .page-94ok__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-94ok__floating-promo {
        bottom: 10px;
        right: 10px;
        max-width: 90%;
        padding: 10px 15px;
      }
    }
  