#startButton {
    position: fixed;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    z-index: 9999;
    font-family: system-ui;
    font-weight: 300;
    font-size: 14px;
    transition: bottom 0.3s ease;
}

#startButton.hide {
  bottom: -60px;
}

#startButton.mobile {
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 24px);
  max-width: 400px;
}

#startButton a,
#startButton button {
  background: #0a0000;
  color: #ccc;
  border: 0;
  border: 1px solid #777;
  border-radius: 999px;
  padding: 9px 0px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  transition: all 0.2s ease;
  font-weight: 300;
  line-height: 1;
  filter: drop-shadow(0 0px 1px #000);
  /* box-shadow: 0 0 1px 1px #000; */
  min-width: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc_desktop #startButton a, .vc_desktop #startButton button {
    padding: 9px 10px;
    font-size: 18px;
}

#startButton a:hover,
#startButton button:hover {
  /* background: rgba(0, 0, 0, 0.95); */
  /* border-color: rgba(255, 255, 255, 0.6); */
  filter: invert(1);
}

#startButton .btn-join {
  position: relative;
}

#startButton .btn-join button {
  width: 100%;
}

#startButton .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: justify;
}

#startButton.mobile .tooltip {
  position: fixed;
  bottom: 70px;
  left: 12px;
  right: 12px;
  width: auto;
  transform: none;
}

#startButton .tooltip.show {
  opacity: 1;
  visibility: visible;
}

#crisp-chatbox .cc-18ov6 {
    bottom: calc(50px + .34 * env(safe-area-inset-bottom))!important;
    /* right: 9px!important; */
}

.crisp-client .cc-10lqw {
    visibility: hidden!important;
}