
    :root {
      --page-79king-primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-79king-secondary-color: #ff9900; /* A brighter orange for accents */
      --page-79king-dark-background: #1a1a1a;
      --page-79king-light-background: #f8f8f8;
      --page-79king-text-color: #333;
      --page-79king-light-text: #fff;
      --page-79king-border-color: #ddd;
      --page-79king-card-background: #fff;
      --page-79king-shadow: rgba(0, 0, 0, 0.1);
      --page-79king-gradient-start: #ff7e5f;
      --page-79king-gradient-end: #feb47b;
    }

    .page-79king {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-79king-text-color);
      background-color: var(--page-79king-light-background);
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-79king__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-79king-card-background);
      border-radius: 8px;
      box-shadow: 0 4px 8px var(--page-79king-shadow);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-79king__section--dark {
      background-color: var(--page-79king-dark-background);
      color: var(--page-79king-light-text);
    }

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

    .page-79king__h1, .page-79king__h2, .page-79king__h3 {
      color: var(--page-79king-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-79king__h1 {
      font-size: 2.8em;
      color: var(--page-79king-light-text);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-79king__h2 {
      font-size: 2.2em;
      color: var(--page-79king-primary-color);
    }

    .page-79king__h3 {
      font-size: 1.8em;
      color: var(--page-79king-primary-color);
    }

    .page-79king__paragraph {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-79king__hero-section {
      background: linear-gradient(135deg, var(--page-79king-gradient-start), var(--page-79king-gradient-end));
      padding-top: 10px; /* Spacing for fixed header */
      padding-bottom: 60px;
      text-align: center;
      color: var(--page-79king-light-text);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-79king__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }
    
    .page-79king__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-79king__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-79king__promo-button {
      display: inline-block;
      background-color: var(--page-79king-secondary-color);
      color: var(--page-79king-light-text);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-79king__promo-button:hover {
      background-color: #ffb74d; /* Lighter shade for hover */
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-79king__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-79king-primary-color);
      color: var(--page-79king-light-text);
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: none; /* Hidden by default, shown on mobile */
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      text-align: center;
    }

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

    /* Game Categories */
    .page-79king__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-79king__game-card {
      background-color: var(--page-79king-card-background);
      border-radius: 12px;
      box-shadow: 0 6px 15px var(--page-79king-shadow);
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 350px;
      box-sizing: border-box;
      border: 1px solid var(--page-79king-border-color);
    }

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

    .page-79king__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box;
    }

    .page-79king__game-title {
      font-size: 1.5em;
      color: var(--page-79king-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-79king__game-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* How To Section */
    .page-79king__steps-list {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-79king__step-item {
      background-color: var(--page-79king-card-background);
      border-radius: 12px;
      box-shadow: 0 6px 15px var(--page-79king-shadow);
      padding: 30px;
      flex: 1 1 calc(33% - 25px); /* Three columns on desktop */
      min-width: 280px;
      max-width: 380px;
      text-align: center;
      box-sizing: border-box;
      border: 1px solid var(--page-79king-border-color);
    }

    .page-79king__step-number {
      background-color: var(--page-79king-primary-color);
      color: var(--page-79king-light-text);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-79king__step-title {
      font-size: 1.4em;
      color: var(--page-79king-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-79king__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Why Choose Section */
    .page-79king__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-79king__feature-card {
      background-color: var(--page-79king-card-background);
      border-radius: 12px;
      box-shadow: 0 6px 15px var(--page-79king-shadow);
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 250px;
      box-sizing: border-box;
      border: 1px solid var(--page-79king-border-color);
    }

    .page-79king__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-79king__feature-title {
      font-size: 1.4em;
      color: var(--page-79king-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-79king__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-79king__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-79king__faq-item {
      background-color: var(--page-79king-card-background);
      border: 1px solid var(--page-79king-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-79king-shadow);
      box-sizing: border-box;
    }

    .page-79king__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid var(--page-79king-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

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

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

    .page-79king__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-79king-primary-color);
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-79king__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding for collapsed state */
      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;
      box-sizing: border-box;
    }

    .page-79king__faq-answer p {
      padding-bottom: 20px; /* Add padding to the bottom of the content */
      margin: 0;
    }

    .page-79king__faq-item.active .page-79king__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-79king__faq-item.active .page-79king__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or '−' */
    }
    .page-79king__faq-item.active .page-79king__faq-toggle::before {
        content: "−"; /* Visually change to minus for active state */
    }
    .page-79king__faq-toggle::before {
        content: "+"; /* Visually change to plus for inactive state */
    }


    /* Call to Action Section */
    .page-79king__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(to right, var(--page-79king-primary-color), var(--page-79king-secondary-color));
      color: var(--page-79king-light-text);
      border-radius: 8px;
      margin: 40px auto;
      max-width: 1200px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-79king__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-79king__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-79king__h1 {
        font-size: 2.5em;
      }
      .page-79king__h2 {
        font-size: 2em;
      }
      .page-79king__hero-description {
        font-size: 1.1em;
      }
      .page-79king__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-79king__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-79king__step-item {
        flex: 1 1 calc(50% - 25px); /* Two columns on medium screens */
      }
      .page-79king__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-79king__cta-title {
        font-size: 2em;
      }
      .page-79king__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-79king__section {
        padding: 30px 15px;
      }
      .page-79king__h1 {
        font-size: 2em;
      }
      .page-79king__h2 {
        font-size: 1.8em;
      }
      .page-79king__h3 {
        font-size: 1.5em;
      }
      .page-79king__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
        min-height: 300px;
      }
      .page-79king__hero-description {
        font-size: 1em;
      }
      .page-79king__promo-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-79king__floating-button {
        display: block; /* Show on mobile */
        width: calc(100% - 40px); /* Full width minus padding */
        left: 20px;
        right: 20px;
        bottom: 15px;
        padding: 15px 10px;
        font-size: 1.2em;
        border-radius: 8px;
        box-sizing: border-box;
      }
      .page-79king__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }
      .page-79king__game-card {
        min-height: auto; /* Allow height to adjust */
      }
      .page-79king__game-image {
        height: 180px;
      }
      .page-79king__steps-list {
        flex-direction: column;
        align-items: center;
      }
      .page-79king__step-item {
        flex: 1 1 100%; /* Single column on mobile */
        max-width: 100%;
        width: 100% !important; /* Force full width for list item */
        box-sizing: border-box !important;
        padding: 25px 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-79king__feature-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }
      .page-79king__faq-question {
        padding: 15px 20px;
      }
      .page-79king__faq-question h3 {
        font-size: 1.1em;
      }
      .page-79king__faq-answer {
        padding: 0 20px;
      }
      .page-79king__faq-item.active .page-79king__faq-answer {
        padding: 15px 20px !important;
      }
      .page-79king__cta-title {
        font-size: 1.8em;
      }
      .page-79king__cta-description {
        font-size: 1em;
      }
      /* Ensure all images are responsive */
      .page-79king img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-79king__hero-background-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-79king__h1 {
        font-size: 1.8em;
      }
      .page-79king__h2 {
        font-size: 1.6em;
      }
      .page-79king__h3 {
        font-size: 1.3em;
      }
      .page-79king__hero-section {
        min-height: 250px;
      }
      .page-79king__floating-button {
        font-size: 1em;
        padding: 12px 10px;
      }
      .page-79king__cta-title {
        font-size: 1.5em;
      }
      .page-79king__cta-description {
        font-size: 0.9em;
      }
    }
  