* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.phone {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px 20px;
  background: linear-gradient(180deg, #e11d48 0%, #af1638 100%);
  transition: background 0.1s;
  position: relative;
}

.screen.light {
  background: linear-gradient(180deg, #ffe1e7 0%, #ffffff 50%, #ffb2c3 100%);
}

.sos-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sos-letter {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32vh;
  line-height: 120%;
  color: #ffffff;
  transform: rotate(-90deg);
  user-select: none;
  white-space: nowrap;
}

.screen.light .sos-letter {
  color: #be1039;
}

.bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blink-btn {
  z-index: 99;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 80vw;
  max-width: 343px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
  flex: none;
  flex-grow: 1;
}

.blink-btn.active {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

.screen.light .blink-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(190, 16, 57, 0.2);
}

.screen.light .blink-btn.active {
  background: #ffffff;
  border: none;
  box-shadow: none;
}

/* .blink-btn.pressing {
    transform: scale(0.80);
  } */

.blink-btn.active {
  background: rgba(255, 255, 255, 0.25);
}

.icon {
  font-size: 18px;
  color: white;
}

.screen.light .icon {
  color: #ffffff;
}

.footer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.screen.light .footer {
  color: rgba(190, 16, 57, 0.4);
}
