* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.profile-image {
    margin-bottom: 20px;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-name {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-title {
    font-size: 1.2em;
    opacity: 0.9;
}

.profile-info {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #667eea;
}

.value {
    color: #555;
}

.profile-bio {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-bio h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.profile-bio p {
    color: #666;
    line-height: 1.6;
}

.profile-skills {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-skills h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.profile-social {
    padding: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 600px) {
    .profile-name {
        font-size: 1.5em;
    }
    
    .profile-title {
        font-size: 1em;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .profile-social {
        flex-direction: column;
    }
}
