/* Clone UI từ livechat.hitclub.med — asset nội bộ, không phụ thuộc CDN gốc */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #100903;
}

body {
  font-family: Montserrat, sans-serif;
}

.navigate-live-chat {
  font-family: Montserrat, sans-serif;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

.navigate-live-chat.bg-1 {
  background-image: url(./static/media/bg_black.svg);
  background-position: top;
  background-size: cover;
  z-index: 0;
}

.navigate-live-chat .bg-2 {
  background-image: url(./static/media/navigate-bg.svg);
  background-size: cover;
  height: 100%;
  left: 0;
  object-fit: contain;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.navigate-live-chat .group-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.navigate-live-chat .group-content .center-content {
  height: 900px;
  overflow-x: hidden;
  overflow-y: auto;
}

.navigate-live-chat .logo {
  display: flex;
  justify-content: center;
}

.navigate-live-chat .logo .main-logo {
  min-width: 140px;
  padding-top: 32px;
  width: 170px;
}

.navigate-live-chat .msg {
  color: #ffe49e;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  margin: 60px 0;
  text-align: center;
}

.navigate-live-chat .action-group {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.navigate-live-chat .action-group .button-group {
  display: grid;
  grid-row-gap: 24px;
  justify-content: center;
  row-gap: 24px;
  width: 30%;
}

.navigate-live-chat .action-group .button-group button {
  background: rgba(96, 97, 112, 0.161);
  background-clip: padding-box;
  background-color: #1a0f00;
  border: 2px solid transparent;
  border-radius: 18px;
  cursor: pointer;
  gap: 16px;
  height: 77px;
  padding: 18px 0 24px;
  position: relative;
  width: 380px;
}

.navigate-live-chat .action-group .button-group button:before {
  background-image: linear-gradient(
    90deg,
    #e0aa3e,
    #f9f295 10%,
    #e5b94f 19%,
    #e0aa3e 31%,
    #f7ef8a 71.84%,
    #b88a44
  );
  border-radius: inherit;
  content: "";
  inset: 0;
  margin: -2px;
  position: absolute;
  z-index: -1;
}

.navigate-live-chat .action-group .button-group button span {
  background: linear-gradient(
    90deg,
    #e0aa3e,
    #f9f295 10%,
    #e5b94f 19%,
    #e0aa3e 31%,
    #f7ef8a 71.84%,
    #b88a44
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
}

.navigate-live-chat .sub-actions {
  border-radius: 5px;
  bottom: 10%;
  padding: 10px;
  position: fixed;
  right: 20px;
  z-index: 999;
}

.navigate-live-chat .sub-actions img {
  cursor: pointer;
  margin-bottom: 24px;
  width: 48px;
}

.navigate-live-chat .sub-action-mb {
  column-gap: 24px;
  display: none;
  justify-content: center;
}

.navigate-live-chat .footer .content {
  color: #ffe49e;
  display: flex;
  font-size: 19px;
  font-weight: 400;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
}

.navigate-live-chat .footer .content .highlight {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.navigate-live-chat .footer .content .highlight a {
  color: #ffe49e;
  text-transform: uppercase;
}

.navigate-live-chat .loading-overlay {
  align-items: center;
  color: #ffe49e;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

.navigate-live-chat .loading-overlay.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .navigate-live-chat .logo .main-logo {
    padding-top: 0;
  }

  .navigate-live-chat .group-content .center-content {
    height: 100%;
    padding: 24px 24px 40px;
  }

  .navigate-live-chat .msg {
    margin: 16px 0;
  }

  .navigate-live-chat .action-group {
    margin-bottom: 0;
    width: 100%;
  }

  .navigate-live-chat .action-group .button-group {
    width: 100%;
  }

  .navigate-live-chat .action-group .button-group button {
    width: 345px;
  }

  .navigate-live-chat .sub-actions {
    display: none;
  }

  .navigate-live-chat .sub-action-mb {
    display: flex;
    margin-bottom: 34px;
  }

  .navigate-live-chat .sub-action-mb img {
    cursor: pointer;
    width: 48px;
  }

  .navigate-live-chat .footer .content,
  .navigate-live-chat .footer .content .highlight {
    font-size: 14px;
  }
}
