body {
  background: #00091B;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 50%; opacity: 1;}
  
}

/* 등장 애니메이션 (아래로 이동은 없음, 그냥 서서히 나타남) */
@keyframes fadeInOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 기본: 안 보이게 시작 */
.fade {
  opacity: 0;
  animation: fadeInOnly 1400ms ease forwards;
}

/* 순서/시간차 */
.f1 { animation-delay: 0ms; }
.f2 { animation-delay: 500ms; }
.f3 { animation-delay: 1000ms; }
/* .f4 { animation-delay: 850ms; } */
.f5 { animation-delay: 1500ms; }


@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 50%; opacity: 1;}
  
}

.wrapper {
  text-align: center;
  width: min(92vw, 900px);
  padding: 40px 0;
}

h1 {

  display: inline-block;     /* 또는 width: fit-content; */
  text-align: left;          /* wrapper 기본은 left */

  font-size: clamp(26px, 7vw, 44px);
  line-height: 1.05;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.dot {
  color: #FFFFFF;
  display: inline-block;
  transform-origin: bottom center;
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  12%  { transform: scale(1.35); }
  24%  { transform: scale(1); }
  36%  { transform: scale(1.25); }
  48%  { transform: scale(1); }
  100% { transform: scale(1); }
}

p {
  font-size: clamp(12px, 3.6vw, 16px);
  margin: clamp(24px, 6vw, 56px) 0 clamp(6px, 2vw, 12px);
  font-family: 'Muli', sans-serif; 
}

.refinement {
  margin-top: 80px;   /* 위 여백 크게 */
  margin-bottom: 1px; /* 아래 여백 작게 */
}

.icons {
  text-align: center;
  margin-top: clamp(18px, 16vw, 120px);
}

.icons i {
  color: #00091B;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
}

.logo {
  display: block;
  width: min(92vw, 860px);
  height: auto;
  margin: 0 auto clamp(18px, 4vw, 36px);
}

.gp {
  display: block;
  width: clamp(72px, 22vw, 150px);
  height: auto;
  margin: 0 auto clamp(14px, 4vw, 24px);
}

.copyright {
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Muli', sans-serif;
  letter-spacing: 0.5px;
}

