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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
}

.profile-card {
    background: white;
    border-radius: 24px;
    padding: 48px 32px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.avatar-container {
    margin-bottom: 24px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-info {
    margin-bottom: 32px;
}

.name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.name {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.verified-badge {
    display: flex;
    align-items: center;
}

.bio {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 360px;
    margin: 0 auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.link-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-item:active {
    transform: translateY(0);
}

.link-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 16px;
    flex-shrink: 0;
}

.link-text {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    
    .profile-card {
        padding: 32px 24px 24px;
        border-radius: 20px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .bio {
        font-size: 15px;
    }
    
    .link-item {
        padding: 14px 16px;
    }
    
    .link-icon {
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }
    
    .link-text {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .profile-card {
        padding: 24px 20px 20px;
        border-radius: 16px;
    }
    
    .avatar {
        width: 80px;
        height: 80px;
    }
    
    .name {
        font-size: 22px;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .link-item {
        padding: 12px 14px;
        border-radius: 12px;
    }
    
    .link-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        border-radius: 8px;
    }
    
    .link-text {
        font-size: 14px;
    }
}
