
    :root {
      --page-79king__primary-color: #f7b32b; /* Màu vàng cam */
      --page-79king__secondary-color: #e04e39; /* Màu đỏ cam */
      --page-79king__dark-bg: #1a1a1a; /* Nền đen đậm */
      --page-79king__text-color: #ffffff; /* Chữ trắng */
      --page-79king__light-gray: #cccccc; /* Xám nhạt */
      --page-79king__border-color: #333333; /* Màu viền */
    }

    body {
      background-color: var(--page-79king__dark-bg);
      color: var(--page-79king__text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-79king {
      padding-top: 100px; /* Thêm khoảng trống để tránh header cố định */
      background-color: var(--page-79king__dark-bg);
      color: var(--page-79king__text-color);
    }

    @media (min-width: 768px) {
      .page-79king {
        padding-top: 120px; /* Khoảng trống lớn hơn cho desktop */
      }
    }

    .page-79king__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-79king__border-color);
    }

    .page-79king__section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }

    .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.5em;
      margin-top: 0;
    }

    .page-79king__h2 {
      font-size: 2em;
      color: var(--page-79king__secondary-color);
    }

    .page-79king__h3 {
      font-size: 1.5em;
      color: var(--page-79king__light-gray);
    }

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

    .page-79king__button {
      display: inline-block;
      background-color: var(--page-79king__primary-color);
      color: var(--page-79king__dark-bg);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-79king__button:hover {
      background-color: var(--page-79king__secondary-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-79king__hero-section {
      background-color: #000;
      padding: 0; /* Đặt padding về 0 để hình ảnh chiếm toàn bộ chiều rộng */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-79king__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center; /* Để hình ảnh có thể căn giữa nếu nhỏ hơn container */
    }

    .page-79king__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo hình ảnh không bị méo */
      object-position: center top; /* Căn giữa và từ trên xuống */
      max-width: 100%;
    }

    .page-79king__hero-content {
      position: absolute;
      bottom: 20px; /* Đặt nội dung dưới ảnh banner */
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 90%;
      max-width: 800px;
      background: rgba(0, 0, 0, 0.6);
      padding: 15px 20px;
      border-radius: 10px;
    }

    .page-79king__hero-title {
      font-size: 2.2em;
      color: var(--page-79king__primary-color);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-79king__hero-description {
      font-size: 1.1em;
      color: var(--page-79king__light-gray);
      margin-bottom: 20px;
    }

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

    .page-79king__floating-button {
      background-color: var(--page-79king__secondary-color);
      color: var(--page-79king__text-color);
      padding: 10px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      font-size: 0.95em;
    }

    .page-79king__floating-button:hover {
      background-color: var(--page-79king__primary-color);
      transform: scale(1.05);
    }

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

    .page-79king__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-79king__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-79king__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 120px; /* Cố định chiều cao cho ảnh game */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-79king__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-79king__game-card-title {
      font-size: 1.1em;
      color: var(--page-79king__primary-color);
      padding: 15px 10px;
      margin: 0;
      font-weight: bold;
    }

    .page-79king__game-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    /* Game Providers */
    .page-79king__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-79king__provider-logo-container {
      width: 100%;
      max-width: 120px; /* Kích thước tối đa cho logo */
      height: 80px; /* Cố định chiều cao */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2a2a2a;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-79king__provider-logo-container:hover {
      transform: scale(1.05);
    }

    .page-79king__provider-logo {
      width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 100%;
      display: block;
      max-width: 100%;
    }

    /* Promotions */
    .page-79king__promotion-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
    }

    .page-79king__promotion-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for promo images */
    }

    .page-79king__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-79king__promotion-content {
      padding: 20px;
    }

    .page-79king__promotion-title {
      font-size: 1.3em;
      color: var(--page-79king__primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-79king__promotion-description {
      color: var(--page-79king__light-gray);
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-79king__faq-section {
      background-color: #222;
      border-radius: 10px;
      padding: 30px;
    }

    .page-79king__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-79king__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--page-79king__text-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

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

    .page-79king__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      color: var(--page-79king__secondary-color);
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-79king__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-79king__light-gray);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-79king__faq-item.active .page-79king__faq-answer {
      max-height: 2000px !important; /* Use !important for override */
      padding: 20px 15px !important; /* Use !important for override */
      opacity: 1;
    }

    /* Testimonials */
    .page-79king__testimonial-card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-79king__testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
      color: var(--page-79king__light-gray);
    }

    .page-79king__testimonial-author {
      font-weight: bold;
      color: var(--page-79king__primary-color);
      text-align: right;
    }

    /* Call to Action */
    .page-79king__cta-section {
      background-color: #000;
      padding: 50px 15px;
      text-align: center;
      border-top: 1px solid var(--page-79king__border-color);
    }

    .page-79king__cta-title {
      font-size: 2em;
      color: var(--page-79king__primary-color);
      margin-bottom: 20px;
    }

    .page-79king__cta-description {
      font-size: 1.1em;
      color: var(--page-79king__light-gray);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-79king {
        padding-top: 80px; /* Điều chỉnh cho mobile header */
      }

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

      .page-79king__h2 {
        font-size: 1.6em;
      }

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

      .page-79king__hero-title {
        font-size: 1.6em;
      }

      .page-79king__hero-description {
        font-size: 0.9em;
      }

      .page-79king__hero-content {
        bottom: 10px;
        padding: 10px 15px;
      }

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

      .page-79king__floating-button {
        padding: 8px 15px;
        font-size: 0.85em;
      }

      .page-79king__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-79king__game-card-image-container {
        height: 100px;
      }

      .page-79king__game-card-title {
        font-size: 0.95em;
        padding: 10px 5px;
      }

      .page-79king__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 10px;
      }

      .page-79king__provider-logo-container {
        max-width: 100px;
        height: 60px;
      }

      .page-79king__promotion-image-container {
        height: 150px;
      }

      .page-79king__promotion-title {
        font-size: 1.1em;
      }

      .page-79king__faq-question h3 {
        font-size: 1em;
      }

      .page-79king__faq-answer {
        font-size: 0.9em;
      }

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

      .page-79king__cta-description {
        font-size: 0.95em;
      }

      /* Image responsive optimization for mobile */
      .page-79king__hero-image,
      .page-79king__game-card-image,
      .page-79king__provider-logo,
      .page-79king__promotion-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-79king__hero-image-container,
      .page-79king__game-card-image-container,
      .page-79king__provider-logo-container,
      .page-79king__promotion-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  