
    .page-79king2 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, actual header offset is on body */
    }

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

    .page-79king2__section-title {
      font-size: 2.5em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
      font-weight: bold;
    }
    .page-79king2__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #e94560;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-79king2__subtitle {
      font-size: 1.8em;
      color: #f0f0f0;
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .page-79king2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #d0d0d0;
    }

    .page-79king2__text-link {
      color: #e94560;
      text-decoration: none;
      font-weight: bold;
    }
    .page-79king2__text-link:hover {
      text-decoration: underline;
    }

    /* Floating Buttons */
    .page-79king2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-79king2__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      min-width: 120px; /* Ensure buttons are not too small */
    }

    .page-79king2__button--primary {
      background-color: #e94560; /* Accent color */
      color: #ffffff;
      border: 2px solid #e94560;
    }
    .page-79king2__button--primary:hover {
      background-color: #d8304a;
      border-color: #d8304a;
      transform: translateY(-2px);
    }

    .page-79king2__button--secondary {
      background-color: transparent;
      color: #e94560;
      border: 2px solid #e94560;
    }
    .page-79king2__button--secondary:hover {
      background-color: #e94560;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .page-79king2__button--register {
      background-color: #28a745; /* Green for register */
      color: #ffffff;
      border: 2px solid #28a745;
    }
    .page-79king2__button--register:hover {
      background-color: #218838;
      border-color: #218838;
      transform: translateY(-2px);
    }

    .page-79king2__button--login {
      background-color: #007bff; /* Blue for login */
      color: #ffffff;
      border: 2px solid #007bff;
    }
    .page-79king2__button--login:hover {
      background-color: #0069d9;
      border-color: #0069d9;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-79king2__hero-section {
      position: relative;
      width: 100%;
      height: 500px; /* Adjust as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 50px;
      padding-top: 10px; /* Small decorative padding, header offset on body */
    }

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

    .page-79king2__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 800px;
      padding: 0 15px;
    }

    .page-79king2__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffffff;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-79king2__hero-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* About Section */
    .page-79king2__about-section {
      padding: 60px 0;
      background-color: #2a2a4a; /* Slightly lighter dark background */
    }

    /* Product Display Section */
    .page-79king2__products-section {
      padding: 60px 0;
    }

    .page-79king2__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center; /* Center items in grid */
    }

    .page-79king2__product-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-79king2__product-item:hover {
      transform: translateY(-5px);
    }

    .page-79king2__product-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-79king2__product-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-79king2__product-description {
      font-size: 0.95em;
      color: #d0d0d0;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-79king2__promotions-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

    .page-79king2__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-79king2__promo-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-79king2__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-79king2__promo-image {
      width: 100%;
      height: 200px; /* Fixed height */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-79king2__promo-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-79king2__promo-description {
      font-size: 0.95em;
      color: #d0d0d0;
      padding: 0 15px;
    }

    .page-79king2__promo-action {
      text-align: center;
      margin-top: 50px;
    }

    /* Guide Section */
    .page-79king2__guide-section {
      padding: 60px 0;
      background-color: #2a2a4a;
    }

    .page-79king2__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-79king2__guide-item {
      flex: 1 1 300px;
      max-width: 350px;
      background-color: #1a1a2e;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-79king2__guide-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      max-width: 100%; /* Responsive image */
    }

    .page-79king2__guide-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-79king2__guide-description {
      font-size: 0.95em;
      color: #d0d0d0;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-79king2__faq-section {
      padding: 60px 0;
    }

    .page-79king2__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-79king2__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-79king2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #3a3a5a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-79king2__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-79king2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from interfering with click event */
      flex-grow: 1;
    }

    .page-79king2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

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

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

    .page-79king2__faq-item.active .page-79king2__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually, or simply '-' */
    }

    .page-79king2__faq-answer p {
      margin: 0 0 10px 0;
      color: #d0d0d0;
      font-size: 1em;
    }
    .page-79king2__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Partners Section */
    .page-79king2__partners-section {
      padding: 60px 0;
      background-color: #2a2a4a;
      text-align: center;
    }

    .page-79king2__partner-grid,
    .page-79king2__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-79king2__partner-logo,
    .page-79king2__payment-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1a1a2e;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100px; /* Uniform height for logos */
      width: 150px; /* Uniform width for logos */
      box-sizing: border-box;
    }
    .page-79king2__partner-logo:hover,
    .page-79king2__payment-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-79king2__partner-logo img,
    .page-79king2__payment-logo img {
      max-width: 100%;
      max-height: 70px; /* Max height within the logo box */
      object-fit: contain;
      filter: grayscale(80%) brightness(1.2); /* Subtle effect for logos */
      transition: filter 0.3s ease;
      box-sizing: border-box; /* Responsive image */
    }
    .page-79king2__partner-logo:hover img,
    .page-79king2__payment-logo:hover img {
      filter: grayscale(0%) brightness(1); /* Full color on hover */
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-79king2__hero-title {
        font-size: 3em;
      }
      .page-79king2__hero-subtitle {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-79king2 {
        padding-top: 0 !important; /* Ensure no extra padding on body */
      }
      .page-79king2__container {
        padding: 15px 10px;
      }

      .page-79king2__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-79king2__hero-section {
        height: 400px;
      }
      .page-79king2__hero-title {
        font-size: 2.2em;
      }
      .page-79king2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-79king2__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-79king2__button {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
      }

      /* Floating buttons */
      .page-79king2__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        gap: 8px;
      }
      .page-79king2__button--register,
      .page-79king2__button--login {
        padding: 10px 18px;
        font-size: 0.9em;
        min-width: unset;
        width: auto;
      }

      /* Product Grid */
      .page-79king2__product-grid {
        grid-template-columns: 1fr;
      }
      .page-79king2__product-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-79king2__product-image {
        height: 200px;
        max-width: 100% !important;
      }

      /* Promo Grid */
      .page-79king2__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-79king2__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-79king2__promo-image {
        height: 180px;
        max-width: 100% !important;
      }

      /* Guide Steps */
      .page-79king2__guide-steps {
        flex-direction: column;
        align-items: center;
      }
      .page-79king2__guide-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-79king2__guide-image {
        max-width: 100% !important;
      }

      /* FAQ */
      .page-79king2__faq-list {
        margin-top: 30px;
      }
      .page-79king2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-79king2__faq-question {
        padding: 15px 15px;
      }
      .page-79king2__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-79king2__faq-toggle {
        font-size: 1.5em;
      }
      .page-79king2__faq-answer {
        padding: 0 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-79king2__faq-item.active .page-79king2__faq-answer {
        padding: 15px 15px !important;
      }

      /* Partners and Payments */
      .page-79king2__partner-grid,
      .page-79king2__payment-grid {
        gap: 15px;
      }
      .page-79king2__partner-logo,
      .page-79king2__payment-logo {
        width: 120px;
        height: 80px;
        padding: 10px;
        box-sizing: border-box !important;
      }
      .page-79king2__partner-logo img,
      .page-79king2__payment-logo img {
        max-height: 60px;
        max-width: 100% !important;
      }

      /* All images */
      .page-79king2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-79king2__hero-title {
        font-size: 1.8em;
      }
      .page-79king2__hero-subtitle {
        font-size: 1em;
      }
      .page-79king2__section-title {
        font-size: 1.8em;
      }
      .page-79king2__floating-buttons {
        flex-direction: column; /* Stack buttons on very small screens */
        right: 10px;
        bottom: 10px;
        width: auto;
      }
      .page-79king2__button--register,
      .page-79king2__button--login {
        width: 100px;
        padding: 8px 15px;
        font-size: 0.85em;
      }
    }
  