
    /* Tổng quan */
    .page-thomolive {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Đủ chỗ cho nút nổi */
    }

    /* Logo và Tiêu đề */
    .page-thomolive__header {
      text-align: center;
      padding: 20px 15px;
      background-color: #222;
      border-bottom: 2px solid #ffcc00;
    }

    .page-thomolive__logo {
      display: block;
      margin: 0 auto 10px auto;
      max-width: 150px;
      height: auto;
    }

    .page-thomolive__title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-thomolive__subtitle {
      font-size: 1.1em;
      color: #ccc;
      margin-top: 0;
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-thomolive__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-thomolive__button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: block;
      color: #1a1a1a; /* Màu chữ tối để tương phản với nền sáng */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
      overflow: hidden; /* Ẩn phần văn bản tràn */
      text-overflow: ellipsis; /* Hiển thị dấu ba chấm nếu tràn */
    }

    .page-thomolive__button--register {
      background-color: #ffcc00; /* Màu vàng */
      color: #1a1a1a;
    }

    .page-thomolive__button--register:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-thomolive__button--login {
      background-color: #007bff; /* Màu xanh dương */
      color: #ffffff;
    }

    .page-thomolive__button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Phần nội dung chính */
    .page-thomolive__section {
      padding: 25px 15px;
      margin-bottom: 20px;
      background-color: #222;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-thomolive__section-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-align: center;
      border-bottom: 2px solid #333;
      padding-bottom: 10px;
    }

    .page-thomolive__paragraph {
      margin-bottom: 15px;
      color: #cccccc;
    }

    .page-thomolive__image-container {
      text-align: center;
      margin: 20px 0;
    }

    .page-thomolive__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .page-thomolive__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-thomolive__list-item {
      background-color: #333;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      color: #e0e0e0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

    .page-thomolive__highlight {
      color: #ffcc00;
      font-weight: bold;
    }

    /* Bảng */
    .page-thomolive__table-container {
      overflow-x: auto;
      margin-top: 20px;
    }

    .page-thomolive__table {
      width: 100%;
      border-collapse: collapse;
      min-width: 300px; /* Đảm bảo bảng không quá nhỏ trên di động */
    }

    .page-thomolive__table th,
    .page-thomolive__table td {
      border: 1px solid #444;
      padding: 10px;
      text-align: left;
      color: #e0e0e0;
    }

    .page-thomolive__table th {
      background-color: #333;
      color: #ffcc00;
      font-weight: bold;
    }

    .page-thomolive__table tr:nth-child(even) {
      background-color: #2a2a2a;
    }

    .page-thomolive__table tr:hover {
      background-color: #3a3a3a;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-thomolive__header {
        padding: 30px 20px;
      }
      .page-thomolive__title {
        font-size: 2.5em;
      }
      .page-thomolive__subtitle {
        font-size: 1.3em;
      }
      .page-thomolive__section {
        padding: 30px 25px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }
      .page-thomolive__section-title {
        font-size: 2em;
      }
      .page-thomolive__floating-buttons {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        max-width: 400px;
        border-radius: 10px 10px 0 0;
      }
      .page-thomolive__button {
        padding: 15px 20px;
        font-size: 1.1em;
      }
    }
  