
    /* Reset và cơ bản */
    .page-789betlink {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      overflow-x: hidden; /* Ngăn chặn cuộn ngang */
    }

    .page-789betlink a {
      color: #FFD700; /* Màu vàng cho link */
      text-decoration: none;
    }

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

    /* Các phần chung */
    .page-789betlink__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-789betlink__section {
      padding: 40px 20px;
      margin-bottom: 20px;
    }

    .page-789betlink__title {
      color: #FFD700; /* Màu vàng cho tiêu đề chính */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
    }

    .page-789betlink__subtitle {
      color: #FFFFFF; /* Màu trắng cho tiêu đề phụ */
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    /* Hero Section */
    .page-789betlink__hero-section {
      text-align: center;
      background-color: #000000;
      padding-top: 140px; /* An toàn cho menu cố định */
      padding-bottom: 40px;
    }
    @media (max-width: 768px) {
      .page-789betlink__hero-section {
        padding-top: 100px; /* An toàn cho menu cố định trên di động */
      }
    }

    .page-789betlink__hero-image-wrapper {
        width: 100%;
        max-width: 800px; /* Tùy chỉnh kích thước tối đa của ảnh hero */
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-789betlink__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-789betlink__hero-content {
      margin-top: 30px;
    }

    .page-789betlink__hero-content h1 {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    @media (max-width: 768px) {
      .page-789betlink__hero-content h1 {
        font-size: 2em;
      }
    }

    .page-789betlink__hero-content p {
      font-size: 1.1em;
      color: #FFFFFF;
      max-width: 800px;
      margin: 0 auto 25px;
    }

    .page-789betlink__hero-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    }

    .page-789betlink__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Floating Login/Register Button */
    .page-789betlink__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-789betlink__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-789betlink__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    /* Game Categories Section */
    .page-789betlink__game-categories {
      background-color: #1a1a1a;
    }

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

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

    .page-789betlink__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }

    .page-789betlink__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Đảm bảo kích thước đủ lớn, không phải icon */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #222222;
    }

    .page-789betlink__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Giữ tỷ lệ ảnh */
    }

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

    .page-789betlink__game-card-content h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #FFD700;
    }

    .page-789betlink__game-card-content p {
      font-size: 0.95em;
      color: #CCCCCC;
    }

    /* Why Choose Us Section */
    .page-789betlink__why-choose-us {
      background-color: #000000;
    }

    .page-789betlink__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-789betlink__feature-item {
      background-color: #333333;
      border-radius: 10px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      max-width: 350px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-789betlink__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    }

    .page-789betlink__feature-icon-wrapper {
        width: 100%;
        max-width: 150px; /* Larger icon size */
        height: 150px;
        margin: 0 auto 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #FFD700;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-789betlink__feature-icon {
      max-width: 80%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-789betlink__feature-item h3 {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-789betlink__feature-item p {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-789betlink__game-providers {
      background-color: #1a1a1a;
      padding-top: 40px;
      padding-bottom: 40px;
    }

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

    .page-789betlink__provider-logo-wrapper {
        width: 100%;
        max-width: 180px; /* Ensure logos are visible but not too large */
        height: 100px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #222222;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-789betlink__provider-logo-wrapper:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }

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

    /* FAQ Section */
    .page-789betlink__faq-section {
      background-color: #000000;
      padding-top: 40px;
      padding-bottom: 60px;
    }

    .page-789betlink__faq-list {
      max-width: 800px;
      margin: 30px auto 0;
    }

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

    .page-789betlink__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-789betlink__faq-question h3 {
      color: #FFD700;
      font-size: 1.15em;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-789betlink__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-789betlink__faq-item.active .page-789betlink__faq-toggle {
      transform: rotate(45deg); /* Hoặc đơn giản là đổi thành '-' */
    }

    .page-789betlink__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #CCCCCC;
      font-size: 0.95em;
      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; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789betlink__container {
        padding: 15px;
      }
      .page-789betlink__title {
        font-size: 2em;
      }
      .page-789betlink__subtitle {
        font-size: 1.5em;
      }
      .page-789betlink__section {
        padding: 30px 15px;
      }
      .page-789betlink__hero-content h1 {
        font-size: 1.8em;
      }
      .page-789betlink__hero-content p {
        font-size: 1em;
      }
      .page-789betlink__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-789betlink__game-grid {
        grid-template-columns: 1fr;
      }
      .page-789betlink__feature-item {
        flex: 1 1 100%;
        max-width: 100%;
      }
      .page-789betlink__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-789betlink__faq-question h3 {
        font-size: 1em;
      }
    }

    /* Enforce image responsive styles with !important for mobile */
    @media (max-width: 768px) {
      .page-789betlink__hero-image,
      .page-789betlink__game-card-image,
      .page-789betlink__feature-icon,
      .page-789betlink__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betlink__hero-image-wrapper,
      .page-789betlink__game-card-image-wrapper,
      .page-789betlink__feature-icon-wrapper,
      .page-789betlink__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  