
    :root {
      --page-99ok3-com__primary-color: #e94560;
      --page-99ok3-com__secondary-color: #533483;
      --page-99ok3-com__dark-bg: #1a1a2e;
      --page-99ok3-com__light-text: #e0e0e0;
      --page-99ok3-com__accent-color: #0f3460;
      --page-99ok3-com__border-color: #3e2f5b;
    }

    .page-99ok3-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-99ok3-com__light-text);
      background-color: var(--page-99ok3-com__dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-99ok3-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-99ok3-com__section-title {
      font-size: 2.5em;
      color: var(--page-99ok3-com__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-99ok3-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-99ok3-com__primary-color);
      border-radius: 2px;
    }

    .page-99ok3-com__text-content {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-99ok3-com__light-text);
    }

    /* Hero Section */
    .page-99ok3-com__hero-section {
      position: relative;
      width: 100%;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-bottom: 50px;
    }

    .page-99ok3-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-99ok3-com__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2;
    }

    .page-99ok3-com__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-99ok3-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #fff;
      line-height: 1.2;
    }

    .page-99ok3-com__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #ccc;
    }

    .page-99ok3-com__hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-99ok3-com__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      box-sizing: border-box;
      text-align: center;
    }

    .page-99ok3-com__button--primary {
      background-color: var(--page-99ok3-com__primary-color);
      color: #fff;
      border: 2px solid var(--page-99ok3-com__primary-color);
    }

    .page-99ok3-com__button--primary:hover {
      background-color: #d63c52;
      transform: translateY(-2px);
    }

    .page-99ok3-com__button--secondary {
      background-color: transparent;
      color: var(--page-99ok3-com__primary-color);
      border: 2px solid var(--page-99ok3-com__primary-color);
    }

    .page-99ok3-com__button--secondary:hover {
      background-color: var(--page-99ok3-com__primary-color);
      color: #fff;
      transform: translateY(-2px);
    }

    .page-99ok3-com__button--small {
      padding: 10px 20px;
      font-size: 0.95em;
    }

    .page-99ok3-com__button--large {
      padding: 18px 35px;
      font-size: 1.2em;
    }

    /* About Section */
    .page-99ok3-com__about-section {
      padding: 80px 0;
      background-color: var(--page-99ok3-com__accent-color);
    }

    .page-99ok3-com__features {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-99ok3-com__feature-item {
      background-color: var(--page-99ok3-com__dark-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-99ok3-com__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-99ok3-com__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-99ok3-com__feature-title {
      font-size: 1.8em;
      color: var(--page-99ok3-com__primary-color);
      margin-bottom: 15px;
    }

    .page-99ok3-com__feature-description {
      font-size: 1em;
      color: var(--page-99ok3-com__light-text);
    }

    /* Games Section */
    .page-99ok3-com__games-section {
      padding: 80px 0;
    }

    .page-99ok3-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-99ok3-com__game-card {
      background-color: var(--page-99ok3-com__accent-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-99ok3-com__game-card:hover {
      transform: translateY(-10px);
    }

    .page-99ok3-com__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-99ok3-com__game-title {
      font-size: 1.6em;
      color: var(--page-99ok3-com__primary-color);
      margin: 20px 15px 10px;
    }

    .page-99ok3-com__game-description {
      font-size: 0.95em;
      color: var(--page-99ok3-com__light-text);
      padding: 0 15px 20px;
      flex-grow: 1;
    }

    .page-99ok3-com__game-card .page-99ok3-com__button {
      margin: 0 15px 20px;
      align-self: center;
      width: calc(100% - 30px);
    }

    /* CTA Banner */
    .page-99ok3-com__cta-banner {
      background: linear-gradient(90deg, var(--page-99ok3-com__primary-color) 0%, var(--page-99ok3-com__secondary-color) 100%);
      padding: 60px 20px;
      text-align: center;
      margin-top: 80px;
      margin-bottom: 80px;
    }

    .page-99ok3-com__cta-content {
      max-width: 900px;
    }

    .page-99ok3-com__cta-title {
      font-size: 2.8em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-99ok3-com__cta-description {
      font-size: 1.2em;
      color: #eee;
      margin-bottom: 40px;
    }

    /* Guide Section */
    .page-99ok3-com__guide-section {
      padding: 80px 0;
      background-color: var(--page-99ok3-com__accent-color);
    }

    .page-99ok3-com__guide-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .page-99ok3-com__guide-step-item {
      background-color: var(--page-99ok3-com__dark-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      flex: 1;
      min-width: 250px;
      max-width: 300px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-99ok3-com__guide-step-icon {
      width: 100%;
      max-width: 200px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-99ok3-com__guide-step-title {
      font-size: 1.8em;
      color: var(--page-99ok3-com__primary-color);
      margin-bottom: 15px;
    }

    .page-99ok3-com__guide-step-description {
      font-size: 1em;
      color: var(--page-99ok3-com__light-text);
    }

    /* FAQ Section */
    .page-99ok3-com__faq-section {
      padding: 80px 0;
    }

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

    .page-99ok3-com__faq-item {
      background-color: var(--page-99ok3-com__accent-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-99ok3-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-99ok3-com__secondary-color);
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-99ok3-com__faq-question:hover {
      background-color: #6a499b;
    }

    .page-99ok3-com__faq-question-title {
      margin: 0;
      font-size: 1.2em;
      color: #fff;
      pointer-events: none;
    }

    .page-99ok3-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-99ok3-com__faq-item.active .page-99ok3-com__faq-toggle {
      transform: rotate(45deg);
    }

    .page-99ok3-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      background-color: var(--page-99ok3-com__dark-bg);
      color: var(--page-99ok3-com__light-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
    }

    .page-99ok3-com__faq-item.active .page-99ok3-com__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-99ok3-com__faq-answer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-99ok3-com__hero-title {
        font-size: 3em;
      }
      .page-99ok3-com__hero-description {
        font-size: 1.1em;
      }
      .page-99ok3-com__section-title {
        font-size: 2em;
      }
      .page-99ok3-com__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-99ok3-com__hero-section {
        min-height: 500px;
        padding-bottom: 30px;
      }
      .page-99ok3-com__hero-title {
        font-size: 2.2em;
      }
      .page-99ok3-com__hero-description {
        font-size: 1em;
      }
      .page-99ok3-com__hero-cta {
        flex-direction: column;
        gap: 15px;
      }
      .page-99ok3-com__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-99ok3-com__about-section,
      .page-99ok3-com__games-section,
      .page-99ok3-com__guide-section,
      .page-99ok3-com__faq-section {
        padding: 50px 0;
      }

      .page-99ok3-com__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-99ok3-com__text-content {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-99ok3-com__feature-item,
      .page-99ok3-com__game-card,
      .page-99ok3-com__guide-step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important;
      }

      .page-99ok3-com__feature-icon,
      .page-99ok3-com__guide-step-icon {
        max-width: 150px;
      }

      .page-99ok3-com__feature-title,
      .page-99ok3-com__game-title,
      .page-99ok3-com__guide-step-title {
        font-size: 1.5em;
      }

      .page-99ok3-com__cta-banner {
        padding: 40px 15px;
        margin-top: 50px;
        margin-bottom: 50px;
      }

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

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

      .page-99ok3-com__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-99ok3-com__faq-question-title {
        font-size: 1.1em;
      }
      .page-99ok3-com__faq-answer {
        padding: 0 20px;
      }
      .page-99ok3-com__faq-item.active .page-99ok3-com__faq-answer {
        padding: 15px 20px !important;
      }

      /* General mobile list item handling */
      .page-99ok3-com ul,
      .page-99ok3-com ol {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-99ok3-com li {
        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;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-99ok3-com__hero-title {
        font-size: 1.8em;
      }
      .page-99ok3-com__hero-description {
        font-size: 0.9em;
      }
      .page-99ok3-com__section-title {
        font-size: 1.5em;
      }
      .page-99ok3-com__cta-title {
        font-size: 1.6em;
      }
      .page-99ok3-com__button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-99ok3-com__button--large {
        font-size: 1.1em;
        padding: 15px 30px;
      }
    }
  