body {
    margin: 0;
    background: #080b14;
    color: white;
    font-family: 'Syne Mono';
}

.container {
    min-height: 100vh;
  /* max-width: 720px; */
    margin: 0 auto;
    padding: 50px 24px;
    text-align: center;
}


h1 {
    font-family: "Stack Sans Notch", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: clamp(64px, 16vw, 204px);
    margin-bottom: 56px;
    margin-top: 0px;
}

.blue-dot {
  color: #0000ff;
  /* text-shadow: 0 0 10px #0000ff; */
}

h2 {
    font-family: "Stack Sans Notch", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: clamp(24px, 6vw, 50px);
}

p {
    margin: 18px 0;
    color: #d8e6ff;
}

.intro {
    margin: 80px auto;
}

.main-button {
    width: 280px;
    padding: 18px 24px;

    margin: 40px auto;
    background: transparent;
    color: #0000ff;
    border: 4px solid #0000ff;
    /* border-radius: 4px; */
    cursor: pointer;

    font-family: "Stack Sans Notch", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-button:hover {
    color: white;
    border-color: white;
}

.hidden {
    display: none;
}

#result {
    margin: 20px 0;
    color: #0000ff;
    font-size: 20px;
}

.population {
    margin-top: 120px;
}

#count {
    font-family: "Stack Sans Notch", sans-serif;
    font-size: 50px;
    color: #0000ff;
}

.recent-section {
    margin-top: 80px;
}

#citizenList {
    margin-top: 24px;
    line-height: 1.8;
    color: #c8d8f5;
}

#windLine {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}


.hidden {
  display: none;
}

/* 질문 진행 상태 */
.question-progress {
  margin-bottom: 24px;
  color: #0000ff;
  font-size: 14px;
  letter-spacing: 2px;
}

/* 질문 영역 */
#screeningSection {
  max-width: 720px;
  min-height: 70vh;
  margin: 0 auto;
  padding-top: 100px;
  text-align: center;
}

#questionText {
  margin-bottom: 48px;
  line-height: 1.3;
}

/* 선택지 */
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 40px;
}

.choice-button {
  width: 100%;
  padding: 18px 20px;

  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);

  font-family: "Syne Mono", monospace;
  font-size: 15px;
  text-align: left;
  cursor: pointer;

  transition: 0.2s ease;
}

.choice-button:hover {
  border-color: #0000ff;
  color: #0000ff;
}

.choice-button.selected {
  color: #0000ff;
  border-color: #0000ff;
  background: rgba(49, 92, 255, 0.08);
}

/* 선택 전 NEXT 버튼 */
#nextBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* 처리 화면 */
#processingSection {
  min-height: 70vh;
  padding-top: 180px;
  text-align: center;
}

.processing-text {
  animation: flicker 1.4s infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

/* 최종 결과 */
#result {
  min-height: 55vh;
  padding-top: 160px;
  color: #0000ff;
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 768px) {
  #screeningSection {
    padding: 80px 20px 0;
  }

  #questionText {
    font-size: clamp(24px, 7vw, 40px);
  }

  .choice-button {
    padding: 16px;
    font-size: 14px;
  }
}