
    :root {
      --page-789link-primary-color: #e44d26; /* Màu cam đỏ */
      --page-789link-secondary-color: #333;
      --page-789link-text-color: #444;
      --page-789link-light-bg: #f9f9f9;
      --page-789link-dark-bg: #222;
      --page-789link-white: #fff;
      --page-789link-border-radius: 8px;
      --page-789link-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .page-789link__hero-section {
      position: relative;
      width: 100%;
      background-color: var(--page-789link-dark-bg);
      color: var(--page-789link-white);
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .page-789link__hero-section {
        padding: 10px 0 30px 0; /* Adjusted padding-top for fixed header on mobile */
      }
    }

    .page-789link__hero-image {
      width: 100%;
      height: 250px; /* Example fixed height for banner */
      object-fit: cover;
      display: block;
      margin: 0 auto;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (min-width: 769px) {
      .page-789link__hero-image {
        height: 400px; /* Larger height for desktop */
      }
    }
    .page-789link__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-789link__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-789link-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
      .page-789link__hero-title {
        font-size: 1.8em;
      }
    }

    .page-789link__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--page-789link-white);
    }
    @media (max-width: 768px) {
      .page-789link__hero-description {
        font-size: 1em;
      }
    }

    .page-789link__button {
      display: inline-block;
      background-color: var(--page-789link-primary-color);
      color: var(--page-789link-white);
      padding: 12px 25px;
      border-radius: var(--page-789link-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-789link__button:hover {
      background-color: #d13a18;
      transform: translateY(-2px);
    }

    .page-789link__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-789link-white);
      border-radius: var(--page-789link-border-radius);
      box-shadow: var(--page-789link-shadow);
      margin-bottom: 30px;
    }
    @media (max-width: 768px) {
      .page-789link__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }
    }

    .page-789link__section-title {
      text-align: center;
      font-size: 2em;
      color: var(--page-789link-primary-color);
      margin-bottom: 30px;
      position: relative;
    }
    .page-789link__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-789link-secondary-color);
      margin: 10px auto 0;
    }
    @media (max-width: 768px) {
      .page-789link__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }
    }

    .page-789link__text-content {
      font-size: 1.05em;
      margin-bottom: 20px;
      color: var(--page-789link-text-color);
    }
    .page-789link__text-content strong {
      color: var(--page-789link-primary-color);
    }
    @media (max-width: 768px) {
      .page-789link__text-content {
        font-size: 0.95em;
      }
    }

    .page-789link__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .page-789link__game-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
    }

    .page-789link__game-card {
      background-color: var(--page-789link-light-bg);
      border-radius: var(--page-789link-border-radius);
      overflow: hidden;
      box-shadow: var(--page-789link-shadow);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border: 1px solid #eee;
    }

    .page-789link__game-card:hover {
      transform: translateY(-5px);
    }

    .page-789link__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-789link__game-image {
        height: 180px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    .page-789link__game-title {
      font-size: 1.4em;
      color: var(--page-789link-primary-color);
      margin: 15px 10px 10px;
    }
    @media (max-width: 768px) {
      .page-789link__game-title {
        font-size: 1.2em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    .page-789link__game-description {
      font-size: 0.95em;
      color: var(--page-789link-text-color);
      padding: 0 15px 15px;
      flex-grow: 1;
    }
    @media (max-width: 768px) {
      .page-789link__game-description {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    .page-789link__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(135deg, var(--page-789link-primary-color), #f76c4a);
      color: var(--page-789link-white);
      border-radius: var(--page-789link-border-radius);
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .page-789link__cta-section {
        padding: 30px 15px;
      }
    }

    .page-789link__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
    }
    @media (max-width: 768px) {
      .page-789link__cta-title {
        font-size: 1.8em;
      }
    }

    .page-789link__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
    }
    @media (max-width: 768px) {
      .page-789link__cta-text {
        font-size: 1em;
      }
    }

    .page-789link__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-789link-primary-color);
      color: var(--page-789link-white);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-789link__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap; /* Prevent text wrapping */
    }
    .page-789link__floating-button:hover {
      background-color: #d13a18;
      animation: none;
    }
    @media (max-width: 768px) {
      .page-789link__floating-button {
        width: calc(100% - 40px);
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1.1em;
      }
    }

    @keyframes page-789link__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-789link__faq-section {
      background-color: var(--page-789link-light-bg);
      padding: 40px 20px;
      max-width: 900px;
      margin: 30px auto;
      border-radius: var(--page-789link-border-radius);
      box-shadow: var(--page-789link-shadow);
    }
    @media (max-width: 768px) {
      .page-789link__faq-section {
        padding: 25px 15px;
      }
    }

    .page-789link__faq-item {
      background-color: var(--page-789link-white);
      margin-bottom: 15px;
      border-radius: var(--page-789link-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border: 1px solid #eee;
    }

    .page-789link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--page-789link-secondary-color);
      cursor: pointer;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-789link__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-789link-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }
    .page-789link__faq-question:hover {
      background-color: #e0e0e0;
    }
    @media (max-width: 768px) {
      .page-789link__faq-question {
        font-size: 1em;
        padding: 15px 15px;
      }
      .page-789link__faq-question h3 {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

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

    .page-789link__faq-item.active .page-789link__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
      content: '−'; /* Change to minus sign */
    }

    .page-789link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-789link-white);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-789link-text-color);
    }
    .page-789link__faq-answer p {
      margin-top: 0;
      margin-bottom: 15px;
    }
    .page-789link__faq-answer strong {
      color: var(--page-789link-primary-color);
    }

    .page-789link__faq-item.active .page-789link__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 20px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-789link__faq-answer {
        padding: 0 15px;
      }
      .page-789link__faq-item.active .page-789link__faq-answer {
        padding: 15px 15px !important;
      }
      .page-789link__faq-answer p {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* General responsive image and container styles */
    .page-789link img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-789link img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-789link__game-grid .page-789link__game-image {
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-789link__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  