
    :root {
      --page-king79-primary-color: #e44d26; /* Orange-red */
      --page-king79-secondary-color: #333;
      --page-king79-accent-color: #f7b731; /* Gold */
      --page-king79-text-color: #333;
      --page-king79-bg-color: #f4f4f4;
      --page-king79-light-bg: #fff;
      --page-king79-border-color: #ddd;
      --page-king79-shadow-light: rgba(0, 0, 0, 0.1);
      --page-king79-dark-overlay: rgba(0, 0, 0, 0.6);
    }

    .page-king79 {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-king79-text-color);
      background-color: var(--page-king79-bg-color);
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-king79__hero-section {
      position: relative;
      width: 100%;
      height: auto; /* Allow image to dictate height */
      min-height: 350px; /* Minimum height for content */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Space for fixed header */
      box-sizing: border-box;
    }

    .page-king79__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-king79__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--page-king79-dark-overlay);
      z-index: 1;
    }

    .page-king79__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-king79__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-king79__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    /* Floating Button */
    .page-king79__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 15px var(--page-king79-shadow-light);
      border-radius: 50px;
      overflow: hidden;
    }

    .page-king79__floating-button {
      display: block;
      width: 100%;
      padding: 15px 25px;
      background: linear-gradient(90deg, var(--page-king79-primary-color) 0%, var(--page-king79-accent-color) 100%);
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      transition: all 0.3s ease;
      animation: page-king79__pulse 2s infinite;
      border: none; /* Ensure no default button border */
      cursor: pointer; /* Ensure it looks clickable */
    }

    .page-king79__floating-button:hover {
      background: linear-gradient(90deg, var(--page-king79-accent-color) 0%, var(--page-king79-primary-color) 100%);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

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

    /* General Section Styling */
    .page-king79__section {
      padding: 60px 20px;
      background-color: var(--page-king79-light-bg);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-king79-shadow-light);
    }

    .page-king79__section:nth-of-type(odd) {
      background-color: var(--page-king79-bg-color);
    }

    .page-king79__section-title {
      font-size: 2.2em;
      color: var(--page-king79-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-king79__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-king79-accent-color);
      border-radius: 2px;
    }

    .page-king79__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
      line-height: 1.8;
      text-align: justify;
    }

    .page-king79__text-block strong {
      color: var(--page-king79-primary-color);
    }

    /* Game List/Grid */
    .page-king79__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-king79__game-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px var(--page-king79-shadow-light);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-king79__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .page-king79__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-king79-border-color);
    }
    .page-king79__game-card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-king79__game-card-title {
      font-size: 1.5em;
      color: var(--page-king79-secondary-color);
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-king79__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Download Section */
    .page-king79__download-options {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .page-king79__download-item {
      text-align: center;
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 2px 10px var(--page-king79-shadow-light);
      width: 280px;
      transition: transform 0.3s ease;
    }

    .page-king79__download-item:hover {
      transform: translateY(-5px);
    }

    .page-king79__download-icon {
      width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
    }
    .page-king79__download-icon-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .page-king79__download-link {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-king79-primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-king79__download-link:hover {
      background-color: var(--page-king79-accent-color);
    }

    /* FAQ Section */
    .page-king79__faq-list {
      margin-top: 40px;
    }

    .page-king79__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-king79-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-king79-shadow-light);
    }

    .page-king79__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-king79-border-color);
    }

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

    .page-king79__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-king79-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-king79__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-king79-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-king79__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-king79__hero-section {
        min-height: 280px;
        padding-top: 10px; /* Space for fixed header */
      }
      .page-king79__hero-title {
        font-size: 2em;
      }
      .page-king79__hero-subtitle {
        font-size: 1em;
      }

      .page-king79__section {
        padding: 40px 15px;
      }

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

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

      .page-king79__game-card-image-container,
      .page-king79__download-icon-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-king79__game-card-image,
      .page-king79__download-icon {
          max-width: 100% !important;
          height: auto !important;
      }

      .page-king79__download-options {
        flex-direction: column;
        align-items: center;
      }

      .page-king79__download-item {
        width: 90%;
        max-width: 350px;
      }

      .page-king79__faq-question {
        padding: 12px 15px;
      }

      .page-king79__faq-question h3 {
        font-size: 1.1em;
      }

      .page-king79__floating-button-wrapper {
        width: 95%;
        bottom: 15px;
      }
      .page-king79__floating-button {
        font-size: 1.1em;
        padding: 12px 20px;
      }
    }
  