
    /* CSS Styles for page-ku3933157 */
    .page-ku3933157 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      box-sizing: border-box;
      padding-bottom: 80px; /* Space for fixed floating button */
    }

    .page-ku3933157 *, .page-ku3933157 *::before, .page-ku3933157 *::after {
      box-sizing: border-box;
    }

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

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

    .page-ku3933157__section--dark {
      background-color: #222;
    }

    .page-ku3933157__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-ku3933157__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-ku3933157__hero-section {
      position: relative;
      background-size: cover;
      background-position: center;
      color: #fff;
      padding-top: 80px; /* Space for fixed header */
      padding-bottom: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      text-align: center;
    }

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

    .page-ku3933157__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
      border-radius: 10px;
    }

    .page-ku3933157__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ku3933157__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-ku3933157__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ku3933157__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* General Content Styling */
    .page-ku3933157__content-text {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-ku3933157__content-text strong {
      color: #ffcc00;
    }

    /* List Styling */
    .page-ku3933157__list {
      list-style: none;
      padding: 0;
      margin: 0 auto 30px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
    }

    .page-ku3933157__list-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-ku3933157__list-item-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-ku3933157__list-item-description {
      color: #ccc;
      font-size: 1em;
    }

    /* Numbered List for Steps */
    .page-ku3933157__ordered-list {
      list-style: none;
      counter-reset: step-counter;
      padding: 0;
      margin: 0 auto 30px auto;
      max-width: 800px;
      text-align: left;
    }

    .page-ku3933157__ordered-list-item {
      background-color: #2a2a2a;
      padding: 20px 20px 20px 60px;
      margin-bottom: 15px;
      border-radius: 8px;
      position: relative;
      font-size: 1.1em;
      color: #ccc;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-ku3933157__ordered-list-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #ffcc00;
      color: #1a1a1a;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    /* Game Cards Grid */
    .page-ku3933157__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto 40px auto;
    }

    .page-ku3933157__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-ku3933157__game-card:hover {
      transform: translateY(-8px);
    }

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

    .page-ku3933157__game-card-title {
      color: #ffcc00;
      font-size: 1.4em;
      padding: 15px;
      margin: 0;
    }

    /* Images */
    .page-ku3933157__image-wrapper {
      width: 100%;
      max-width: 800px;
      margin: 30px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-ku3933157__image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Floating CTA Button */
    .page-ku3933157__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #00aaff;
      color: #fff;
      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.5);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-ku3933157__floating-cta:hover {
      background-color: #0088cc;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-ku3933157__faq-section {
      padding: 40px 0;
      background-color: #222;
    }

    .page-ku3933157__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ku3933157__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      color: #ffcc00;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ku3933157__faq-question:hover {
      background-color: #444;
    }

    .page-ku3933157__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-ku3933157__faq-item.active .page-ku3933157__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-ku3933157__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      font-size: 1.1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ku3933157 {
        padding-bottom: 70px; /* Adjust for smaller floating button */
      }

      .page-ku3933157__hero-section {
        padding-top: 60px; /* Adjust for mobile fixed header */
        min-height: 350px;
      }

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

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

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

      .page-ku3933157__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-ku3933157__list-item,
      .page-ku3933157__ordered-list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        padding: 15px !important;
      }

      .page-ku3933157__ordered-list-item::before {
        left: 15px;
      }
      .page-ku3933157__ordered-list-item {
        padding-left: 50px;
      }

      .page-ku3933157__list {
        padding: 0 10px !important;
      }

      .page-ku3933157__game-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-ku3933157__game-card-image {
        height: 180px;
      }

      .page-ku3933157__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-ku3933157__faq-question,
      .page-ku3933157__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 1.1em;
      }
      .page-ku3933157__faq-question h3 {
        font-size: 1.1em;
      }

      .page-ku3933157__image-wrapper {
        margin: 20px auto;
      }
    }

    @media (max-width: 480px) {
      .page-ku3933157__hero-title {
        font-size: 1.8em;
      }
      .page-ku3933157__section-title {
        font-size: 1.8em;
      }
    }
  