
    :root {
      --page-kkwin03-primary-color: #e44d26; /* Orange-red for action */
      --page-kkwin03-secondary-color: #333; /* Dark grey for text */
      --page-kkwin03-accent-color: #f7b32b; /* Gold for highlights */
      --page-kkwin03-background-color: #f4f4f4; /* Light grey background */
      --page-kkwin03-text-light: #fff;
      --page-kkwin03-text-dark: #333;
      --page-kkwin03-border-radius: 8px;
      --page-kkwin03-spacing-unit: 16px;
    }

    .page-kkwin03 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kkwin03-text-dark);
      background-color: var(--page-kkwin03-background-color);
      padding: 0;
      margin: 0;
    }

    .page-kkwin03__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--page-kkwin03-spacing-unit);
    }

    .page-kkwin03__hero-section {
      background-color: #222;
      color: var(--page-kkwin03-text-light);
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-kkwin03__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: var(--page-kkwin03-border-radius);
      box-sizing: border-box;
    }

    .page-kkwin03__hero-content {
      position: relative;
      z-index: 1;
      padding: var(--page-kkwin03-spacing-unit);
    }

    .page-kkwin03__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-kkwin03-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-kkwin03__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: var(--page-kkwin03-text-light);
    }

    .page-kkwin03__button {
      display: inline-block;
      background-color: var(--page-kkwin03-primary-color);
      color: var(--page-kkwin03-text-light);
      padding: 12px 25px;
      border-radius: var(--page-kkwin03-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

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

    .page-kkwin03__section {
      padding: 40px var(--page-kkwin03-spacing-unit);
      background-color: var(--page-kkwin03-text-light);
      margin-bottom: 20px;
      border-radius: var(--page-kkwin03-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-kkwin03__section--dark {
      background-color: var(--page-kkwin03-secondary-color);
      color: var(--page-kkwin03-text-light);
    }

    .page-kkwin03__section-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-kkwin03-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-kkwin03__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-kkwin03-accent-color);
      border-radius: 2px;
    }

    .page-kkwin03__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-kkwin03__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-kkwin03-spacing-unit);
      justify-items: center;
    }

    .page-kkwin03__game-card {
      background-color: #fff;
      border-radius: var(--page-kkwin03-border-radius);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 250px; /* Limit card width */
    }

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

    .page-kkwin03__game-card-image-wrapper {
      width: 100%;
      height: 150px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-kkwin03__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensure image covers the area */
    }

    .page-kkwin03__game-card-title {
      font-size: 1.1em;
      font-weight: bold;
      padding: 10px;
      color: var(--page-kkwin03-secondary-color);
    }

    .page-kkwin03__features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-kkwin03__features-item {
      background-color: #f9f9f9;
      padding: var(--page-kkwin03-spacing-unit);
      border-left: 5px solid var(--page-kkwin03-primary-color);
      border-radius: var(--page-kkwin03-border-radius);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
    }

    .page-kkwin03__faq-section {
      padding: 40px var(--page-kkwin03-spacing-unit);
      background-color: var(--page-kkwin03-text-light);
      margin-bottom: 20px;
      border-radius: var(--page-kkwin03-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-kkwin03__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: var(--page-kkwin03-border-radius);
      overflow: hidden;
    }

    .page-kkwin03__faq-question {
      background-color: #f0f0f0;
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-kkwin03-secondary-color);
      transition: background-color 0.3s ease;
    }

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

    .page-kkwin03__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kkwin03__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-kkwin03__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;
      background-color: #fff;
      color: var(--page-kkwin03-text-dark);
    }

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

    .page-kkwin03__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kkwin03-accent-color);
      color: var(--page-kkwin03-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-kkwin03__floating-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    .page-kkwin03__floating-button-icon {
      font-size: 1.5em;
    }

    @media (min-width: 768px) {
      .page-kkwin03__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

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

      .page-kkwin03__hero-title {
        font-size: 3.5em;
      }

      .page-kkwin03__hero-subtitle {
        font-size: 1.5em;
      }

      .page-kkwin03__hero-section {
        padding-top: 10px; /* Desktop padding for fixed header */
      }
    }

    @media (max-width: 768px) {
      .page-kkwin03__container {
        padding: calc(var(--page-kkwin03-spacing-unit) / 2);
      }

      .page-kkwin03__hero-section {
        padding: 10px 0 30px 0; /* Mobile padding-top for fixed header */
      }

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

      .page-kkwin03__hero-subtitle {
        font-size: 1em;
      }

      .page-kkwin03__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-kkwin03__section {
        padding: 30px calc(var(--page-kkwin03-spacing-unit) / 2);
      }

      .page-kkwin03__section-title {
        font-size: 1.8em;
      }

      .page-kkwin03__text-block {
        font-size: 1em;
      }

      .page-kkwin03__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: calc(var(--page-kkwin03-spacing-unit) / 2);
      }

      .page-kkwin03__game-card-title {
        font-size: 0.9em;
        padding: 8px;
      }

      .page-kkwin03__game-card-image-wrapper {
        height: 120px;
      }

      .page-kkwin03__faq-question {
        padding: 12px;
      }

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

      .page-kkwin03__faq-answer {
        padding: 0 12px;
      }

      .page-kkwin03__faq-item.active .page-kkwin03__faq-answer {
        padding: 15px 12px !important;
      }

      .page-kkwin03__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      
      /* Image responsive optimization for mobile */
      .page-kkwin03 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kkwin03__game-card-image-wrapper,
      .page-kkwin03__hero-section img {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  