:root {
    --bg: #0f172a;
    --card: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #60a5fa;
    --tag-bg: #1e293b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 20px;
}

header {
    margin-bottom: 48px;
    /* text-align: center; */
}

/* header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
} */
header div.profile-container {
    text-align: center;
}

header div img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 16px;
    object-fit: cover;
    border: 2px solid var(--accent);
}

h1 {
    font-size: 2.6rem;
    margin: 16px 0 8px;
}

h2 {
    margin-top: 52px;
}

.subtitle {
    color: var(--muted);
}

.card {
    background: var(--card);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.tag {
    display: inline-block;
    background: var(--tag-bg);
    padding: 6px 12px;
    border-radius: 999px;
    margin: 6px 6px 0 0;
    font-size: .85rem;
    color: #93c5fd;
}

a {
    color: var(--accent);
    text-decoration: none;
}

footer {
    margin-top: 80px;
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
}

.experience-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.experience-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}