* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.call-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 40%, #3B82F6 100%);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #FFFFFF;
  position: relative;
  padding: 40px 24px;
  user-select: none;
  -webkit-user-select: none;
}

.call-screen__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.call-screen__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.call-screen__subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.2px;
}

.call-screen__slider-wrapper {
  width: 100%;
  max-width: 360px;
  padding-bottom: env(safe-area-inset-bottom, 20px);
  margin-bottom: 40px;
}

.slide-to-start {
  position: relative;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  touch-action: pan-x;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.slide-to-start__label {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  pointer-events: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.3px;
}
.slide-to-start__handle {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: left 0.05s linear;
  z-index: 2;
  cursor: grab;
}
.slide-to-start__handle:active {
  cursor: grabbing;
}
.slide-to-start__handle svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}
.slide-to-start__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  pointer-events: none;
  transition: width 0.05s linear;
}
.slide-to-start.is-complete .slide-to-start__label {
  opacity: 0;
}

@keyframes pulse-hint {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(12px);
  }
}
.slide-to-start__handle--idle {
  animation: pulse-hint 2s ease-in-out infinite;
}

@media (max-width: 380px) {
  .call-screen__title {
    font-size: 30px;
  }
  .call-screen__subtitle {
    font-size: 16px;
  }
  .slide-to-start {
    height: 56px;
  }
  .slide-to-start__handle {
    width: 44px;
    height: 44px;
  }
  .slide-to-start__handle svg {
    width: 20px;
    height: 20px;
  }
}

/*# sourceMappingURL=call.css.map */
