/* Полноэкранный блок перекрытия */
#tg-relaunch-fullscreen-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;

  h2 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #000000;
    font-weight: 600;
  }

  p {
    margin: 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
  }
}

#tg-countdown {
  font-weight: 600;
  color: #2481cc;
}

#tg-send-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-send-overlay__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tg-send-spin 0.8s linear infinite;
}

@keyframes tg-send-spin {
  to {
    transform: rotate(360deg);
  }
}
