
    :root {
      --page-789betlink__primary-color: #f3b200; /* Vàng kim */
      --page-789betlink__secondary-color: #00ff00; /* Xanh lá */
      --page-789betlink__text-color: #ffffff; /* Trắng */
      --page-789betlink__bg-color: #000000; /* Đen */
      --page-789betlink__dark-gray: #1a1a1a;
      --page-789betlink__light-gray: #333333;
    }

    .page-789betlink {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-789betlink__bg-color);
      color: var(--page-789betlink__text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-789betlink__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      background-color: var(--page-789betlink__dark-gray);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-789betlink__section--dark {
      background-color: var(--page-789betlink__bg-color);
    }

    .page-789betlink__section-title {
      font-size: 2.5em;
      color: var(--page-789betlink__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    /* Hero Section */
    .page-789betlink__hero-section {
      position: relative;
      text-align: center;
      padding-top: 120px; /* Adjust for fixed header */
      background-color: var(--page-789betlink__bg-color);
      overflow: hidden;
    }

    .page-789betlink__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789betlink__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(243, 178, 0, 0.5);
    }

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

    .page-789betlink__hero-title {
      font-size: 2.8em;
      color: var(--page-789betlink__primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-789betlink__hero-subtitle {
      font-size: 1.4em;
      color: var(--page-789betlink__secondary-color);
      margin-bottom: 30px;
    }

    .page-789betlink__cta-button {
      display: inline-block;
      background-color: var(--page-789betlink__secondary-color);
      color: var(--page-789betlink__bg-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
    }

    .page-789betlink__cta-button:hover {
      background-color: #00cc00;
      transform: translateY(-3px);
    }

    /* Floating Login/Register Button */
    .page-789betlink__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789betlink__primary-color);
      color: var(--page-789betlink__bg-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 20px rgba(243, 178, 0, 0.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-789betlink__floating-button:hover {
      background-color: #e0a500;
      transform: scale(1.05);
      animation: none;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* General Content */
    .page-789betlink__text-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--page-789betlink__text-color);
    }

    .page-789betlink__text-content strong {
      color: var(--page-789betlink__primary-color);
    }

    .page-789betlink__link {
      color: var(--page-789betlink__secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-789betlink__link:hover {
      color: var(--page-789betlink__primary-color);
      text-decoration: underline;
    }

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

    .page-789betlink__game-card {
      background-color: var(--page-789betlink__light-gray);
      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;
      text-decoration: none;
      color: var(--page-789betlink__text-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-789betlink__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789betlink__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-789betlink__game-card-content {
      padding: 20px;
    }

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

    .page-789betlink__game-card-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Game Providers */
    .page-789betlink__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-789betlink__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 15px;
      background-color: var(--page-789betlink__light-gray);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-789betlink__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }

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

    /* FAQ Section */
    .page-789betlink__faq-list {
      margin-top: 30px;
    }

    .page-789betlink__faq-item {
      background-color: var(--page-789betlink__light-gray);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789betlink__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: var(--page-789betlink__dark-gray);
      color: var(--page-789betlink__primary-color);
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--page-789betlink__light-gray);
      transition: background-color 0.3s ease;
    }

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

    .page-789betlink__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Allow click on parent div */
      color: inherit;
      font-size: 1em; /* Reset h3 default size */
    }

    .page-789betlink__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Allow click on parent div */
      color: var(--page-789betlink__secondary-color);
    }

    .page-789betlink__faq-item.active .page-789betlink__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-789betlink__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: var(--page-789betlink__text-color);
      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; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789betlink__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-789betlink__hero-title {
        font-size: 2em;
      }

      .page-789betlink__hero-subtitle {
        font-size: 1.1em;
      }

      .page-789betlink__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-789betlink__floating-button {
        padding: 12px 20px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }

      .page-789betlink__section-title {
        font-size: 2em;
      }

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

      .page-789betlink__game-card-image-wrapper,
      .page-789betlink__provider-logo-wrapper {
        height: 150px; /* Adjust height for mobile */
      }

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

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

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

      .page-789betlink__faq-item.active .page-789betlink__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-789betlink__hero-image,
      .page-789betlink__game-card-image,
      .page-789betlink__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betlink__hero-image-wrapper,
      .page-789betlink__game-card-image-wrapper,
      .page-789betlink__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  