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

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%);
  min-height: 100vh;
  color: #1f2937;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 32px;
  max-width: 480px;
  margin: 0 auto;
}

/* 프로필 */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.avatar {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #f472b6);
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.35);
  margin-bottom: 16px;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.handle {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.bio {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 소셜 */
.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
  text-decoration: none;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #fdf2f8;
}

/* 링크 카드 */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid #fee2e2;
  background: #fff5f5;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.link-card:hover {
  background: #fee2e2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.link-card:hover .arrow {
  transform: translateX(2px);
}

.link-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-icon.red {
  background: #fee2e2;
  color: #ef4444;
}

.link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.link-desc {
  font-size: 0.78rem;
  color: #6b7280;
}

.arrow {
  color: #9ca3af;
  transition: transform 0.2s;
}

/* 텍스트 블록 */
.text-block {
  width: 100%;
  padding: 14px 20px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
  text-align: center;
}

/* 링크 썸네일 */
.link-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
}

/* 푸터 */
footer {
  margin-top: 48px;
  font-size: 0.75rem;
  color: #d1d5db;
}
