
    :root {
      --page-kv888-primary-color: #f7b32b; /* Gold/Yellow */
      --page-kv888-secondary-color: #c70039; /* Red */
      --page-kv888-dark-bg: #1a1a1a;
      --page-kv888-light-bg: #f5f5f5;
      --page-kv888-text-color: #333;
      --page-kv888-white-text: #fff;
      --page-kv888-border-color: #ddd;
      --page-kv888-shadow: rgba(0, 0, 0, 0.1);
      --page-kv888-transition: all 0.3s ease;
    }

    .page-kv888 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kv888-text-color);
      background-color: var(--page-kv888-light-bg);
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-kv888__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 10px 20px 40px; /* Default padding for mobile, 10px to clear header */
      box-sizing: border-box;
      color: var(--page-kv888-white-text);
      overflow: hidden;
      background-color: var(--page-kv888-dark-bg); /* Fallback background */
    }

    .page-kv888__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-kv888__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-kv888__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-kv888-primary-color);
      text-shadow: 2px 2px 4px var(--page-kv888-shadow);
    }

    .page-kv888__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-kv888-white-text);
    }

    .page-kv888__cta-button {
      display: inline-block;
      background-color: var(--page-kv888-secondary-color);
      color: var(--page-kv888-white-text);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: var(--page-kv888-transition);
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px var(--page-kv888-shadow);
    }

    .page-kv888__cta-button:hover {
      background-color: #a0002d;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    /* Floating Button */
    .page-kv888__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 40px);
      max-width: 400px;
      box-sizing: border-box;
    }

    .page-kv888__floating-button {
      display: block;
      width: 100%;
      background-color: var(--page-kv888-primary-color);
      color: var(--page-kv888-dark-bg);
      padding: 15px 20px;
      border-radius: 50px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: var(--page-kv888-transition);
      animation: page-kv888__pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-kv888__floating-button:hover {
      background-color: #e6a220;
      transform: scale(1.02);
    }

    @keyframes page-kv888__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Sections General */
    .page-kv888__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

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

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

    /* Text Content */
    .page-kv888__text-content p {
      margin-bottom: 1em;
      text-align: justify;
    }

    .page-kv888__text-content ul {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 1em;
    }

    .page-kv888__text-content li {
      margin-bottom: 0.5em;
    }

    /* Game Categories */
    .page-kv888__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-kv888__game-card {
      background-color: var(--page-kv888-white-text);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-kv888-shadow);
      transition: var(--page-kv888-transition);
      text-align: center;
      border: 1px solid var(--page-kv888-border-color);
    }

    .page-kv888__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-kv888__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-kv888__game-info {
      padding: 20px;
    }

    .page-kv888__game-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-kv888-secondary-color);
    }

    .page-kv888__game-description {
      font-size: 0.95em;
      color: var(--page-kv888-text-color);
    }

    /* How-to Section */
    .page-kv888__steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-kv888__step-item {
      background-color: var(--page-kv888-white-text);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--page-kv888-border-color);
    }

    .page-kv888__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-kv888-primary-color);
      flex-shrink: 0;
      line-height: 1;
    }

    .page-kv888__step-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-kv888-secondary-color);
    }

    .page-kv888__step-content p {
      font-size: 1em;
      color: var(--page-kv888-text-color);
      text-align: left;
    }

    /* FAQ Section */
    .page-kv888__faq-container {
      background-color: var(--page-kv888-white-text);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 15px var(--page-kv888-shadow);
      border: 1px solid var(--page-kv888-border-color);
    }

    .page-kv888__faq-item {
      border-bottom: 1px solid var(--page-kv888-border-color);
      margin-bottom: 10px;
    }

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

    .page-kv888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      transition: var(--page-kv888-transition);
    }

    .page-kv888__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-kv888__faq-question h3 {
      font-size: 1.15em;
      margin: 0;
      color: var(--page-kv888-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-kv888__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-kv888-primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-kv888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--page-kv888-text-color);
    }

    .page-kv888__faq-item.active .page-kv888__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px 15px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-kv888__faq-answer p {
      margin: 0;
      padding-bottom: 15px;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kv888__hero-section {
        padding-top: 10px; /* Ensure content is not hidden by fixed header */
        min-height: 350px;
      }

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

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

      .page-kv888__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kv888__section {
        padding: 30px 15px;
      }

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

      .page-kv888__game-grid {
        grid-template-columns: 1fr;
      }

      .page-kv888__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-kv888__step-number {
        margin-bottom: 10px;
      }

      .page-kv888__step-content h3, .page-kv888__step-content p {
        text-align: center;
      }

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

      /* Force responsive image styles */
      .page-kv888 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kv888__game-image {
        height: 180px !important;
      }
    }

    @media (min-width: 769px) {
      .page-kv888__hero-section {
        padding-top: 10px; /* Ensure content is not hidden by fixed header */
      }
      .page-kv888__steps-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 480px) {
      .page-kv888__floating-button-wrapper {
        width: calc(100% - 30px);
      }
      .page-kv888__hero-title {
        font-size: 1.8em;
      }
      .page-kv888__hero-subtitle {
        font-size: 0.9em;
      }
    }
  