
    :root {
      --page-79king2-primary-color: #e44d26; /* Màu cam đỏ */
      --page-79king2-secondary-color: #f7b731; /* Màu vàng cam */
      --page-79king2-text-color: #333;
      --page-79king2-light-bg: #f9f9f9;
      --page-79king2-dark-bg: #2c3e50;
      --page-79king2-white: #ffffff;
      --page-79king2-border-color: #ddd;
    }

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

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

    .page-79king2__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-79king2-white);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-79king2__section--dark {
      background-color: var(--page-79king2-dark-bg);
      color: var(--page-79king2-white);
    }

    .page-79king2__section-title {
      text-align: center;
      color: var(--page-79king2-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-79king2__section--dark .page-79king2__section-title {
      color: var(--page-79king2-secondary-color);
    }

    /* Hero Section */
    .page-79king2__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px; /* Increased for better content visibility */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-79king2-white);
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

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

    .page-79king2__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

    .page-79king2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: var(--page-79king2-white);
    }

    .page-79king2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      color: var(--page-79king2-white);
    }

    .page-79king2__cta-button {
      display: inline-block;
      background-color: var(--page-79king2-primary-color);
      color: var(--page-79king2-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-79king2__cta-button:hover {
      background-color: #d4421f;
      transform: translateY(-2px);
    }

    /* Floating Button */
    .page-79king2__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-79king2-primary-color);
      color: var(--page-79king2-white);
      padding: 12px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      font-weight: bold;
      text-decoration: none;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: page-79king2__float-animation 2s ease-in-out infinite;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .page-79king2__floating-button:hover {
      background-color: #d4421f;
    }

    .page-79king2__floating-button svg {
      fill: var(--page-79king2-white);
      width: 20px;
      height: 20px;
    }

    @keyframes page-79king2__float-animation {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
      100% { transform: translateY(0px); }
    }

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

    .page-79king2__game-card {
      background-color: var(--page-79king2-light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-79king2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-79king2__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-79king2__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-79king2__game-card-title {
      font-size: 1.5em;
      color: var(--page-79king2-primary-color);
      margin-bottom: 10px;
    }

    .page-79king2__game-card-description {
      font-size: 0.95em;
      color: var(--page-79king2-text-color);
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-79king2__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-79king2__promotion-item {
      background-color: var(--page-79king2-white);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-79king2__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-79king2__promotion-title {
      color: var(--page-79king2-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-79king2__promotion-description {
      color: var(--page-79king2-text-color);
      font-size: 1em;
      margin-bottom: 20px;
    }

    /* Guide Section */
    .page-79king2__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-79king2__guide-step {
      background-color: var(--page-79king2-white);
      padding: 25px;
      border-left: 5px solid var(--page-79king2-primary-color);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-79king2__guide-step-title {
      color: var(--page-79king2-primary-color);
      margin-bottom: 10px;
      font-size: 1.6em;
    }

    .page-79king2__guide-step-content {
      color: var(--page-79king2-text-color);
      font-size: 1em;
    }

    /* Download App Section */
    .page-79king2__download-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
    }

    .page-79king2__download-qr-code {
      max-width: 250px;
      width: 100%;
      height: auto;
      border: 5px solid var(--page-79king2-primary-color);
      border-radius: 10px;
    }

    .page-79king2__download-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-79king2__download-button {
      background-color: var(--page-79king2-primary-color);
      color: var(--page-79king2-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
    }

    .page-79king2__download-button:hover {
      background-color: #d4421f;
    }

    .page-79king2__download-button svg {
      fill: var(--page-79king2-white);
      width: 24px;
      height: 24px;
    }

    /* FAQ Section */
    .page-79king2__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding: 0 20px;
    }

    .page-79king2__faq-item {
      background-color: var(--page-79king2-white);
      border: 1px solid var(--page-79king2-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-79king2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-79king2-light-bg);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-79king2-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-79king2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-79king2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-79king2__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-79king2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-79king2-text-color);
    }

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

    /* Why Choose Section */
    .page-79king2__why-choose-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-79king2__why-choose-item {
      background-color: var(--page-79king2-white);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-79king2__why-choose-item h3 {
      color: var(--page-79king2-primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-79king2__why-choose-item p {
      color: var(--page-79king2-text-color);
      font-size: 0.95em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-79king2__hero-title {
        font-size: 2.2em;
      }

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

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

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

      .page-79king2__game-grid,
      .page-79king2__promotion-list,
      .page-79king2__why-choose-list {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-79king2__faq-list {
        padding: 0 10px;
      }

      .page-79king2__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-79king2__download-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-79king2__download-button {
        width: 80%;
        max-width: 300px;
        justify-content: center;
      }

      /* Ensure all images are responsive on mobile */
      .page-79king2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-79king2__game-card-image,
      .page-79king2__download-qr-code,
      .page-79king2__hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  