
    /* CSS cho trang bet 789 */
    .page-bets789 {
      font-family: 'Arial', sans-serif;
      color: #F0F0F0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-bets789 .page-bets789__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-bets789 .page-bets789__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      background-color: #2a2a2a; /* Nền phần tối hơn một chút */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-bets789 .page-bets789__section--hero {
      background: linear-gradient(135deg, #333, #111);
      padding: 0;
      overflow: hidden;
      position: relative;
      margin-bottom: 0;
    }

    .page-bets789 .page-bets789__banner-image {
      width: 100%;
      height: auto;
      max-height: 400px; /* Giới hạn chiều cao banner */
      object-fit: cover;
      display: block;
      border-radius: 10px 10px 0 0;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và chữ */
    }

    .page-bets789 .page-bets789__hero-content {
      padding: 20px;
      text-align: center;
      position: relative;
      z-index: 2;
      color: #F0F0F0;
    }

    .page-bets789 .page-bets789__hero-title {
      font-size: 2.5em;
      color: #FFD700; /* Màu vàng gold */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-bets789 .page-bets789__hero-subtitle {
      font-size: 1.2em;
      color: #AAA;
      margin-bottom: 25px;
    }

    .page-bets789 .page-bets789__button {
      display: inline-block;
      background-color: #008000; /* Màu xanh lá cây */
      color: #FFFFFF;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-bets789 .page-bets789__button:hover {
      background-color: #006400; /* Màu xanh lá cây đậm hơn */
      transform: translateY(-2px);
    }

    .page-bets789 .page-bets789__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #DC143C; /* Màu đỏ thẫm hấp dẫn */
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      white-space: nowrap;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-bets789 .page-bets789__floating-button:hover {
      background-color: #B22222; /* Màu đỏ đậm hơn */
      transform: translateX(-50%) translateY(-3px);
    }

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

    .page-bets789 .page-bets789__section-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-bets789 .page-bets789__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: #008000;
      border-radius: 2px;
    }

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

    .page-bets789 .page-bets789__card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-bets789 .page-bets789__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-bets789 .page-bets789__card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

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

    .page-bets789 .page-bets789__card-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-bets789 .page-bets789__card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-bets789 .page-bets789__card-title a:hover {
      color: #FFF;
    }

    .page-bets789 .page-bets789__card-description {
      font-size: 0.9em;
      color: #CCC;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-bets789 .page-bets789__list {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .page-bets789 .page-bets789__list-item {
      background-color: #3a3a3a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-bets789 .page-bets789__list-item::before {
      content: '✔';
      color: #008000;
      margin-right: 10px;
      font-weight: bold;
    }

    .page-bets789 .page-bets789__text-highlight {
      color: #FFD700;
      font-weight: bold;
    }

    .page-bets789 p {
      color: #E0E0E0;
      margin-bottom: 15px;
      text-align: left;
    }

    .page-bets789 a {
      color: #00BFFF; /* Màu xanh sáng cho link */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-bets789 a:hover {
      color: #87CEFA;
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bets789 .page-bets789__hero-title {
        font-size: 2em;
      }
      .page-bets789 .page-bets789__section-title {
        font-size: 1.8em;
      }
      .page-bets789 .page-bets789__grid {
        grid-template-columns: 1fr;
      }
      .page-bets789 .page-bets789__section {
        padding: 30px 15px;
      }
      .page-bets789 .page-bets789__floating-button {
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-bets789 .page-bets789__hero-title {
        font-size: 1.8em;
      }
      .page-bets789 .page-bets789__hero-subtitle {
        font-size: 1em;
      }
      .page-bets789 .page-bets789__section-title {
        font-size: 1.6em;
      }
      .page-bets789 .page-bets789__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-bets789 .page-bets789__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }
  