
    :root {
      --page-ku3936__primary-bg: #1a1a2e;
      --page-ku3936__secondary-bg: #16213e;
      --page-ku3936__accent-color: #e94560;
      --page-ku3936__text-color: #e0e0e0;
      --page-ku3936__light-text: #ffffff;
      --page-ku3936__border-color: #0f3460;
      --page-ku3936__button-hover: #c43750;
      --page-ku3936__card-bg: #0f3460;
      --page-ku3936__faq-question-bg: #2b3a5a;
      --page-ku3936__faq-answer-bg: #16213e;
    }

    .page-ku3936 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--page-ku3936__primary-bg);
      color: var(--page-ku3936__text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for footer placeholder */
    }

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

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

    .page-ku3936__section--dark {
      background-color: var(--page-ku3936__secondary-bg);
    }

    .page-ku3936__heading {
      color: var(--page-ku3936__light-text);
      font-size: 2.5em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ku3936__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-ku3936__accent-color);
    }

    .page-ku3936__subheading {
      color: var(--page-ku3936__accent-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-ku3936__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-ku3936__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--page-ku3936__primary-bg);
      color: var(--page-ku3936__light-text);
      padding: 10px 0 60px; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
    }

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

    .page-ku3936__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 20px;
      max-width: 900px;
    }

    .page-ku3936__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--page-ku3936__light-text);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ku3936__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-ku3936__text-color);
    }

    .page-ku3936__button {
      display: inline-block;
      background-color: var(--page-ku3936__accent-color);
      color: var(--page-ku3936__light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Button */
    .page-ku3936__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, #ff7e5f, #feb47b);
      color: var(--page-ku3936__light-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-ku3936__pulse 2s infinite;
      white-space: nowrap;
      text-align: center;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ku3936__floating-button:hover {
      background: linear-gradient(90deg, #ff5f3f, #fda55a);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

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

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

    .page-ku3936__game-card {
      background-color: var(--page-ku3936__card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--page-ku3936__border-color);
    }

    .page-ku3936__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-ku3936__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-ku3936__border-color);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-ku3936__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-ku3936__game-card-title {
      font-size: 1.4em;
      color: var(--page-ku3936__accent-color);
      margin-bottom: 10px;
    }

    .page-ku3936__game-card-description {
      font-size: 0.95em;
      color: var(--page-ku3936__text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotion List */
    .page-ku3936__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-ku3936__promo-item {
      background-color: var(--page-ku3936__card-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--page-ku3936__border-color);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-ku3936__promo-item:hover {
      transform: translateY(-3px);
    }

    .page-ku3936__promo-title {
      font-size: 1.3em;
      color: var(--page-ku3936__accent-color);
      margin-bottom: 10px;
    }

    .page-ku3936__promo-description {
      font-size: 1em;
      color: var(--page-ku3936__text-color);
      margin-bottom: 15px;
    }

    /* How-to Guides */
    .page-ku3936__guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ku3936__guide-card {
      background-color: var(--page-ku3936__card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-ku3936__border-color);
      padding: 30px 20px;
    }

    .page-ku3936__guide-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-ku3936__guide-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      object-fit: contain;
    }

    .page-ku3936__guide-title {
      font-size: 1.5em;
      color: var(--page-ku3936__accent-color);
      margin-bottom: 10px;
    }

    .page-ku3936__guide-text {
      font-size: 1em;
      color: var(--page-ku3936__text-color);
    }

    /* FAQ Section */
    .page-ku3936__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-ku3936__faq-item {
      background-color: var(--page-ku3936__card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-ku3936__border-color);
      box-sizing: border-box;
    }

    .page-ku3936__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-ku3936__faq-question-bg);
      color: var(--page-ku3936__light-text);
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-ku3936__faq-question:hover {
      background-color: #3b4d72;
    }

    .page-ku3936__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-ku3936__light-text);
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-ku3936__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-ku3936__accent-color);
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

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

    .page-ku3936__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-ku3936__faq-answer-bg);
      color: var(--page-ku3936__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;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ku3936__hero-section {
        padding-top: 10px; /* Adjust padding for smaller fixed header on mobile */
        min-height: 350px;
      }

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

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

      .page-ku3936__heading {
        font-size: 2em;
      }

      .page-ku3936__subheading {
        font-size: 1.5em;
      }

      .page-ku3936__paragraph {
        font-size: 1em;
      }

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

      .page-ku3936__floating-button {
        padding: 12px 20px;
        font-size: 0.9em;
        width: calc(100% - 40px);
        max-width: 350px;
      }

      .page-ku3936__game-grid,
      .page-ku3936__promo-list,
      .page-ku3936__guide-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-ku3936__game-card,
      .page-ku3936__promo-item,
      .page-ku3936__guide-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-ku3936__promo-list {
        padding: 0;
      }

      .page-ku3936__promo-item {
        padding: 20px;
      }

      .page-ku3936__promo-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-ku3936__faq-question,
      .page-ku3936__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-ku3936__faq-question h3 {
        font-size: 1em;
      }

      .page-ku3936__faq-answer p {
        font-size: 0.95em;
      }
    }

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

      .page-ku3936__hero-description {
        font-size: 0.9em;
      }

      .page-ku3936__heading {
        font-size: 1.8em;
      }

      .page-ku3936__floating-button {
        font-size: 0.8em;
        padding: 10px 15px;
      }
    }

    /* Image responsive styles */
    .page-ku3936__game-card-image,
    .page-ku3936__guide-icon,
    .page-ku3936__hero-image {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-ku3936__game-card-image,
      .page-ku3936__guide-icon,
      .page-ku3936__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  