
    :root {
      --page-8ketnet-primary-color: #e44d26; /* Cam đỏ */
      --page-8ketnet-secondary-color: #f7b731; /* Vàng cam */
      --page-8ketnet-dark-text: #333333;
      --page-8ketnet-light-text: #ffffff;
      --page-8ketnet-background-light: #f5f5f5;
      --page-8ketnet-background-dark: #2c3e50; /* Xám xanh đậm */
      --page-8ketnet-border-color: #e0e0e0;
    }

    .page-8ketnet {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-8ketnet-dark-text);
      background-color: var(--page-8ketnet-background-light);
      padding: 0;
      margin: 0;
    }

    /* Floating Login Button */
    .page-8ketnet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-8ketnet-primary-color);
      color: var(--page-8ketnet-light-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap; /* Ensure text stays on one line */
    }

    .page-8ketnet__floating-button:hover {
      background-color: #cc4522;
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-8ketnet__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: var(--page-8ketnet-background-dark);
      padding-top: 10px; /* Adjust for fixed header */
      text-align: center;
    }

    .page-8ketnet__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8ketnet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image maintains aspect ratio */
      border-radius: 8px;
    }

    .page-8ketnet__hero-content {
      padding: 20px;
      color: var(--page-8ketnet-light-text);
      text-align: center;
    }

    .page-8ketnet__hero-content h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8ketnet-light-text);
      font-weight: 700;
      line-height: 1.2;
    }

    .page-8ketnet__hero-cta {
      display: inline-block;
      background-color: var(--page-8ketnet-secondary-color);
      color: var(--page-8ketnet-dark-text);
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }

    .page-8ketnet__hero-cta:hover {
      background-color: #e0a32e;
    }

    /* General Section Styling */
    .page-8ketnet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-8ketnet-light-text);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8ketnet__section h2 {
      font-size: 2em;
      color: var(--page-8ketnet-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-8ketnet__section p {
      margin-bottom: 15px;
      font-size: 1.05em;
      line-height: 1.7;
      text-align: justify;
    }

    .page-8ketnet__section ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-8ketnet__section ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      font-size: 1.05em;
    }

    .page-8ketnet__section ul li::before {
      content: '✔';
      color: var(--page-8ketnet-primary-color);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* Image in content sections */
    .page-8ketnet__content-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px 0;
      text-align: center;
    }

    .page-8ketnet__content-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Game Categories Section */
    .page-8ketnet__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 0 10px;
    }

    .page-8ketnet__game-card {
      background-color: var(--page-8ketnet-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px;
    }

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

    .page-8ketnet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Fixed height for consistent card size */
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }

    .page-8ketnet__game-card-image {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-8ketnet__game-card h3 {
      font-size: 1.1em;
      color: var(--page-8ketnet-dark-text);
      margin: 10px 0 5px;
      font-weight: 600;
    }

    .page-8ketnet__game-card a {
      text-decoration: none;
      color: inherit;
      display: block; /* Make the whole card clickable */
    }

    .page-8ketnet__game-card a:hover h3 {
      color: var(--page-8ketnet-primary-color);
    }

    /* Promotions Section */
    .page-8ketnet__promotion-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
      background-color: var(--page-8ketnet-light-text);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-8ketnet__promotion-item h3 {
      font-size: 1.5em;
      color: var(--page-8ketnet-primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-8ketnet__promotion-item p {
      text-align: center;
      margin-bottom: 20px;
    }

    .page-8ketnet__promotion-item .page-8ketnet__hero-cta {
      margin-top: 0;
    }

    /* FAQ Section */
    .page-8ketnet__faq-section {
      background-color: var(--page-8ketnet-background-light);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 900px;
      margin: 20px auto;
    }

    .page-8ketnet__faq-section h2 {
      font-size: 2em;
      color: var(--page-8ketnet-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8ketnet__faq-item {
      background-color: var(--page-8ketnet-light-text);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    }

    .page-8ketnet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-8ketnet-light-text);
      cursor: pointer;
      font-weight: bold;
      color: var(--page-8ketnet-dark-text);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8ketnet__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8ketnet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8ketnet__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8ketnet__faq-item.active .page-8ketnet__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-8ketnet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

    .page-8ketnet__faq-item.active .page-8ketnet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important; /* Expanded padding */
      opacity: 1;
    }

    /* CTA Footer */
    .page-8ketnet__cta-footer {
      background-color: var(--page-8ketnet-primary-color);
      color: var(--page-8ketnet-light-text);
      text-align: center;
      padding: 40px 20px;
      margin-top: 40px;
      border-radius: 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8ketnet__cta-footer h2 {
      color: var(--page-8ketnet-light-text);
      margin-bottom: 20px;
      font-size: 2.2em;
    }

    .page-8ketnet__cta-footer p {
      font-size: 1.2em;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8ketnet__hero-section {
        padding-top: 10px; /* Mobile adjust for fixed header */
      }

      .page-8ketnet__hero-content h1 {
        font-size: 1.8em;
      }

      .page-8ketnet__hero-cta {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-8ketnet__floating-button {
        padding: 12px 20px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }

      .page-8ketnet__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-8ketnet__section h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
      }

      .page-8ketnet__section p,
      .page-8ketnet__section ul li {
        font-size: 0.95em;
      }

      .page-8ketnet__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-8ketnet__game-card {
        padding: 10px;
      }

      .page-8ketnet__game-card-image-wrapper {
        height: 80px;
      }

      .page-8ketnet__game-card h3 {
        font-size: 1em;
      }

      .page-8ketnet__faq-section {
        padding: 30px 15px;
        margin: 15px auto;
      }

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

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

      .page-8ketnet__faq-toggle {
        font-size: 1.3em;
      }

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

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

      .page-8ketnet__cta-footer {
        padding: 30px 15px;
        margin-top: 30px;
      }

      .page-8ketnet__cta-footer h2 {
        font-size: 1.8em;
      }

      .page-8ketnet__cta-footer p {
        font-size: 1em;
      }

      /* Image responsive important styles */
      .page-8ketnet__hero-image,
      .page-8ketnet__content-image,
      .page-8ketnet__game-card-image,
      .page-8ketnet__promotion-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-8ketnet__hero-image-wrapper,
      .page-8ketnet__content-image-wrapper,
      .page-8ketnet__game-card-image-wrapper,
      .page-8ketnet__promotion-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  