* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

body {
  background: #f5f5f5;
  color: #1a1a1a;
  font-family: "Pretendard", -apple-system, sans-serif;
  min-height: 100vh;
}

/* CUSTOM CURSOR */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.08s ease;
}

#cursor.active {
  transform: translate(-50%, -50%) scale(1.3);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
}

.label {
  font-size: clamp(15px, 1.5vw, 22px);
  letter-spacing: 0.02em;
}

.name {
  font-size: clamp(15px, 1.5vw, 22px);
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
}

.main {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px 0 180px;
  gap: 32px;
}

.desc {
  font-size: clamp(18px, 2.5vw, 32px);
  letter-spacing: 0.01em;
  line-height: 1.4;
  font-weight: normal;
}

.links {
  display: flex;
  gap: 24px;
}

.links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.links a:hover {
  opacity: 1;
}

/* 태블릿 */
@media (max-width: 1024px) and (min-width: 769px) {
  .main {
    padding: 0 120px 0 80px;
    width: 100%;
    box-sizing: border-box;
  }
  .desc {
    font-size: clamp(18px, 2.5vw, 28px);
  }
  .desc br {
    display: none;
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .main {
    padding: 120px 48px 0 48px;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
  }
  .desc {
    font-size: clamp(16px, 4.5vw, 22px);
  }
  .desc br {
    display: none;
  }
  .label {
    font-size: clamp(13px, 3.5vw, 18px);
  }
  .name {
    font-size: clamp(13px, 3.5vw, 18px);
  }
  #cursor {
    display: none;
  }
  * {
    cursor: auto !important;
  }
}
