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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Links */
a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #f472b6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header / Profile Section */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #6366f1;
}

.name {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.title {
    font-size: 1.1em;
    color: #818cf8;
    margin-bottom: 12px;
    font-weight: 500;
}

.bio {
    font-size: 1em;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #1e293b;
    border: 1px solid #334155;
    color: #cbd5e1;
    font-size: 0.875em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn i {
    font-size: 0.95em;
    color: #6366f1;
    transition: color 0.2s ease;
}

.social-btn:hover {
    background: #1e293b;
    border-color: #6366f1;
    color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
}

.social-btn:hover i {
    color: #818cf8;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f5f9;
}

/* Updates List */
.updates-list {
    list-style: none;
}

.updates-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #cbd5e1;
}

.updates-list li::before {
    content: "• ";
    margin-right: 8px;
    color: #6366f1;
    font-weight: bold;
}

/* Experience Items */
.experience-item {
    margin-bottom: 28px;
}

.experience-item h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f1f5f9;
}

.meta {
    font-size: 0.95em;
    color: #818cf8;
    margin-bottom: 8px;
    font-weight: 500;
}

.description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    font-size: 0.875em;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #cbd5e1;
}

.copyright {
    margin-top: 16px;
    font-size: 0.8em;
    color: #475569;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px 16px;
    }

    .name {
        font-size: 1.8em;
    }

    .section h2 {
        font-size: 1.4em;
    }

    .footer-links {
        gap: 16px;
    }
}