
    /* Base styles for the k88 page */
    .page-k88 {
      background-color: #000;
      color: #fff;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-k88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-k88__section {
      padding: 40px 0;
    }

    .page-k88__section-title {
      font-size: 2.5em;
      color: #FDD835; /* Yellow */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-k88__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Hero Section */
    .page-k88__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      margin-bottom: 20px;
    }

    .page-k88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .page-k88__hero-content {
      padding: 20px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      margin-top: -50px; /* Overlap with image for visual effect */
      position: relative;
      z-index: 1;
    }

    .page-k88__hero-title {
      font-size: 3em;
      color: #FDD835;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-k88__hero-subtitle {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 20px;
    }

    /* Floating Login Button */
    .page-k88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FDD835; /* Yellow */
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(253, 216, 53, 0.4);
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      text-align: center;
      min-width: 250px;
    }

    .page-k88__floating-button:hover {
      transform: translateX(-50%) translateY(-5px);
      box-shadow: 0 8px 20px rgba(253, 216, 53, 0.6);
    }

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

    .page-k88__game-category-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 280px;
    }

    .page-k88__game-category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-k88__game-category-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-k88__game-category-title {
      font-size: 1.5em;
      color: #FDD835;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-k88__game-category-description {
      color: #ccc;
      font-size: 0.95em;
      flex-grow: 1;
    }

    /* Game Providers */
    .page-k88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      padding: 20px;
      background-color: #111;
      border-radius: 10px;
    }

    .page-k88__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #222;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-k88__provider-item:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(253, 216, 53, 0.2);
    }

    .page-k88__provider-logo {
      width: 100%;
      max-width: 180px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-k88__provider-name {
      color: #fff;
      font-weight: bold;
      font-size: 1em;
    }

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

    .page-k88__guide-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 250px;
    }

    .page-k88__guide-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-k88__guide-icon {
      font-size: 3em;
      color: #FDD835;
      margin-bottom: 15px;
    }

    .page-k88__guide-title {
      font-size: 1.8em;
      color: #FDD835;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-k88__guide-description {
      color: #ccc;
      font-size: 1em;
      flex-grow: 1;
    }

    /* Why Choose K88 Section */
    .page-k88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-k88__feature-item {
      background-color: #1a1a1a;
      border-left: 5px solid #FDD835;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-k88__feature-title {
      font-size: 1.5em;
      color: #FDD835;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-k88__feature-description {
      color: #ccc;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-k88__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-k88__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-k88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #222;
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-k88__faq-question:hover {
      background-color: #333;
    }

    .page-k88__faq-question h3 {
      margin: 0;
      color: #FDD835;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-k88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: #FDD835;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-k88__faq-item.active .page-k88__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-k88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-k88__container {
        padding: 10px;
      }

      .page-k88__hero-section {
        padding-top: 10px; /* Mobile safe area for fixed header */
      }

      .page-k88__hero-title {
        font-size: 2.2em;
      }

      .page-k88__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-k88__game-categories-grid,
      .page-k88__guide-grid,
      .page-k88__feature-list {
        grid-template-columns: 1fr;
      }

      .page-k88__floating-button {
        width: calc(100% - 40px);
        min-width: unset;
        font-size: 1em;
        padding: 12px 20px;
      }

      .page-k88__faq-question,
      .page-k88__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Image responsive optimization */
      .page-k88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-k88__hero-section img,
      .page-k88__game-category-card img,
      .page-k88__provider-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-k88__hero-title {
        font-size: 1.8em;
      }

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

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

      .page-k88__game-category-title {
        font-size: 1.3em;
      }

      .page-k88__guide-title {
        font-size: 1.5em;
      }
    }
  