
    /* CSS Styles for 79king page */
    :root {
      --page-79king-primary-color: #e44d26; /* A vibrant color for highlights */
      --page-79king-secondary-color: #333; /* Dark text for readability */
      --page-79king-background-color: #f8f8f8; /* Light background */
      --page-79king-accent-color: #ffcc00; /* Gold/yellow for promotions */
      --page-79king-text-light: #fff;
      --page-79king-text-dark: #2c3e50; /* Darker text for contrast */
    }

    .page-79king {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-79king-text-dark);
      background-color: var(--page-79king-background-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-79king-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-79king-text-light);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-79king-section:last-child {
        margin-bottom: 0;
    }

    .page-79king-banner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 20px auto;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-79king-banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-79king-banner-text {
      position: absolute;
      bottom: 0; /* Text below banner image */
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
      color: var(--page-79king-text-light);
      padding: 15px 10px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
    }

    .page-79king-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-79king-primary-color);
      color: var(--page-79king-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      text-align: center;
      box-shadow: 0 4px 10px 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;
      white-space: nowrap; /* Prevent text wrapping */
      min-width: 280px; /* Ensure button is wide enough for text */
    }

    .page-79king-floating-button:hover {
      background-color: #c93a18;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-79king-title {
      color: var(--page-79king-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 2em;
    }

    .page-79king-subtitle {
      color: var(--page-79king-secondary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
      border-bottom: 2px solid var(--page-79king-primary-color);
      padding-bottom: 5px;
      text-align: center; /* Center subtitles too */
    }

    .page-79king-text-center {
      text-align: center;
    }

    .page-79king-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-79king-grid-item {
      text-align: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

    .page-79king-grid-item:hover {
      transform: translateY(-5px);
    }

    .page-79king-grid-item img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 50%; /* Make icons round */
      background-color: var(--page-79king-text-light);
      padding: 5px;
    }

    .page-79king-grid-item h3 {
      font-size: 1.1em;
      color: var(--page-79king-primary-color);
      margin-bottom: 5px;
    }

    .page-79king-game-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 10px;
    }

    .page-79king-game-list li {
      background-color: var(--page-79king-accent-color);
      color: var(--page-79king-text-dark);
      padding: 8px 10px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      font-size: 0.9em;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .page-79king-list-item {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .page-79king-list-item::before {
        content: '✔️'; /* Checkmark emoji */
        position: absolute;
        left: 0;
        color: var(--page-79king-primary-color);
    }

    .page-79king-cta-button {
      display: block;
      width: fit-content;
      margin: 20px auto;
      background-color: var(--page-79king-primary-color);
      color: var(--page-79king-text-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-79king-cta-button:hover {
      background-color: #c93a18;
    }

    .page-79king-faq-item {
        background-color: #f0f0f0;
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .page-79king-faq-question {
        padding: 15px;
        background-color: var(--page-79king-primary-color);
        color: var(--page-79king-text-light);
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1em;
    }

    .page-79king-faq-question::after {
        content: '+';
        font-size: 1.5em;
        transition: transform 0.3s ease;
    }

    .page-79king-faq-question.active::after {
        content: '-';
        transform: rotate(180deg);
    }

    .page-79king-faq-answer {
        padding: 15px;
        background-color: var(--page-79king-text-light);
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .page-79king-faq-answer.active {
        display: block;
        max-height: 200px; /* Adjust as needed */
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-79king-section {
        padding: 30px;
      }

      .page-79king-title {
        font-size: 2.5em;
      }

      .page-79king-subtitle {
        font-size: 1.8em;
      }

      .page-79king-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-79king-floating-button {
        padding: 18px 40px;
        font-size: 1.3em;
        min-width: 350px;
      }
    }
  