.redirect-popup-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.redirect-popup {
  background: white;
  display: flex;
  padding: 28px 24px 20px 24px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 326px;
  min-width: 300px;
}

.redirect-popup__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

.redirect-popup__button {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 10px;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
  font-weight: 600;
  background: none;
}

.redirect-popup__button:hover {
  opacity: 0.9;
}

.redirect-popup-wrapper .goto {
  background: #33F;
  width: 100%;
  color: #fff;
}

.redirect-popup-wrapper .stay {
  color: #666;
  text-align: center;
  font-style: normal;
  text-decoration-line: underline;
}

.redirect-popup-wrapper .skip {
  color: #CCC;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.redirect-popup-wrapper .skip svg {
  margin-left: 4px;
}

.redirect-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  z-index: 999;
}

.redirect-popup__text {
  text-align: center;
  font-size: 22px;
  color: #333;
  line-height: 30.8px;
  font-weight: 600;
  font-family: 'DM Sans';
  margin: 0;
}

#readme {
 text-align: center;
 font-family: DM Sans;
 font-weight: 500;
 font-size: 16px;
 line-height: 22.4px;
 letter-spacing: 0%;
 margin-top: 8px !important;;
}
