
    /* CSS Styles for page-link188bet */
    :root {
      --page-link188bet-primary-color: #f39c12; /* Cam cho điểm nhấn/nút */
      --page-link188bet-secondary-color: #e74c3c; /* Đỏ cho ưu đãi/khuyến mãi */
      --page-link188bet-dark-bg: #1a1a1a; /* Nền tối */
      --page-link188bet-light-text: #ecf0f1; /* Chữ sáng trên nền tối */
      --page-link188bet-grey-text: #bdc3c7; /* Chữ xám nhạt hơn */
      --page-link188bet-border-color: #34495e; /* Viền tối */
      --page-link188bet-font-family: 'Arial', sans-serif;
    }

    .page-link188bet {
      font-family: var(--page-link188bet-font-family);
      color: var(--page-link188bet-light-text);
      background-color: var(--page-link188bet-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút cố định */
      overflow-x: hidden; /* Ngăn chặn cuộn ngang */
    }

    .page-link188bet-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #2c3e50; /* Phần nền tối hơn một chút */
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-align: center; /* Mặc định cho các phần như banner/giới thiệu */
    }

    .page-link188bet-section.page-link188bet-intro {
      background-color: #1a1a1a;
      padding: 0; /* Banner tự xử lý padding */
      border-radius: 0;
      box-shadow: none;
    }

    .page-link188bet-h1,
    .page-link188bet-h2,
    .page-link188bet-h3 {
      color: var(--page-link188bet-primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-link188bet-h1 {
      font-size: 2.2em;
      padding: 15px 10px;
      background-color: #1a1a1a; /* Đảm bảo độ tương phản tốt */
      border-bottom: 2px solid var(--page-link188bet-primary-color);
      margin-top: 0;
      line-height: 1.3;
    }

    .page-link188bet-h2 {
      font-size: 1.8em;
      color: var(--page-link188bet-light-text);
      border-bottom: 1px solid var(--page-link188bet-border-color);
      padding-bottom: 10px;
      margin-top: 30px;
    }

    .page-link188bet-h3 {
      font-size: 1.4em;
      color: var(--page-link188bet-primary-color);
      margin-top: 20px;
    }

    .page-link188bet-p {
      color: var(--page-link188bet-grey-text);
      margin-bottom: 10px;
      text-align: left;
    }

    .page-link188bet-img-banner {
      width: 100%;
      height: auto;
      max-height: 250px; /* Giới hạn chiều cao banner trên di động */
      object-fit: cover;
      display: block;
      margin-bottom: 15px; /* Khoảng cách giữa banner và văn bản */
    }

    .page-link188bet-btn-promo-float {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-link188bet-secondary-color); /* Đỏ cho sự khẩn cấp */
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      animation: page-link188bet-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap; /* Ngăn chặn ngắt dòng văn bản */
      max-width: 90%; /* Đảm bảo không tràn trên màn hình nhỏ */
      text-align: center;
      justify-content: center;
    }

    .page-link188bet-btn-promo-float:hover {
      background-color: #c0392b; /* Đỏ đậm hơn khi di chuột */
      animation: none;
    }

    @keyframes page-link188bet-pulse {
      0% { transform: translateX(-50%) scale(1); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); }
      50% { transform: translateX(-50%) scale(1.03); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7); }
      100% { transform: translateX(-50%) scale(1); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); }
    }

    .page-link188bet-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-link188bet-game-card {
      background-color: #34495e;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease-in-out;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-link188bet-game-card:hover {
      transform: translateY(-5px);
    }

    .page-link188bet-game-card img {
      width: 100%;
      height: 100px; /* Chiều cao cố định cho hình ảnh trò chơi */
      object-fit: cover;
      display: block;
    }

    .page-link188bet-game-card-content {
      padding: 10px;
      flex-grow: 1; /* Đảm bảo nội dung chiếm hết không gian */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-link188bet-game-card-content h3 {
      font-size: 1.1em;
      color: var(--page-link188bet-primary-color);
      margin-top: 5px;
      margin-bottom: 10px;
    }

    .page-link188bet-game-card-content a {
      display: block;
      background-color: var(--page-link188bet-primary-color);
      color: var(--page-link188bet-dark-bg);
      padding: 8px 12px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.2s ease;
      margin-top: auto; /* Đẩy nút xuống dưới cùng */
    }

    .page-link188bet-game-card-content a:hover {
      background-color: #e67e22; /* Cam đậm hơn khi di chuột */
    }

    .page-link188bet-list {
      list-style-type: none;
      padding: 0;
      margin-top: 15px;
      text-align: left;
    }

    .page-link188bet-list li {
      background-color: #34495e;
      margin-bottom: 8px;
      padding: 12px 15px;
      border-left: 5px solid var(--page-link188bet-primary-color);
      border-radius: 5px;
      color: var(--page-link188bet-light-text);
      font-size: 0.95em;
    }

    .page-link188bet-list li strong {
      color: var(--page-link188bet-primary-color);
    }

    .page-link188bet-faq-item {
      background-color: #34495e;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-link188bet-faq-question {
      padding: 15px;
      background-color: #2c3e50;
      color: var(--page-link188bet-light-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.2s ease;
      text-align: left;
    }

    .page-link188bet-faq-question:hover {
      background-color: #34495e;
    }

    .page-link188bet-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-link188bet-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-link188bet-faq-answer {
      padding: 0 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: var(--page-link188bet-grey-text);
      text-align: left;
    }

    .page-link188bet-faq-answer.active {
      max-height: 200px; /* Điều chỉnh dựa trên nội dung dự kiến */
      padding: 15px;
    }

    .page-link188bet-cta-button {
      display: inline-block;
      background-color: var(--page-link188bet-primary-color);
      color: var(--page-link188bet-dark-bg);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      margin-top: 30px;
      transition: background-color 0.3s ease;
    }

    .page-link188bet-cta-button:hover {
      background-color: #e67e22;
    }

    /* Điều chỉnh responsive */
    @media (min-width: 768px) {
      .page-link188bet {
        padding: 0 20px 80px;
      }

      .page-link188bet-section {
        padding: 30px;
      }

      .page-link188bet-h1 {
        font-size: 2.8em;
      }

      .page-link188bet-h2 {
        font-size: 2.2em;
      }

      .page-link188bet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-link188bet-img-banner {
        max-height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .page-link188bet {
        max-width: 1200px;
        margin: 0 auto;
      }
      .page-link188bet-h1 {
        font-size: 3em;
      }
      .page-link188bet-btn-promo-float {
        padding: 18px 35px;
        font-size: 1.2em;
      }
    }
  