
    :root {
      --page-789p-primary-color: #e44d26; /* Orange-red */
      --page-789p-secondary-color: #333;
      --page-789p-accent-color: #ffcc00; /* Gold */
      --page-789p-text-color: #f8f8f8;
      --page-789p-dark-text-color: #333;
      --page-789p-background-color: #1a1a1a;
      --page-789p-card-background: #2a2a2a;
      --page-789p-border-color: #444;
      --page-789p-hover-color: #ff6633;
    }

    .page-789p {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-789p-text-color);
      background-color: var(--page-789p-background-color);
      overflow-x: hidden;
    }

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

    .page-789p__hero-section {
      position: relative;
      background: url('[GALLERY:hero:789p,banner,chinhthuc]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Adjusted padding-top for fixed header */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-789p__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-789p__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-789p__main-heading {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-789p-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-789p__sub-heading {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-789p__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789p-primary-color);
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-789p-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-789p__floating-button:hover {
      background-color: var(--page-789p-hover-color);
      transform: translateY(-3px);
    }

    @keyframes page-789p-pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(228, 77, 38, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0); }
    }

    .page-789p__section-title {
      font-size: 2em;
      color: var(--page-789p-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789p__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-789p__game-card {
      background-color: var(--page-789p-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789p__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-789p__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-789p__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-789p__game-card-title {
      font-size: 1.4em;
      color: var(--page-789p-accent-color);
      margin-bottom: 10px;
    }

    .page-789p__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      word-wrap: break-word;
    }

    .page-789p__cta-button {
      display: inline-block;
      background-color: var(--page-789p-primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .page-789p__cta-button:hover {
      background-color: var(--page-789p-hover-color);
    }

    .page-789p__text-content {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .page-789p__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .page-789p__list-item {
      background-color: var(--page-789p-card-background);
      border: 1px solid var(--page-789p-border-color);
      border-radius: 8px;
      padding: 15px 20px;
      flex: 1 1 calc(50% - 15px); /* Two columns on desktop */
      box-sizing: border-box;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #ddd;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-789p__list-item::before {
      content: '✔';
      color: var(--page-789p-accent-color);
      font-weight: bold;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .page-789p__faq-section {
      background-color: var(--page-789p-card-background);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-789p__faq-item {
      border-bottom: 1px solid var(--page-789p-border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-789p__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-789p__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      color: var(--page-789p-accent-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-789p__faq-question:hover {
      color: var(--page-789p-hover-color);
    }

    .page-789p__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

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

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

    .page-789p__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: #ccc;
      font-size: 0.95em;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-789p__hero-section {
        padding-top: 10px; /* Ensure content is not hidden by fixed header on mobile */
        min-height: 300px;
      }

      .page-789p__main-heading {
        font-size: 2em;
      }

      .page-789p__sub-heading {
        font-size: 1em;
      }

      .page-789p__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
        gap: 5px;
      }

      .page-789p__section {
        padding: 30px 15px;
      }

      .page-789p__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

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

      .page-789p__game-card-image {
        height: 180px;
      }

      .page-789p__game-card-title {
        font-size: 1.2em;
      }

      .page-789p__list {
        flex-direction: column;
        gap: 10px;
      }

      .page-789p__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-789p__text-content {
        font-size: 1em;
      }

      .page-789p__faq-question {
        font-size: 1em;
      }

      .page-789p__faq-question h3 {
        font-size: 1em;
      }

      .page-789p__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }
    }

    /* Universal image responsive styles */
    .page-789p img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-789p__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-789p img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789p__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  