
    .page-0k9 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-0k9__hero-section {
      position: relative;
      background-color: #0d1a26;
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0;
      overflow: hidden;
    }

    .page-0k9__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

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

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

    .page-0k9__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-0k9__cta-button {
      display: inline-block;
      background-color: #e44d26; /* Orange */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-0k9__cta-button:hover {
      background-color: #f26522;
    }

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

    .page-0k9__section--dark {
      background-color: #1a2a3a;
      color: #eee;
    }

    .page-0k9__section-title {
      font-size: 2em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-0k9__section-title--dark {
      color: #ffdd00;
    }

    .page-0k9__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e44d26;
      margin: 10px auto 0;
    }

    .page-0k9__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-0k9__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 300px; /* Ensure cards don't get too wide on large screens */
      box-sizing: border-box;
    }

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

    .page-0k9__game-image-wrapper {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .page-0k9__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-0k9__game-title {
      font-size: 1.3em;
      color: #0d1a26;
      padding: 15px 10px;
      margin: 0;
      font-weight: bold;
    }

    .page-0k9__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-0k9__promotion-item {
      background-color: #f0f8ff;
      border-left: 5px solid #e44d26;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-0k9__promotion-item h3 {
      color: #e44d26;
      margin-top: 0;
      font-size: 1.2em;
    }

    .page-0k9__promotion-item p {
      color: #555;
      font-size: 0.95em;
    }

    .page-0k9__features-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .page-0k9__feature-card {
      background-color: #1a2a3a;
      color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      flex: 1 1 calc(33% - 25px);
      min-width: 280px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

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

    .page-0k9__feature-icon-wrapper {
      width: 100%;
      height: 200px; /* Minimum size */
      margin-bottom: 20px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-0k9__feature-icon {
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-0k9__feature-card h3 {
      color: #ffdd00;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-0k9__feature-card p {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-0k9__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-0k9__floating-button {
      background-color: #e44d26;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-0k9__floating-button:hover {
      background-color: #f26522;
      transform: translateY(-2px);
    }

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

    .page-0k9__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

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

    .page-0k9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-0k9__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-0k9__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-0k9__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-0k9__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: #555;
      font-size: 0.95em;
    }

    .page-0k9__faq-item.active .page-0k9__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-0k9__text-content {
      font-size: 1em;
      color: #444;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-0k9__text-content h2, .page-0k9__text-content h3 {
      color: #0d1a26;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-0k9__text-content ul {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .page-0k9__text-content li {
      margin-bottom: 8px;
    }

    .page-0k9__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-0k9__provider-logo-wrapper {
      width: 100%;
      max-width: 200px; /* Ensure images are not too small */
      height: 100px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box;
      padding: 10px;
    }

    .page-0k9__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

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

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

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

      .page-0k9__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

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

      .page-0k9__game-card {
        max-width: 100%;
      }

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

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

      .page-0k9__features-grid {
        flex-direction: column;
      }

      .page-0k9__feature-card {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .page-0k9__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
      }

      .page-0k9__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-0k9__faq-section {
        padding: 30px 15px;
      }

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

      .page-0k9__faq-answer {
        font-size: 0.9em;
      }

      .page-0k9__text-content ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-0k9__text-content li {
        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;
        word-break: break-word !important;
      }

      .page-0k9__provider-logo-wrapper {
        max-width: calc(50% - 10px);
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-0k9__floating-buttons {
        bottom: 15px;
        gap: 8px;
      }
      .page-0k9__floating-button {
        padding: 10px 10px;
        font-size: 0.85em;
      }
      .page-0k9__provider-logo-wrapper {
        max-width: calc(100% - 20px);
      }
    }
  