
    .page-k9cc05 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-k9cc05__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      background-color: #004085; /* Dark blue */
      color: #fff;
      padding-top: 10px; /* Fixed header spacing */
      padding-bottom: 40px;
    }

    .page-k9cc05__hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
    }

    .page-k9cc05__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-k9cc05__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00; /* Gold */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-k9cc05__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-k9cc05__promo-button-fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffcc00; /* Gold */
      color: #004085; /* Dark blue */
      padding: 15px 10px;
      text-align: center;
      font-size: 1.3em;
      font-weight: bold;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      animation: page-k9cc05__pulse 1.5s infinite;
      cursor: pointer;
      text-decoration: none; /* Ensure it looks like a button */
      display: block; /* Make it block for full width */
      box-sizing: border-box;
    }

    .page-k9cc05__promo-button-fixed:hover {
      background-color: #e6b800; /* Darker gold */
    }

    @keyframes page-k9cc05__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }

    .page-k9cc05__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-k9cc05__section-title {
      font-size: 2em;
      color: #004085;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-k9cc05__text-block {
      margin-bottom: 20px;
      text-align: justify;
      color: #555;
    }

    .page-k9cc05__text-block strong {
      color: #004085;
    }

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

    .page-k9cc05__grid-item {
      background-color: #f0f8ff; /* Light blue */
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-k9cc05__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .page-k9cc05__grid-item-icon {
      height: auto;
      max-width: 100%;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-k9cc05__grid-item-title {
      font-size: 1.3em;
      color: #004085;
      margin-bottom: 10px;
    }

    .page-k9cc05__grid-item-description {
      font-size: 0.95em;
      color: #666;
      text-align: left;
    }

    .page-k9cc05__game-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-k9cc05__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-k9cc05__game-card:hover {
      transform: translateY(-8px);
    }

    .page-k9cc05__game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-k9cc05__game-card-content {
      padding: 20px;
      text-align: center;
    }

    .page-k9cc05__game-card-title {
      font-size: 1.4em;
      color: #004085;
      margin-bottom: 10px;
    }

    .page-k9cc05__game-card-description {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 15px;
    }

    .page-k9cc05__game-card-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #004085;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-k9cc05__game-card-button:hover {
      background-color: #e6b800;
    }

    .page-k9cc05__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-k9cc05__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-k9cc05__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f8ff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #004085;
      font-size: 1.1em;
    }

    .page-k9cc05__faq-question:hover {
      background-color: #e6f0f8;
    }

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

    .page-k9cc05__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #ffcc00;
    }

    .page-k9cc05__faq-item.active .page-k9cc05__faq-toggle {
      transform: rotate(45deg);
    }

    .page-k9cc05__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 0.95em;
      opacity: 0;
      text-align: justify;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-k9cc05__hero-title {
        font-size: 2em;
      }

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

      .page-k9cc05__section {
        padding: 30px 15px;
        margin-top: 15px;
      }

      .page-k9cc05__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
      }

      .page-k9cc05__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-k9cc05__grid-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-k9cc05__grid-item-description {
        word-break: break-word !important;
      }

      .page-k9cc05__game-card-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-k9cc05__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-k9cc05__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-k9cc05__promo-button-fixed {
        font-size: 1.1em;
        padding: 12px 10px;
      }

      .page-k9cc05__faq-section {
        padding: 30px 15px;
        margin-top: 15px;
      }

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

      .page-k9cc05__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }
    @media (max-width: 480px) {
      .page-k9cc05__hero-title {
        font-size: 1.8em;
      }
      .page-k9cc05__section-title {
        font-size: 1.5em;
      }
      .page-k9cc05__promo-button-fixed {
        font-size: 1em;
        padding: 10px 5px;
      }
    }
  