
    /* CSS Styles for page-ku */
    :root {
      --page-ku-primary-color: #e44d26; /* A vibrant, engaging color */
      --page-ku-secondary-color: #f7b731; /* Complementary color */
      --page-ku-text-color: #333;
      --page-ku-light-text-color: #f8f8f8;
      --page-ku-background-color: #f0f2f5;
      --page-ku-dark-background: #2c3e50;
      --page-ku-card-background: #ffffff;
      --page-ku-border-radius: 8px;
      --page-ku-shadow: rgba(0, 0, 0, 0.1);
    }

    .page-ku {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-ku-text-color);
      background-color: var(--page-ku-background-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-ku-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-ku-section-dark {
        background-color: var(--page-ku-dark-background);
        color: var(--page-ku-light-text-color);
    }

    .page-ku-section-dark h2,
    .page-ku-section-dark h3 {
        color: var(--page-ku-light-text-color);
    }

    .page-ku-heading {
      text-align: center;
      color: var(--page-ku-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-ku-subheading {
      text-align: center;
      color: var(--page-ku-dark-background);
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-ku-text-center {
      text-align: center;
    }

    .page-ku-hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--page-ku-primary-color), var(--page-ku-secondary-color));
      color: var(--page-ku-light-text-color);
      padding: 60px 20px;
      text-align: center;
    }

    .page-ku-hero-banner {
      width: 100%;
      max-width: 100%; /* Ensure it's centered and fits */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: var(--page-ku-border-radius);
      box-shadow: 0 4px 15px var(--page-ku-shadow);
    }

    .page-ku-hero h1 {
      font-size: 3em;
      margin-bottom: 10px;
      color: var(--page-ku-light-text-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-ku-hero p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-ku-light-text-color);
    }

    .page-ku-cta-button {
      display: inline-block;
      background-color: var(--page-ku-secondary-color);
      color: var(--page-ku-dark-background);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--page-ku-shadow);
    }

    .page-ku-cta-button:hover {
      background-color: #ffda6a;
      transform: translateY(-2px);
    }

    .page-ku-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-ku-primary-color);
      color: var(--page-ku-light-text-color);
      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.3);
      z-index: 1000;
      animation: page-ku-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-ku-floating-button:hover {
      background-color: #c73c1c;
    }

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

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

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

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

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

    .page-ku-game-card-content {
      padding: 20px;
    }

    .page-ku-game-card h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-ku-primary-color);
    }

    .page-ku-game-card p {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-ku-card-link {
        display: block;
        color: var(--page-ku-primary-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-ku-card-link:hover {
        color: var(--page-ku-secondary-color);
    }

    .page-ku-promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-ku-promo-card {
      background-color: var(--page-ku-card-background);
      border-radius: var(--page-ku-border-radius);
      box-shadow: 0 4px 10px var(--page-ku-shadow);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-ku-promo-card:hover {
      transform: scale(1.02);
    }

    .page-ku-promo-card h3 {
      color: var(--page-ku-primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-ku-promo-card p {
      color: #555;
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-ku-promo-button {
      background-color: var(--page-ku-primary-color);
      color: var(--page-ku-light-text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ku-promo-button:hover {
      background-color: #c73c1c;
    }

    .page-ku-feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ku-feature-item {
      background-color: var(--page-ku-card-background);
      border-radius: var(--page-ku-border-radius);
      box-shadow: 0 2px 8px var(--page-ku-shadow);
      padding: 20px;
      text-align: center;
      flex: 1 1 280px;
      max-width: 350px;
    }

    .page-ku-feature-item h3 {
      color: var(--page-ku-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-ku-feature-item p {
      color: #666;
      font-size: 0.95em;
    }

    .page-ku-faq-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-ku-faq-item {
        background-color: var(--page-ku-card-background);
        border-radius: var(--page-ku-border-radius);
        box-shadow: 0 2px 8px var(--page-ku-shadow);
        margin-bottom: 15px;
        overflow: hidden;
    }

    .page-ku-faq-question {
        padding: 15px 20px;
        background-color: var(--page-ku-primary-color);
        color: var(--page-ku-light-text-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .page-ku-faq-question:hover {
        background-color: #c73c1c;
    }

    .page-ku-faq-question::after {
        content: '+';
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .page-ku-faq-question.active::after {
        content: '-';
        transform: rotate(180deg);
    }

    .page-ku-faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        color: var(--page-ku-text-color);
        background-color: #fcfcfc;
    }

    .page-ku-faq-answer.active {
        max-height: 200px; /* Adjust as needed for content */
        padding: 15px 20px;
    }

    .page-ku-guide-steps {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .page-ku-step-card {
        background-color: var(--page-ku-card-background);
        border-radius: var(--page-ku-border-radius);
        box-shadow: 0 4px 10px var(--page-ku-shadow);
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .page-ku-step-icon {
        font-size: 2.5em;
        color: var(--page-ku-primary-color);
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffe0d8;
        border-radius: 50%;
    }

    .page-ku-step-content h3 {
        margin-top: 0;
        color: var(--page-ku-dark-background);
        font-size: 1.4em;
    }

    .page-ku-step-content p {
        margin-bottom: 0;
        color: #555;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ku-hero h1 {
        font-size: 2.2em;
      }
      .page-ku-hero p {
        font-size: 1em;
      }
      .page-ku-heading {
        font-size: 2em;
      }
      .page-ku-subheading {
        font-size: 1.5em;
      }
      .page-ku-game-grid, .page-ku-promo-grid {
        grid-template-columns: 1fr;
      }
      .page-ku-feature-item {
        flex-basis: 100%;
        max-width: 100%;
      }
      .page-ku-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-ku-step-card {
        flex-direction: column;
        text-align: center;
      }
      .page-ku-step-icon {
        margin-bottom: 10px;
      }
    }
  