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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

.profile {
    text-align: center;
    margin-bottom: 48px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tagline {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bio {
    color: #999;
    font-size: 0.95rem;
    margin: 12px auto 24px;
    max-width: 400px;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.linkedin-btn {
    background: #0077b5;
}

.linkedin-btn:hover {
    background: #005885;
}

.email-btn {
    background: #444;
}

.email-btn:hover {
    background: #555;
}

.section {
    margin-bottom: 40px;
}

h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 16px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #252525;
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    color: #ccc;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.summary-card {
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
}

.summary-card h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.summary-card p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.skill-group {
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 14px;
}

.skill-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.experience-item {
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.experience-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.years {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
}

.experience-item .company {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.experience-item p {
    font-size: 0.9rem;
    color: #aaa;
}
