
body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: Arial, sans-serif;
  color: white;
}

.wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.zoom-container {
  transform: scale(0.78);
  transform-origin: top center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 16px;
  box-sizing: border-box;
  min-height: 100vh;
}

.popup-box {
  background-color: black;
  border: 2px solid #333;
  padding: 20px;
  width: 100%;
  max-width: 390px;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-yes {
  background-color: #ff9000;
  border: none;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.btn-no {
  background-color: #333;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.screen {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  height: 100vh;
}
