
    :root {
      --page-8ki-primary-color: #e44d26; /* Cam đỏ */
      --page-8ki-secondary-color: #333;
      --page-8ki-accent-color: #f7b731; /* Vàng cam */
      --page-8ki-text-color: #eee;
      --page-8ki-background-dark: #1a1a1a;
      --page-8ki-background-light: #2c2c2c;
      --page-8ki-border-color: #555;
    }

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

    .page-www-8ki {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px;
      box-sizing: border-box;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define --header-offset */
    }

    @media (max-width: 768px) {
      .page-www-8ki {
        padding: 5px;
        padding-top: var(--header-offset, 122px); /* Fallback for mobile as well */
      }
    }

    .page-www-8ki__brand-header {
      text-align: center;
      padding: 20px 0;
      background-color: var(--page-8ki-background-light);
      border-bottom: 2px solid var(--page-8ki-primary-color);
      margin-bottom: 20px;
    }

    .page-www-8ki__brand-logo {
      font-size: 3em;
      font-weight: bold;
      color: var(--page-8ki-primary-color);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0;
    }

    .page-www-8ki__hero-section {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-www-8ki__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.2;
      overflow: hidden;
    }

    .page-www-8ki__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-www-8ki__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-www-8ki__hero-title {
      font-size: 2.8em;
      color: var(--page-8ki-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8ki__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-8ki-accent-color);
      margin-bottom: 30px;
    }

    .page-www-8ki__cta-button {
      display: inline-block;
      background-color: var(--page-8ki-primary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      margin: 0 10px;
      border: none;
      cursor: pointer;
    }

    .page-www-8ki__cta-button:hover {
      background-color: #c93a1d;
    }

    .page-www-8ki__floating-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-www-8ki__floating-button {
      background-color: var(--page-8ki-accent-color);
      color: var(--page-8ki-secondary-color);
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-www-8ki__floating-button:hover {
      background-color: #e0a32e;
      transform: translateY(-2px);
    }

    .page-www-8ki__register-button {
      background-color: var(--page-8ki-primary-color);
      color: white;
    }

    .page-www-8ki__register-button:hover {
      background-color: #c93a1d;
    }

    .page-www-8ki__section-title {
      text-align: center;
      font-size: 2.2em;
      color: var(--page-8ki-accent-color);
      margin-bottom: 30px;
      margin-top: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-www-8ki__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-8ki-primary-color);
    }

    .page-www-8ki__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-www-8ki__game-card {
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-www-8ki__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-www-8ki__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-www-8ki__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-www-8ki__game-title {
      font-size: 1.5em;
      color: var(--page-8ki-primary-color);
      margin-bottom: 10px;
    }

    .page-www-8ki__game-description {
      font-size: 0.95em;
      color: var(--page-8ki-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-www-8ki__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-www-8ki__promotion-card {
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-www-8ki__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-www-8ki__promotion-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-www-8ki__promotion-info {
      padding: 20px;
    }

    .page-www-8ki__promotion-title {
      font-size: 1.6em;
      color: var(--page-8ki-accent-color);
      margin-bottom: 10px;
    }

    .page-www-8ki__promotion-description {
      font-size: 0.95em;
      color: var(--page-8ki-text-color);
      margin-bottom: 15px;
    }

    .page-www-8ki__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
    }

    .page-www-8ki__feature-item {
      background-color: var(--page-8ki-background-light);
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    }

    .page-www-8ki__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-www-8ki__feature-icon-wrapper {
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100px; /* Ensure minimum size */
      overflow: hidden;
    }

    .page-www-8ki__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      max-height: 100%;
      min-width: 200px; /* Minimum image size */
      min-height: 200px;
    }

    .page-www-8ki__feature-title {
      font-size: 1.3em;
      color: var(--page-8ki-primary-color);
      margin-bottom: 10px;
    }

    .page-www-8ki__feature-description {
      font-size: 0.9em;
      color: var(--page-8ki-text-color);
    }

    .page-www-8ki__payment-provider-list,
    .page-www-8ki__game-provider-list,
    .page-www-8ki__social-media-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
      justify-content: center;
    }

    .page-www-8ki__payment-provider-item,
    .page-www-8ki__game-provider-item,
    .page-www-8ki__social-media-item {
      background-color: var(--page-8ki-background-light);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px; /* Ensure enough space for content */
    }

    .page-www-8ki__payment-provider-item:hover,
    .page-www-8ki__game-provider-item:hover,
    .page-www-8ki__social-media-item:hover {
      transform: translateY(-3px);
    }

    .page-www-8ki__provider-link,
    .page-www-8ki__social-link {
      color: var(--page-8ki-accent-color);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      display: block; /* Make the whole item clickable */
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-www-8ki__provider-link:hover,
    .page-www-8ki__social-link:hover {
      text-decoration: underline;
    }

    .page-www-8ki__provider-image-wrapper,
    .page-www-8ki__social-image-wrapper {
      margin-bottom: 10px;
      width: 100%;
      height: 80px; /* Consistent height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .page-www-8ki__provider-image,
    .page-www-8ki__social-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      max-height: 100%;
      min-width: 200px; /* Minimum image size */
      min-height: 200px;
    }

    .page-www-8ki__news-section {
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 40px;
    }

    .page-www-8ki__news-article {
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--page-8ki-border-color);
    }

    .page-www-8ki__news-article:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-www-8ki__news-title {
      font-size: 1.6em;
      color: var(--page-8ki-primary-color);
      margin-bottom: 10px;
    }

    .page-www-8ki__news-date {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 10px;
      display: block;
    }

    .page-www-8ki__news-summary {
      font-size: 1em;
      color: var(--page-8ki-text-color);
    }

    .page-www-8ki__faq-section {
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 40px;
    }

    .page-www-8ki__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-8ki-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-www-8ki__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--page-8ki-accent-color);
      transition: background-color 0.3s ease;
    }

    .page-www-8ki__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8ki-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-www-8ki__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-www-8ki__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8ki-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-www-8ki__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-8ki-background-dark);
      color: var(--page-8ki-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-www-8ki__final-cta {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-8ki-background-light);
      border-radius: 10px;
      margin-top: 30px;
      border-top: 2px solid var(--page-8ki-primary-color);
    }

    .page-www-8ki__final-cta-title {
      font-size: 2em;
      color: var(--page-8ki-accent-color);
      margin-bottom: 20px;
    }

    .page-www-8ki__final-cta-description {
      font-size: 1.1em;
      color: var(--page-8ki-text-color);
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-www-8ki__brand-logo {
        font-size: 2.2em;
      }

      .page-www-8ki__hero-title {
        font-size: 2em;
      }

      .page-www-8ki__hero-subtitle {
        font-size: 1.1em;
      }

      .page-www-8ki__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
      }

      .page-www-8ki__floating-buttons-wrapper {
        bottom: 10px;
        right: 10px;
        flex-direction: row;
        gap: 8px;
      }

      .page-www-8ki__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-www-8ki__section-title {
        font-size: 1.8em;
      }

      .page-www-8ki__game-grid,
      .page-www-8ki__promotion-grid,
      .page-www-8ki__feature-list,
      .page-www-8ki__payment-provider-list,
      .page-www-8ki__game-provider-list,
      .page-www-8ki__social-media-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-www-8ki__game-card,
      .page-www-8ki__promotion-card,
      .page-www-8ki__feature-item,
      .page-www-8ki__payment-provider-item,
      .page-www-8ki__game-provider-item,
      .page-www-8ki__social-media-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-8ki__game-image-wrapper,
      .page-www-8ki__promotion-image-wrapper {
        height: 180px;
      }

      .page-www-8ki__feature-icon-wrapper {
        height: 80px;
      }

      .page-www-8ki__provider-image-wrapper,
      .page-www-8ki__social-image-wrapper {
        height: 60px;
      }

      .page-www-8ki__news-title {
        font-size: 1.4em;
      }

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

      .page-www-8ki__faq-question h3 {
        font-size: 1em;
      }

      .page-www-8ki__faq-answer {
        padding: 0 10px;
      }

      .page-www-8ki__faq-item.active .page-www-8ki__faq-answer {
        padding: 15px 10px !important;
      }

      .page-www-8ki__final-cta-title {
        font-size: 1.6em;
      }

      .page-www-8ki__final-cta-description {
        font-size: 1em;
      }

      /* Ensure all images are responsive on mobile */
      .page-www-8ki img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-www-8ki__hero-image,
      .page-www-8ki__game-image,
      .page-www-8ki__promotion-image,
      .page-www-8ki__feature-icon,
      .page-www-8ki__provider-image,
      .page-www-8ki__social-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-www-8ki__hero-image-wrapper,
      .page-www-8ki__game-image-wrapper,
      .page-www-8ki__promotion-image-wrapper,
      .page-www-8ki__feature-icon-wrapper,
      .page-www-8ki__provider-image-wrapper,
      .page-www-8ki__social-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  