
    :root {
      --page-kkwins-primary-color: #e44d26; /* Orange/Red for highlights */
      --page-kkwins-secondary-color: #333; /* Dark grey for text */
      --page-kkwins-light-bg: #f5f5f5; /* Light grey background */
      --page-kkwins-dark-bg: #2a2a2a; /* Dark background for sections */
      --page-kkwins-text-color: #333;
      --page-kkwins-white-text: #ffffff;
      --page-kkwins-border-color: #ddd;
      --page-kkwins-shadow: rgba(0, 0, 0, 0.1);
    }

    /* Base styles for the page-kkwins scope */
    .page-kkwins {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kkwins-text-color);
      background-color: var(--page-kkwins-light-bg);
      padding-bottom: 80px; /* Space for the floating CTA */
    }

    .page-kkwins h1,
    .page-kkwins h2,
    .page-kkwins h3,
    .page-kkwins h4,
    .page-kkwins h5,
    .page-kkwins h6 {
      color: var(--page-kkwins-secondary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-kkwins p {
      margin-bottom: 1em;
    }

    .page-kkwins a {
      color: var(--page-kkwins-primary-color);
      text-decoration: none;
    }

    .page-kkwins a:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .page-kkwins__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      padding-top: 60px; /* Space for fixed header on mobile */
      background-color: var(--page-kkwins-dark-bg);
    }

    .page-kkwins__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .page-kkwins__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image is not stretched */
      border-radius: 8px;
    }

    .page-kkwins__hero-content {
      padding: 20px;
      color: var(--page-kkwins-white-text);
      max-width: 900px;
      margin: 0 auto;
    }

    .page-kkwins__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-kkwins-primary-color);
    }

    .page-kkwins__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-kkwins-white-text);
    }

    .page-kkwins__cta-button {
      display: inline-block;
      background-color: var(--page-kkwins-primary-color);
      color: var(--page-kkwins-white-text);
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      margin-top: 10px;
    }

    .page-kkwins__cta-button:hover {
      background-color: #c73c1c;
      text-decoration: none;
    }

    /* Floating CTA Button */
    .page-kkwins__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-kkwins-primary-color);
      padding: 15px 10px;
      text-align: center;
      box-shadow: 0 -2px 10px var(--page-kkwins-shadow);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-kkwins__floating-cta .page-kkwins__cta-button {
      display: block;
      width: 100%;
      padding: 15px 10px;
      font-size: 1.2em;
      margin: 0;
      border-radius: 0;
    }

    /* Content Sections */
    .page-kkwins__section {
      padding: 30px 20px;
      margin-bottom: 20px;
      background-color: var(--page-kkwins-white-text);
      border-radius: 8px;
      box-shadow: 0 2px 5px var(--page-kkwins-shadow);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-kkwins__section-title {
      font-size: 1.8em;
      color: var(--page-kkwins-primary-color);
      text-align: center;
      margin-bottom: 25px;
    }

    /* Game Categories */
    .page-kkwins__game-categories {
      background-color: var(--page-kkwins-dark-bg);
      color: var(--page-kkwins-white-text);
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px var(--page-kkwins-shadow);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-kkwins__game-categories .page-kkwins__section-title {
      color: var(--page-kkwins-primary-color);
    }

    .page-kkwins__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .page-kkwins__category-item {
      background-color: #3a3a3a;
      padding: 15px;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-kkwins__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-kkwins__category-icon {
      width: 100%;
      max-width: 250px; /* Ensure images are not too small */
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      object-fit: contain;
    }

    .page-kkwins__category-name {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-kkwins-white-text);
    }

    /* Why Choose Section */
    .page-kkwins__advantage-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-kkwins__advantage-item {
      background-color: var(--page-kkwins-light-bg);
      padding: 20px;
      border-left: 5px solid var(--page-kkwins-primary-color);
      border-radius: 5px;
      box-shadow: 0 1px 3px var(--page-kkwins-shadow);
    }

    .page-kkwins__advantage-item h3 {
      color: var(--page-kkwins-primary-color);
      margin-top: 0;
      font-size: 1.3em;
    }

    /* FAQ Section */
    .page-kkwins__faq-section {
      background-color: var(--page-kkwins-white-text);
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px var(--page-kkwins-shadow);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-kkwins__faq-item {
      border-bottom: 1px solid var(--page-kkwins-border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-kkwins__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-kkwins__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-kkwins-secondary-color);
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-kkwins__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-kkwins-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-kkwins__faq-question:hover {
      color: var(--page-kkwins-primary-color);
    }

    .page-kkwins__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-kkwins-primary-color);
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-kkwins__faq-item.active .page-kkwins__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or similar on active */
    }

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

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

    /* General Image Styling */
    .page-kkwins img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-kkwins__hero-section {
        padding-top: 80px; /* Space for fixed header on desktop */
      }

      .page-kkwins__hero-title {
        font-size: 3em;
      }

      .page-kkwins__hero-description {
        font-size: 1.2em;
      }

      .page-kkwins__section {
        padding: 50px 30px;
      }

      .page-kkwins__section-title {
        font-size: 2.5em;
      }

      .page-kkwins__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

      .page-kkwins__advantage-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-kkwins__floating-cta {
        width: auto;
        left: auto;
        right: 20px;
        bottom: 20px;
        border-radius: 50px;
        padding: 10px 20px;
      }

      .page-kkwins__floating-cta .page-kkwins__cta-button {
        display: inline-block;
        width: auto;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1.1em;
      }
    }

    /* Force responsive image styles for mobile */
    @media (max-width: 768px) {
      .page-kkwins img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kkwins .page-kkwins__hero-image-container,
      .page-kkwins .page-kkwins__category-icon-container,
      .page-kkwins .page-kkwins__image-wrapper { /* Add other image containers here */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  