
    :root {
      --page-bet-com-365-primary-color: #e44d26; /* Một màu cam/đỏ rực rỡ cho các điểm nhấn */
      --page-bet-com-365-secondary-color: #f0ad4e; /* Một màu cam nhạt hơn cho các phần nổi bật */
      --page-bet-com-365-dark-bg: #1a1a1a;
      --page-bet-com-365-light-text: #ffffff;
      --page-bet-com-365-gray-text: #cccccc;
      --page-bet-com-365-border-color: #333333;
      --page-bet-com-365-button-hover-bg: #c9302c;
      --page-bet-com-365-shadow: rgba(0, 0, 0, 0.3);
    }

    .page-bet-com-365 {
      font-family: 'Arial', sans-serif;
      color: var(--page-bet-com-365-light-text);
      background-color: var(--page-bet-com-365-dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Dự phòng cho padding của body */
    }

    .page-bet-com-365__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bet-com-365__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Đã điều chỉnh cho padding của body, 10px trên cùng để trang trí */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .page-bet-com-365__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Làm tối ảnh nền để dễ đọc chữ */
    }

    .page-bet-com-365__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-bet-com-365-light-text);
      max-width: 800px;
      padding: 0 20px;
    }

    .page-bet-com-365__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-bet-com-365-primary-color);
      text-shadow: 2px 2px 4px var(--page-bet-com-365-shadow);
    }

    .page-bet-com-365__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-bet-com-365-light-text);
      text-shadow: 1px 1px 2px var(--page-bet-com-365-shadow);
    }

    .page-bet-com-365__button {
      display: inline-block;
      background-color: var(--page-bet-com-365-primary-color);
      color: var(--page-bet-com-365-light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-bet-com-365__button:hover {
      background-color: var(--page-bet-com-365-button-hover-bg);
    }

    .page-bet-com-365__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-bet-com-365__floating-button {
      background-color: var(--page-bet-com-365-primary-color);
      color: var(--page-bet-com-365-light-text);
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 0.9em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px var(--page-bet-com-365-shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      line-height: 1.2;
    }

    .page-bet-com-365__floating-button:hover {
      background-color: var(--page-bet-com-365-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-bet-com-365__intro-section {
      text-align: left;
    }

    .page-bet-com-365__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-bet-com-365-secondary-color);
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-bet-com-365__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: var(--page-bet-com-365-primary-color);
      border-radius: 2px;
    }

    .page-bet-com-365__text-content {
      font-size: 1.1em;
      color: var(--page-bet-com-365-gray-text);
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-bet-com-365__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bet-com-365__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-bet-com-365-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-bet-com-365-border-color);
    }

    .page-bet-com-365__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-bet-com-365__game-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box; /* Quan trọng cho khả năng phản hồi */
    }

    .page-bet-com-365__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-bet-com-365__game-card:hover .page-bet-com-365__game-image {
      transform: scale(1.05);
    }

    .page-bet-com-365__game-info {
      padding: 20px;
    }

    .page-bet-com-365__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-bet-com-365-primary-color);
    }

    .page-bet-com-365__game-description {
      font-size: 0.95em;
      color: var(--page-bet-com-365-gray-text);
      margin-bottom: 15px;
      overflow-wrap: break-word; /* Đảm bảo văn bản tự động xuống dòng */
    }

    .page-bet-com-365__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bet-com-365__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-bet-com-365-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-bet-com-365-border-color);
    }

    .page-bet-com-365__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-bet-com-365__promo-image-wrapper {
      width: 100%;
      height: 250px; /* Chiều cao cố định cho ảnh khuyến mãi */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-bet-com-365__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-bet-com-365__promo-card:hover .page-bet-com-365__promo-image {
      transform: scale(1.05);
    }

    .page-bet-com-365__promo-info {
      padding: 20px;
    }

    .page-bet-com-365__promo-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: var(--page-bet-com-365-secondary-color);
    }

    .page-bet-com-365__promo-description {
      font-size: 1em;
      color: var(--page-bet-com-365-gray-text);
      margin-bottom: 15px;
      overflow-wrap: break-word;
    }

    .page-bet-com-365__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bet-com-365__news-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-bet-com-365-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-bet-com-365-border-color);
    }

    .page-bet-com-365__news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-bet-com-365__news-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh tin tức */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-bet-com-365__news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-bet-com-365__news-card:hover .page-bet-com-365__news-image {
      transform: scale(1.05);
    }

    .page-bet-com-365__news-info {
      padding: 20px;
    }

    .page-bet-com-365__news-date {
      font-size: 0.85em;
      color: var(--page-bet-com-365-primary-color);
      margin-bottom: 10px;
    }

    .page-bet-com-365__news-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-bet-com-365-light-text);
      overflow-wrap: break-word;
    }

    .page-bet-com-365__news-summary {
      font-size: 0.9em;
      color: var(--page-bet-com-365-gray-text);
      overflow-wrap: break-word;
    }

    .page-bet-com-365__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-bet-com-365__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-bet-com-365-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-bet-com-365-shadow);
    }

    .page-bet-com-365__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333333;
      color: var(--page-bet-com-365-light-text);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bet-com-365__faq-question:hover {
      background-color: #444444;
    }

    .page-bet-com-365__faq-question h3 {
      margin: 0;
      color: var(--page-bet-com-365-light-text);
      font-size: 1.1em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      flex-grow: 1;
      overflow-wrap: break-word;
    }

    .page-bet-com-365__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút toggle chặn sự kiện click */
      color: var(--page-bet-com-365-primary-color);
    }

    .page-bet-com-365__faq-item.active .page-bet-com-365__faq-toggle {
      transform: rotate(45deg);
    }

    .page-bet-com-365__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Đã điều chỉnh padding để phù hợp với padding ngang của câu hỏi */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-bet-com-365-gray-text);
      font-size: 0.95em;
      text-align: justify;
    }

    .page-bet-com-365__faq-item.active .page-bet-com-365__faq-answer {
      max-height: 2000px !important; /* Giá trị đủ lớn */
      padding: 20px !important; /* Đảm bảo padding phù hợp với padding ngang của câu hỏi và thêm padding dọc */
      opacity: 1;
    }

    /* Điều chỉnh phản hồi */
    @media (max-width: 768px) {
      .page-bet-com-365 {
        padding-top: var(--header-offset, 100px); /* Điều chỉnh cho header nhỏ hơn trên di động */
      }
      .page-bet-com-365__hero-title {
        font-size: 2.2em;
      }
      .page-bet-com-365__hero-subtitle {
        font-size: 1.2em;
      }
      .page-bet-com-365__section-title {
        font-size: 2em;
      }
      .page-bet-com-365__section {
        padding: 30px 15px;
      }
      .page-bet-com-365__game-grid,
      .page-bet-com-365__promo-grid,
      .page-bet-com-365__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Khả năng phản hồi của các mục danh sách cho thẻ trò chơi, thẻ khuyến mãi, thẻ tin tức */
      .page-bet-com-365__game-card,
      .page-bet-com-365__promo-card,
      .page-bet-com-365__news-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bet-com-365__game-card .page-bet-com-365__game-description,
      .page-bet-com-365__promo-card .page-bet-com-365__promo-description,
      .page-bet-com-365__news-card .page-bet-com-365__news-summary,
      .page-bet-com-365__news-card .page-bet-com-365__news-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* Đối với các từ khóa dài */
      }

      /* Khả năng phản hồi của hình ảnh */
      .page-bet-com-365__game-image-wrapper,
      .page-bet-com-365__promo-image-wrapper,
      .page-bet-com-365__news-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-bet-com-365__game-image,
      .page-bet-com-365__promo-image,
      .page-bet-com-365__news-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-bet-com-365__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Các nút cạnh nhau trên màn hình nhỏ hơn */
        gap: 8px;
      }

      .page-bet-com-365__floating-button {
        width: 50px;
        height: 50px;
        font-size: 0.8em;
      }

      .page-bet-com-365__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-bet-com-365__faq-question h3 {
        font-size: 1em;
      }
      .page-bet-com-365__faq-toggle {
        font-size: 1.3em;
      }
      .page-bet-com-365__faq-answer {
        padding: 0 15px;
      }
      .page-bet-com-365__faq-item.active .page-bet-com-365__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-bet-com-365__hero-title {
        font-size: 1.8em;
      }
      .page-bet-com-365__hero-subtitle {
        font-size: 1em;
      }
      .page-bet-com-365__section-title {
        font-size: 1.8em;
      }
      .page-bet-com-365__floating-buttons {
        bottom: 10px;
        right: 10px;
      }
      .page-bet-com-365__floating-button {
        width: 45px;
        height: 45px;
        font-size: 0.75em;
      }
    }
  