
      /* style/789betlink.css */
      :root {
          --primary-color: #2563eb;
          --secondary-color: #64748b;
          --text-color: #333333;
          --background-color: #ffffff;
          --light-gray: #f8f9fa;
          --dark-gray: #4a5568;
      }

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

      .page-789betlink__hero-section {
          position: relative;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 10px 20px 40px;
          background-color: var(--light-gray);
      }

      .page-789betlink__hero-image-wrapper {
          width: 100%;
          max-width: 1200px;
          margin-bottom: 20px;
      }

      .page-789betlink__hero-image {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 10px;
          object-fit: cover;
      }

      .page-789betlink__hero-content {
          max-width: 800px;
          margin: 0 auto;
      }

      .page-789betlink__hero-title {
          font-size: clamp(2em, 5vw, 2.8em);
          color: var(--primary-color);
          margin-bottom: 15px;
          font-weight: 700;
          line-height: 1.2;
      }

      .page-789betlink__hero-description {
          font-size: 1.1em;
          color: var(--dark-gray);
          margin-bottom: 30px;
      }

      .page-789betlink__cta-buttons {
          display: flex;
          gap: 15px;
          justify-content: center;
          flex-wrap: wrap;
      }

      .page-789betlink__btn-primary,
      .page-789betlink__btn-secondary {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 12px 25px;
          border-radius: 8px;
          font-size: 1.1em;
          font-weight: 600;
          text-decoration: none;
          transition: background-color 0.3s ease, transform 0.3s ease;
          white-space: normal;
          word-wrap: break-word;
          box-sizing: border-box;
          max-width: 100%;
      }

      .page-789betlink__btn-primary {
          background-color: var(--primary-color);
          color: #ffffff;
          border: 2px solid var(--primary-color);
      }

      .page-789betlink__btn-primary:hover {
          background-color: #1a4da3;
          transform: translateY(-2px);
      }

      .page-789betlink__btn-secondary {
          background-color: #ffffff;
          color: var(--primary-color);
          border: 2px solid var(--primary-color);
      }

      .page-789betlink__btn-secondary:hover {
          background-color: var(--primary-color);
          color: #ffffff;
          transform: translateY(-2px);
      }

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

      .page-789betlink__section-title {
          font-size: 2.2em;
          color: var(--primary-color);
          text-align: center;
          margin-bottom: 40px;
          font-weight: 700;
      }

      .page-789betlink__text-block {
          font-size: 1.05em;
          line-height: 1.7;
          margin-bottom: 20px;
          color: var(--text-color);
      }

      .page-789betlink__text-block a {
          color: var(--primary-color);
          text-decoration: none;
          font-weight: 600;
      }

      .page-789betlink__text-block a:hover {
          text-decoration: underline;
      }

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

      .page-789betlink__game-card {
          background-color: #ffffff;
          border-radius: 10px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          overflow: hidden;
          text-align: center;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
      }

      .page-789betlink__game-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

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

      .page-789betlink__game-content {
          padding: 20px;
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
      }

      .page-789betlink__game-title {
          font-size: 1.4em;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 600;
      }

      .page-789betlink__game-description {
          font-size: 0.95em;
          color: var(--dark-gray);
          margin-bottom: 15px;
      }

      .page-789betlink__game-link {
          display: inline-block;
          background-color: var(--secondary-color);
          color: #ffffff;
          padding: 8px 18px;
          border-radius: 5px;
          text-decoration: none;
          font-weight: 500;
          transition: background-color 0.3s ease;
      }

      .page-789betlink__game-link:hover {
          background-color: #4a5d73;
      }

      .page-789betlink__steps-list {
          list-style: none;
          padding: 0;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          counter-reset: step-counter;
      }

      .page-789betlink__step-item {
          background-color: #ffffff;
          border-radius: 10px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          padding: 30px;
          position: relative;
          text-align: center;
          box-sizing: border-box;
      }

      .page-789betlink__step-item::before {
          content: counter(step-counter);
          counter-increment: step-counter;
          position: absolute;
          top: -15px;
          left: 50%;
          transform: translateX(-50%);
          background-color: var(--primary-color);
          color: #ffffff;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5em;
          font-weight: 700;
          border: 3px solid #ffffff;
      }

      .page-789betlink__step-title {
          font-size: 1.5em;
          color: var(--primary-color);
          margin-top: 20px;
          margin-bottom: 10px;
          font-weight: 600;
      }

      .page-789betlink__step-description {
          color: var(--dark-gray);
          font-size: 1em;
      }

      .page-789betlink__faq-section {
          background-color: var(--light-gray);
      }

      .page-789betlink__faq-list {
          list-style: none;
          padding: 0;
          max-width: 900px;
          margin: 0 auto;
      }

      .page-789betlink__faq-item {
          background-color: #ffffff;
          border-radius: 10px;
          margin-bottom: 15px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          overflow: hidden;
          transition: all 0.4s ease;
      }

      .page-789betlink__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 20px 25px;
          font-size: 1.15em;
          font-weight: 600;
          color: var(--primary-color);
          cursor: pointer;
          user-select: none;
          background-color: #f0f8ff;
          border-bottom: 1px solid #e0e0e0;
      }

      .page-789betlink__faq-question:hover {
          background-color: #e6f7ff;
      }

      .page-789betlink__faq-question h3 {
          margin: 0;
          flex-grow: 1;
          pointer-events: none;
      }

      .page-789betlink__faq-toggle {
          font-size: 1.5em;
          margin-left: 15px;
          transition: transform 0.3s ease;
          pointer-events: none;
      }

      .page-789betlink__faq-item.active .page-789betlink__faq-toggle {
          transform: rotate(45deg);
      }

      .page-789betlink__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 25px;
          opacity: 0;
          color: var(--dark-gray);
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      }

      .page-789betlink__faq-item.active .page-789betlink__faq-answer {
          max-height: 2000px !important;
          padding: 20px 25px !important;
          opacity: 1;
      }

      .page-789betlink__floating-button-wrapper {
          position: fixed;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1000;
          width: 90%;
          max-width: 400px;
          box-sizing: border-box;
      }

      .page-789betlink__floating-button {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #ff4500; /* Nổi bật */
          color: #ffffff;
          padding: 15px 20px;
          border-radius: 50px;
          font-size: 1.2em;
          font-weight: 700;
          text-decoration: none;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          transition: background-color 0.3s ease, transform 0.3s ease;
          text-align: center;
          white-space: normal;
          word-wrap: break-word;
          width: 100%;
          box-sizing: border-box;
      }

      .page-789betlink__floating-button:hover {
          background-color: #e63900;
          transform: translateX(-50%) translateY(-3px);
      }

      .page-789betlink__logo-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 20px;
          justify-items: center;
          align-items: center;
          margin-top: 40px;
      }

      .page-789betlink__logo-item {
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 10px;
          background-color: #ffffff;
          border-radius: 8px;
          box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      }

      .page-789betlink__logo-image {
          width: 100%;
          height: auto;
          max-width: 100px;
          object-fit: contain;
          display: block;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
          .page-789betlink {
              font-size: 15px;
          }

          .page-789betlink__hero-section {
              padding: 10px 15px 30px;
          }

          .page-789betlink__hero-title {
              font-size: clamp(1.8em, 8vw, 2.5em);
          }

          .page-789betlink__hero-description {
              font-size: 1em;
          }

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

          .page-789betlink__btn-primary,
          .page-789betlink__btn-secondary {
              width: 100% !important;
              padding: 12px 15px !important;
              font-size: 1em !important;
          }

          .page-789betlink__section {
              padding: 40px 15px;
          }

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

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

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

          .page-789betlink__game-description {
              font-size: 0.9em;
          }

          .page-789betlink__step-item {
              padding: 25px;
          }

          .page-789betlink__step-title {
              font-size: 1.3em;
          }

          .page-789betlink__faq-question {
              padding: 15px 20px;
              font-size: 1em;
          }

          .page-789betlink__faq-answer {
              padding: 15px 20px;
          }

          .page-789betlink img {
              max-width: 100% !important;
              width: 100% !important;
              height: auto !important;
              box-sizing: border-box !important;
              display: block !important;
          }

          .page-789betlink__hero-image-wrapper,
          .page-789betlink__game-card,
          .page-789betlink__step-item,
          .page-789betlink__faq-item,
          .page-789betlink__logo-item,
          .page-789betlink__section,
          .page-789betlink__game-grid,
          .page-789betlink__steps-list,
          .page-789betlink__faq-list,
          .page-789betlink__logo-grid {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              overflow: hidden !important;
          }

          .page-789betlink__floating-button-wrapper {
              width: calc(100% - 30px);
              bottom: 15px;
          }

          .page-789betlink__floating-button {
              font-size: 1.1em;
              padding: 12px 15px;
          }

          .page-789betlink__logo-grid {
              grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
          }

          .page-789betlink__logo-image {
              max-width: 80px;
          }
      }
    