
    :root {
      --page-ku68fun__primary-color: #e02f2f;
      --page-ku68fun__secondary-color: #f7b731;
      --page-ku68fun__dark-background: #1a1a1a;
      --page-ku68fun__light-background: #ffffff;
      --page-ku68fun__text-color: #333333;
      --page-ku68fun__white-text: #ffffff;
      --page-ku68fun__gray-text: #666666;
    }

    .page-ku68fun {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-ku68fun__text-color);
      background-color: #f5f5f5;
    }

    .page-ku68fun__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-ku68fun__light-background);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-ku68fun__section-dark {
      background-color: var(--page-ku68fun__dark-background);
      color: var(--page-ku68fun__white-text);
    }

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

    .page-ku68fun__title {
      font-size: 2.5em;
      color: var(--page-ku68fun__primary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-ku68fun__subtitle {
      font-size: 1.8em;
      color: var(--page-ku68fun__dark-background);
      margin-bottom: 15px;
      border-left: 5px solid var(--page-ku68fun__primary-color);
      padding-left: 10px;
    }

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

    .page-ku68fun__button {
      display: inline-block;
      background-color: var(--page-ku68fun__primary-color);
      color: var(--page-ku68fun__white-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-ku68fun__button:hover {
      background-color: #c02a2a;
    }

    /* Hero Section */
    .page-ku68fun__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Adjust for fixed header */
      text-align: center;
      background-color: #000;
    }

    .page-ku68fun__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      opacity: 0.8;
    }

    .page-ku68fun__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--page-ku68fun__white-text);
      max-width: 90%;
      z-index: 2;
    }

    .page-ku68fun__hero-title {
      font-size: 3em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: var(--page-ku68fun__secondary-color);
    }

    .page-ku68fun__hero-description {
      font-size: 1.2em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Login Button */
    .page-ku68fun__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      animation: page-ku68fun__pulse 1.5s infinite;
    }

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

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

    .page-ku68fun__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-ku68fun__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-ku68fun__game-image {
      width: 100%;
      height: 200px;
      max-width: 100%;
      object-fit: cover;
      border-bottom: 3px solid var(--page-ku68fun__primary-color);
    }

    .page-ku68fun__game-title {
      font-size: 1.4em;
      color: var(--page-ku68fun__dark-background);
      margin: 15px 0 10px;
      font-weight: bold;
    }

    .page-ku68fun__game-description {
      font-size: 0.95em;
      color: var(--page-ku68fun__gray-text);
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Features Section */
    .page-ku68fun__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ku68fun__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-ku68fun__feature-icon {
      width: 80px;
      height: 80px;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-ku68fun__feature-title {
      font-size: 1.3em;
      color: var(--page-ku68fun__primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-ku68fun__feature-description {
      color: var(--page-ku68fun__gray-text);
      font-size: 0.9em;
    }

    /* FAQ Section */
    .page-ku68fun__faq-section {
      background-color: #f9f9f9;
      padding: 50px 0;
    }

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

    .page-ku68fun__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #eee;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-ku68fun__dark-background);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-ku68fun__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-ku68fun__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-ku68fun__faq-item.active .page-ku68fun__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually, or '-' */
    }

    .page-ku68fun__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-ku68fun__gray-text);
    }

    .page-ku68fun__faq-item.active .page-ku68fun__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px !important; /* Use !important to ensure override */
      opacity: 1;
    }

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

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

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

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

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

      .page-ku68fun__game-grid {
        grid-template-columns: 1fr;
      }

      .page-ku68fun__game-image {
        height: 180px;
      }

      .page-ku68fun__game-title {
        font-size: 1.2em;
      }

      .page-ku68fun__game-description {
        font-size: 0.85em;
      }

      .page-ku68fun__features-grid {
        grid-template-columns: 1fr;
      }

      .page-ku68fun__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

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

      .page-ku68fun__faq-item.active .page-ku68fun__faq-answer {
        padding: 15px !important;
      }
      
      /* Ensure images are responsive on mobile */
      .page-ku68fun img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ku68fun__game-image,
      .page-ku68fun__hero-image,
      .page-ku68fun__feature-icon {
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  