@font-face {
    font-family: 'TheFirefighterSPrayer';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/naverfont_04@1.0/Firefighter_prayer.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

body {
  margin: 0;
  height: 100vh;
  background: #f6f6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'TheFirefighterSPrayer'; /* monospace */
  color: #2b2b2b;
}

/* 종이 질감 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.loading-wrap {
  text-align: center;
  transform: rotate(-0.6deg);
}

/* 손그림 점 애니메이션 */
.sketch-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sketch-loader span {
  width: 6px;
  height: 6px;
  border: 1.5px solid #2b2b2b;
  border-radius: 50%;
  opacity: 0;
  animation: blink 1.4s infinite;
}

.sketch-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.sketch-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%   { opacity: 0; transform: scale(0.8); }
  30%  { opacity: 1; transform: scale(1); }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}

.loading-text {
  font-size: 30px;
  letter-spacing: 0.08em;
}
