
    :root {
      --page-kèo-primary-color: #0d1a26; /* Xanh đen đậm cho nền */
      --page-kèo-secondary-color: #f7a62b; /* Vàng cam cho điểm nhấn */
      --page-kèo-text-color: #ffffff; /* Trắng cho văn bản chính */
      --page-kèo-text-light: #e0e0e0; /* Xám nhạt cho văn bản phụ */
      --page-kèo-button-bg: #e74c3c; /* Đỏ cho nút hành động */
      --page-kèo-button-hover: #c0392b; /* Đỏ đậm hơn khi hover */
      --page-kèo-card-bg: #1a2c3e; /* Xanh đen nhạt hơn cho thẻ */
      --page-kèo-border-color: #34495e; /* Xanh xám cho đường viền */
    }

    .page-homebet {
      font-family: 'Arial', sans-serif;
      color: var(--page-kèo-text-color);
      background-color: var(--page-kèo-primary-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút cố định */
      overflow-x: hidden;
    }

    .page-homebet-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-homebet-section.page-homebet-hero {
      padding: 0;
      margin-bottom: 0;
      position: relative;
      overflow: hidden;
    }

    .page-homebet-banner-img {
      width: 100%;
      height: 200px; /* Điều chỉnh chiều cao cho di động */
      object-fit: cover;
      display: block;
    }

    .page-homebet-hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 600px;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 15px;
      border-radius: 8px;
    }

    .page-homebet-hero-content h1 {
      font-size: 24px;
      color: var(--page-kèo-secondary-color);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-homebet-hero-content p {
      font-size: 14px;
      color: var(--page-kèo-text-light);
    }

    .page-homebet-title {
      color: var(--page-kèo-secondary-color);
      font-size: 22px;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-homebet-subtitle {
      color: var(--page-kèo-text-light);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .page-homebet-text {
      font-size: 15px;
      color: var(--page-kèo-text-color);
      margin-bottom: 15px;
      text-align: left;
    }

    .page-homebet-button-fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-kèo-button-bg);
      color: var(--page-kèo-text-color);
      text-align: center;
      padding: 15px 0;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-homebet-button-fixed:hover {
      background-color: var(--page-kèo-button-hover);
    }

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

    .page-homebet-card {
      background-color: var(--page-kèo-card-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
    }

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

    .page-homebet-card-img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-kèo-border-color);
    }

    .page-homebet-card-content {
      padding: 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-homebet-card-title {
      font-size: 16px;
      color: var(--page-kèo-secondary-color);
      margin-bottom: 5px;
      font-weight: bold;
      text-decoration: none;
      display: block; /* Làm cho toàn bộ tiêu đề có thể nhấp được nếu đó là một liên kết */
    }

    .page-homebet-card-title a {
      color: inherit;
      text-decoration: none;
    }

    .page-homebet-card-title a:hover {
      text-decoration: underline;
    }

    .page-homebet-card-description {
      font-size: 12px;
      color: var(--page-kèo-text-light);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 10px;
    }

    .page-homebet-btn {
      display: inline-block;
      background-color: var(--page-kèo-button-bg);
      color: var(--page-kèo-text-color);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .page-homebet-btn:hover {
      background-color: var(--page-kèo-button-hover);
    }

    .page-homebet-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
    }

    .page-homebet-list li {
      background-color: var(--page-kèo-card-bg);
      padding: 10px 15px;
      margin-bottom: 8px;
      border-left: 4px solid var(--page-kèo-secondary-color);
      border-radius: 4px;
      font-size: 15px;
      color: var(--page-kèo-text-color);
    }

    .page-homebet-list li strong {
      color: var(--page-kèo-secondary-color);
    }

    /* Điều chỉnh phản hồi */
    @media (min-width: 768px) {
      .page-homebet-section {
        padding: 30px 40px;
      }

      .page-homebet-hero-content h1 {
        font-size: 38px;
      }

      .page-homebet-hero-content p {
        font-size: 16px;
      }

      .page-homebet-title {
        font-size: 32px;
      }

      .page-homebet-subtitle {
        font-size: 22px;
      }

      .page-homebet-text {
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .page-homebet-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
      }

      .page-homebet-card {
        min-height: 250px;
      }

      .page-homebet-card-img {
        height: 120px;
      }

      .page-homebet-card-title {
        font-size: 18px;
      }

      .page-homebet-card-description {
        font-size: 13px;
      }

      .page-homebet-button-fixed {
        width: auto;
        left: auto;
        right: 20px;
        bottom: 20px;
        border-radius: 50px;
        padding: 15px 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      }
    }

    @media (min-width: 1024px) {
      .page-homebet-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
  