
    :root {
      --page-79-king1-primary-color: #FFD700; /* Gold/Yellow accent */
      --page-79-king1-secondary-color: #00BFFF; /* Deep sky blue accent */
      --page-79-king1-dark-bg: #1A1A1A; /* Dark background */
      --page-79-king1-light-text: #F5F5F5; /* Light text */
      --page-79-king1-mid-grey: #333333; /* Mid grey for cards */
      --page-79-king1-border-color: #444444; /* Border color */
      --page-79-king1-hover-color: #FFA500; /* Orange for hover */
    }

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

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

    /* Hero Section */
    .page-79-king1__hero-section {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,79king1,dynamic]');
      background-size: cover;
      background-position: center;
      padding-top: 10px; /* Small decorative top padding, assuming body handles main offset */
      box-sizing: border-box;
    }

    .page-79-king1__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-79-king1__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-79-king1__hero-title {
      font-size: 3.5em;
      color: var(--page-79-king1-primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

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

    .page-79-king1__hero-btn {
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-79-king1__btn-primary {
      background-color: var(--page-79-king1-primary-color);
      color: var(--page-79-king1-dark-bg);
    }

    .page-79-king1__btn-primary:hover {
      background-color: var(--page-79-king1-hover-color);
      transform: translateY(-2px);
    }

    .page-79-king1__btn-secondary {
      background-color: var(--page-79-king1-mid-grey);
      color: var(--page-79-king1-light-text);
      border: 2px solid var(--page-79-king1-primary-color);
    }

    .page-79-king1__btn-secondary:hover {
      background-color: var(--page-79-king1-border-color);
      transform: translateY(-2px);
    }

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

    .page-79-king1__sticky-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
      height: 50px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      color: var(--page-79-king1-dark-bg);
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-79-king1__sticky-btn--register {
      background-color: var(--page-79-king1-primary-color);
    }

    .page-79-king1__sticky-btn--register:hover {
      background-color: var(--page-79-king1-hover-color);
      transform: scale(1.05);
    }

    .page-79-king1__sticky-btn--login {
      background-color: var(--page-79-king1-secondary-color);
    }

    .page-79-king1__sticky-btn--login:hover {
      background-color: #0099CC; /* Slightly darker blue */
      transform: scale(1.05);
    }

    /* General Section Styles */
    .page-79-king1__section-title {
      font-size: 2.5em;
      color: var(--page-79-king1-primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-79-king1__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-79-king1-light-text);
    }

    /* About Section */
    .page-79-king1__about-section {
      padding: 60px 0;
      background-color: var(--page-79-king1-dark-bg);
    }

    /* Products Section */
    .page-79-king1__products-section {
      padding: 60px 0;
      background-color: #222222;
    }

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

    .page-79-king1__product-card {
      background-color: var(--page-79-king1-mid-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
      max-width: 100%; /* Ensure card doesn't exceed container */
    }

    .page-79-king1__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-79-king1__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-79-king1__product-title {
      font-size: 1.5em;
      color: var(--page-79-king1-primary-color);
      margin: 20px 15px 10px;
    }

    .page-79-king1__product-description {
      font-size: 1em;
      color: var(--page-79-king1-light-text);
      padding: 0 15px;
    }

    /* Promotion Section */
    .page-79-king1__promotion-section {
      padding: 60px 0;
      background-color: var(--page-79-king1-dark-bg);
    }

    .page-79-king1__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-79-king1__promotion-card {
      background-color: var(--page-79-king1-mid-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-79-king1__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-79-king1__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-79-king1__promotion-title {
      font-size: 1.4em;
      color: var(--page-79-king1-secondary-color);
      margin: 20px 15px 10px;
    }

    .page-79-king1__promotion-description {
      font-size: 0.95em;
      color: var(--page-79-king1-light-text);
      padding: 0 15px;
    }

    .page-79-king1__promotion-footer {
      text-align: center;
      margin-top: 40px;
      font-style: italic;
      color: #AAAAAA;
    }

    /* Why Choose Section */
    .page-79-king1__why-choose-section {
      padding: 60px 0;
      background-color: #222222;
    }

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

    .page-79-king1__feature-item {
      background-color: var(--page-79-king1-mid-grey);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      text-align: center;
      box-sizing: border-box;
    }

    .page-79-king1__feature-title {
      font-size: 1.4em;
      color: var(--page-79-king1-primary-color);
      margin-bottom: 15px;
    }

    .page-79-king1__feature-description {
      font-size: 1em;
      color: var(--page-79-king1-light-text);
    }

    /* News Section */
    .page-79-king1__news-section {
      padding: 60px 0;
      background-color: var(--page-79-king1-dark-bg);
    }

    .page-79-king1__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-79-king1__news-item {
      background-color: var(--page-79-king1-mid-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-79-king1__news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-79-king1__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-79-king1__news-title {
      font-size: 1.3em;
      color: var(--page-79-king1-secondary-color);
      margin: 20px 15px 10px;
      line-height: 1.4;
    }

    .page-79-king1__news-date {
      font-size: 0.9em;
      color: #AAAAAA;
      margin: 0 15px 10px;
    }

    .page-79-king1__news-excerpt {
      font-size: 1em;
      color: var(--page-79-king1-light-text);
      padding: 0 15px 20px;
    }

    /* FAQ Section */
    .page-79-king1__faq-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-79-king1__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-79-king1__faq-item {
      background-color: var(--page-79-king1-mid-grey);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-79-king1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3A3A3A;
      color: var(--page-79-king1-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-79-king1__faq-question:hover {
      background-color: #4A4A4A;
    }

    .page-79-king1__faq-q-title {
      margin: 0;
      font-size: 1em; /* Relative to parent .faq-question */
      color: var(--page-79-king1-primary-color);
      pointer-events: none; /* Prevent title text from blocking click event */
    }

    .page-79-king1__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle text from blocking click event */
    }

    .page-79-king1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-79-king1-mid-grey);
      color: var(--page-79-king1-light-text);
      box-sizing: border-box;
    }

    .page-79-king1__faq-answer p {
      margin: 0 0 15px 0;
      padding-bottom: 5px;
    }

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

    .page-79-king1__faq-item.active .page-79-king1__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    /* Call to Action Section */
    .page-79-king1__cta-section {
      padding: 60px 0 80px;
      text-align: center;
      background-color: var(--page-79-king1-dark-bg);
    }

    .page-79-king1__cta-buttons {
      margin-top: 30px;
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-79-king1__cta-btn {
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: inline-block; /* Ensure padding and width work as expected */
      box-sizing: border-box;
    }

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

      .page-79-king1__hero-subtitle {
        font-size: 1.3em;
      }

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

    @media (max-width: 768px) {
      .page-79-king1__hero-section {
        height: 500px;
      }

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

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

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

      .page-79-king1__hero-btn {
        width: 80%;
        margin: 0 auto;
      }

      .page-79-king1__sticky-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-79-king1__sticky-btn {
        width: 90px;
        height: 45px;
        font-size: 0.9em;
      }

      .page-79-king1__container {
        padding: 15px;
      }

      .page-79-king1__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
      }

      .page-79-king1__text-content {
        font-size: 1em;
      }

      /* List items responsiveness */
      .page-79-king1__feature-list,
      .page-79-king1__product-grid,
      .page-79-king1__promotion-grid,
      .page-79-king1__news-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-79-king1__feature-item,
      .page-79-king1__product-card,
      .page-79-king1__promotion-card,
      .page-79-king1__news-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for mobile */
      }
      
      .page-79-king1__product-image,
      .page-79-king1__promotion-image,
      .page-79-king1__news-image {
        max-width: 100% !important;
        height: auto !important; /* Ensure aspect ratio */
        box-sizing: border-box !important;
      }
      
      .page-79-king1__product-description,
      .page-79-king1__promotion-description,
      .page-79-king1__feature-description,
      .page-79-king1__news-excerpt {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-79-king1__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      
      .page-79-king1__faq-q-title {
        font-size: 0.95em; /* Adjust font size for mobile */
      }

      .page-79-king1__faq-answer {
        padding: 0 20px;
      }

      .page-79-king1__faq-item.active .page-79-king1__faq-answer {
        padding: 15px 20px !important;
      }

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

      .page-79-king1__cta-btn {
        width: 80%;
        margin: 0 auto;
      }
    }

    @media (max-width: 480px) {
      .page-79-king1__hero-title {
        font-size: 2em;
      }

      .page-79-king1__hero-subtitle {
        font-size: 1em;
      }

      .page-79-king1__hero-btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-79-king1__section-title {
        font-size: 1.5em;
      }

      .page-79-king1__faq-question {
        font-size: 1em;
      }
      
      .page-79-king1__faq-q-title {
        font-size: 0.9em;
      }

      .page-79-king1__cta-btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  