:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #1e293b;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

header {
    margin-bottom: 2rem;
}

.profile-image {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.tagline {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

section {
    text-align: left;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.1rem;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: var(--bg-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

ul {
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

li {
    margin-bottom: 0.5rem;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-color);
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.contact {
    margin-bottom: 1rem;
}

.contact a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 1.1rem;
}

.contact a:hover {
    color: var(--primary-color);
}
