* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* 헤더 스타일 */
h1 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* 섹션 스타일 */
.section {
    margin-bottom: 2.5rem;
}

/* 기술 스택 뱃지 */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.tech-item {
    background-color: #e7f5ff;
    color: #1971c2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background-color: #1971c2;
    color: white;
    transform: translateY(-2px);
}

/* 프로젝트 카드 */
.project {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 링크 스타일 */
a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* 이모지 스타일 */
.emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* 리스트 스타일 */
ul {
    list-style-type: none;
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.8rem;
    position: relative;
}

li::before {
    content: "•";
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}